Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.5.2

- Bumped `Version::API_SPEC_VERSION` to the Apify OpenAPI spec `v2-2026-08-14T072928Z`. This
version formally adds `Task.isPublic`/`publicConfig` and the `TaskPublicConfig` schema to the
spec; this client already implemented them in `0.4.0`, ahead of the spec, for parity with the
reference JS client. No client code or public interface change.

## 0.5.1

- Corrected the write-permission wording on `TaskClient::publish()`/`unpublish()`: the OpenAPI spec
Expand Down
4 changes: 2 additions & 2 deletions src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ final class Version
* The semantic version of this client library (see https://semver.org/).
* Changes to the public interface other than additive ones are considered breaking changes.
*/
public const CLIENT_VERSION = '0.5.1';
public const CLIENT_VERSION = '0.5.2';

/**
* The version of the Apify OpenAPI specification this client was generated and verified
* against. Corresponds to the {@code info.version} field of the Apify OpenAPI document.
*/
public const API_SPEC_VERSION = 'v2-2026-08-05T133145Z';
public const API_SPEC_VERSION = 'v2-2026-08-14T072928Z';

private function __construct()
{
Expand Down
Loading