From 98fb53b2891caacccf46bc0fb824cf8408353800 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 16:33:54 -0400 Subject: [PATCH 1/3] build(deps): bump actions/checkout from 4 to 5 (#163) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/formats.yml | 2 +- .github/workflows/tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/formats.yml b/.github/workflows/formats.yml index ab7c16a..50b36af 100644 --- a/.github/workflows/formats.yml +++ b/.github/workflows/formats.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Cache dependencies uses: actions/cache@v4 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7ab8996..4937678 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Cache dependencies uses: actions/cache@v4 From 2350b464b9ac4a80933352c8984f0ce1c9fbab11 Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Tue, 26 Aug 2025 08:34:53 -0400 Subject: [PATCH 2/3] feat(meta): Add support for 0.16.0 of client (#165) --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 491a619..39309d3 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "php": "^8.2.0", "guzzlehttp/guzzle": "^7.9.3", "laravel/framework": "^11.29|^12.12", - "openai-php/client": "^0.15.0" + "openai-php/client": "^0.16.0" }, "require-dev": { "laravel/pint": "^1.22.0", From 0af3c787af03f1aaac02f7c8cd6a917dbfd3fd32 Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Tue, 26 Aug 2025 08:38:12 -0400 Subject: [PATCH 3/3] release: v0.16.0 (#166) --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4361b87..687f8b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## v0.16.0 (2025-08-26) +### Changed + - Changed underlying `openai/client` package version from 0.15.0 to 0.16.0 + - HTTP 429 now throw a `RateLimitException` instead of a generic `ErrorException` + ## v0.15.0 (2025-08-04) ### Added - Add facade for `containers`. ([#161](https://github.com/openai-php/laravel/pull/161))