openai 4.77.3 → 4.77.4
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.
- package/CHANGELOG.md +8 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.77.4 (2025-01-08)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v4.77.3...v4.77.4](https://github.com/openai/openai-node/compare/v4.77.3...v4.77.4)
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
* **readme:** fix misplaced period ([#1252](https://github.com/openai/openai-node/issues/1252)) ([c2fe465](https://github.com/openai/openai-node/commit/c2fe46522d59d1611ba8bb2b7e070f9be7264df0))
|
|
10
|
+
|
|
3
11
|
## 4.77.3 (2025-01-03)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v4.77.2...v4.77.3](https://github.com/openai/openai-node/compare/v4.77.2...v4.77.3)
|
package/README.md
CHANGED
|
@@ -631,7 +631,7 @@ await client.models.list({
|
|
|
631
631
|
This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
|
|
632
632
|
|
|
633
633
|
1. Changes that only affect static types, without breaking runtime behavior.
|
|
634
|
-
2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals)_
|
|
634
|
+
2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
|
|
635
635
|
3. Changes that we do not expect to impact the vast majority of users in practice.
|
|
636
636
|
|
|
637
637
|
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.77.
|
|
1
|
+
export const VERSION = '4.77.4'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.77.
|
|
1
|
+
export declare const VERSION = "4.77.4";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '4.77.
|
|
1
|
+
export const VERSION = '4.77.4'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|