From 7251ba2101249632bc95889ca5a1660ff261ab1b Mon Sep 17 00:00:00 2001 From: Liz Kenyon Date: Tue, 28 Oct 2025 10:47:36 -0500 Subject: [PATCH] Release version 6.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This major release includes: - ⚠️ [Breaking] Remove `ApiVersion::LATEST` constant to prevent semver violations - Add compliance webhook topics (#425) - Add support for 2025-10 API version (#433) The `apiVersion` parameter is now required in `Context::initialize()`. Developers must explicitly specify API versions. See BREAKING_CHANGES_FOR_V6.md for migration details. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 2 ++ src/version.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a867535d..86a47d8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## Unreleased + +## v6.0.0 - 2025-10-28 - ⚠️ [Breaking] Remove `ApiVersion::LATEST` constant to prevent semver violations. The `apiVersion` parameter is now required in `Context::initialize()`. Developers must explicitly specify API versions. See the [migration guide](BREAKING_CHANGES_FOR_V6.md#removal-of-apiversionlatest-constant) for details. - [#425](https://github.com/Shopify/shopify-api-php/pull/425) [Patch] Add compliance webhook topics - [#433](https://github.com/Shopify/shopify-api-php/pull/433) [Minor] Add support for 2025-10 API version diff --git a/src/version.php b/src/version.php index 81f2982a..b72fc6b5 100644 --- a/src/version.php +++ b/src/version.php @@ -1,5 +1,5 @@