From 92942ebc956939383756c45acd20e64481708c6f Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 21 Aug 2026 21:27:05 +0000 Subject: [PATCH] chore: sync PHP client with Apify OpenAPI spec v2-2026-08-14T072928Z Bumps API_SPEC_VERSION to match the live spec (apify-docs #2840, Actor task publication fields). This client already implemented isPublic/publicConfig/ TaskPublicConfig ahead of the spec (0.4.0); no client code change needed. Co-authored-by: Claude --- CHANGELOG.md | 7 +++++++ src/Version.php | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 143dc05..ddd2c0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/Version.php b/src/Version.php index efde3e8..ca317b2 100644 --- a/src/Version.php +++ b/src/Version.php @@ -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() {