From 70ec1da271a316e095a03c61e1c43beb779707b3 Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Mon, 4 Aug 2025 13:52:10 -0400 Subject: [PATCH 1/2] feat(meta): Add support for 0.15.0 of client + container facade. (#161) * feat: add containers api to facade * chore: request at least v0.15.0 of client --- composer.json | 2 +- src/Facades/OpenAI.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 60cd36b..491a619 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.14.0" + "openai-php/client": "^0.15.0" }, "require-dev": { "laravel/pint": "^1.22.0", diff --git a/src/Facades/OpenAI.php b/src/Facades/OpenAI.php index 09f6aaf..cdc2921 100644 --- a/src/Facades/OpenAI.php +++ b/src/Facades/OpenAI.php @@ -15,6 +15,7 @@ * @method static \OpenAI\Resources\Batches batches() * @method static \OpenAI\Resources\Chat chat() * @method static \OpenAI\Resources\Completions completions() + * @method static \OpenAI\Resources\Containers containers() * @method static \OpenAI\Resources\Embeddings embeddings() * @method static \OpenAI\Resources\Edits edits() * @method static \OpenAI\Resources\Files files() From 399f6f4cc1cb218d175128a456857e878f91117d Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Mon, 4 Aug 2025 13:56:40 -0400 Subject: [PATCH 2/2] release: v0.15.0 (#162) --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37da658..4361b87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.15.0 (2025-08-04) +### Added +- Add facade for `containers`. ([#161](https://github.com/openai-php/laravel/pull/161)) + +### Changed +- Changed underlying `openai/client` package version from 0.14.0 to 0.15.0 + ## v0.14.0 (2025-06-24) ### Added - Add facade for `realtime`. ([#156](https://github.com/openai-php/laravel/pull/156))