openai 0.25.1 → 0.27.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63b13ff3a6e853278bda7f2dec0bfdf3b4f32873eed07e63bb19c5ffabef4d28
4
- data.tar.gz: 82d504549c8cefef90f5b7a846b11876c0f8910c6f2eec40e4a8e78edde3d9c4
3
+ metadata.gz: bae9059a58e735637f77e8f67206ae5461c0a9b1644dae426b5ecdc783f9856b
4
+ data.tar.gz: 2b0724ad0cc6348a15db3d6d305cc451bb289ec7d8af9f8375d97fa884be4acc
5
5
  SHA512:
6
- metadata.gz: 86e4af688a02efb6ab796bb12653c5155ba67e999343898cc2716ffbd2fd8424464ab553d7981503dfd553d79bad080a83ea69f34bf6a96db7050f5835df11cc
7
- data.tar.gz: 8c28b2b5c642c86af7b95817dd535fdde8c4023f68988b7ffd456c9bf45f192a9ae056e61e84681702bb4b150600c1579ab039b3123bc1b5928aa4acbe2724af
6
+ metadata.gz: b93a9f4249988394f4d90dd36c1f161eea365978ad6b83d3e9e9ecd8579d10f5f0ac26320a5f698dc2174755553ab0048e33602992c3d213c26e5f97d7b2adf9
7
+ data.tar.gz: dbe13a678f0617a93002ab5f14ca13b2f1305083ac2b5ecc3982d1afa925698dd41673b1bade182d6287e4558177b26e75b465af3d382111d0a640687c30dbb4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.27.0 (2025-09-26)
4
+
5
+ Full Changelog: [v0.26.0...v0.27.0](https://github.com/openai/openai-ruby/compare/v0.26.0...v0.27.0)
6
+
7
+ ### Features
8
+
9
+ * chat completion streaming helpers ([#828](https://github.com/openai/openai-ruby/issues/828)) ([6e98424](https://github.com/openai/openai-ruby/commit/6e9842485e819876dd6b78107fa45f1a5da67e4f))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **internal:** use null byte as file separator in the fast formatting script ([151ffe1](https://github.com/openai/openai-ruby/commit/151ffe10c9dc8d5edaf46de2a1c6b6e6fda80034))
15
+ * shorten multipart boundary sep to less than RFC specificed max length ([d7770d1](https://github.com/openai/openai-ruby/commit/d7770d10ee3b093d8e2464b79e0e12be3a9d2beb))
16
+
17
+
18
+ ### Performance Improvements
19
+
20
+ * faster code formatting ([67da711](https://github.com/openai/openai-ruby/commit/67da71139e5b572c97539299c39bae04c1d569fd))
21
+
22
+
23
+ ### Chores
24
+
25
+ * allow fast-format to use bsd sed as well ([66ac913](https://github.com/openai/openai-ruby/commit/66ac913d195d8b5a5c4474ded88a5f9dad13b7b6))
26
+
27
+ ## 0.26.0 (2025-09-23)
28
+
29
+ Full Changelog: [v0.25.1...v0.26.0](https://github.com/openai/openai-ruby/compare/v0.25.1...v0.26.0)
30
+
31
+ ### Features
32
+
33
+ * **api:** gpt-5-codex ([6c9b9b5](https://github.com/openai/openai-ruby/commit/6c9b9b58dabc56fbe9ac871517f837a662c6c237))
34
+
3
35
  ## 0.25.1 (2025-09-22)
4
36
 
5
37
  Full Changelog: [v0.25.0...v0.25.1](https://github.com/openai/openai-ruby/compare/v0.25.0...v0.25.1)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "openai", "~> 0.25.1"
18
+ gem "openai", "~> 0.27.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->