openlayer 0.17.0 → 0.17.1
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 +23 -0
- 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,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.17.1 (2025-09-30)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.17.0...v0.17.1](https://github.com/openlayer-ai/openlayer-ts/compare/v0.17.0...v0.17.1)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **backend:** more upgrades to examples ([ebd0a51](https://github.com/openlayer-ai/openlayer-ts/commit/ebd0a5131970b051407d402a1f1c55993bf463e7))
|
|
10
|
+
* yarn upgrade form-data for vulnerability ([cc222a0](https://github.com/openlayer-ai/openlayer-ts/commit/cc222a00ec5d5807b4621fa5a35cf452985535bf))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Performance Improvements
|
|
14
|
+
|
|
15
|
+
* faster formatting ([d80c10c](https://github.com/openlayer-ai/openlayer-ts/commit/d80c10cfa73e859a18b76177c134891ac5b2fe84))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Chores
|
|
19
|
+
|
|
20
|
+
* do not install brew dependencies in ./scripts/bootstrap by default ([55a402e](https://github.com/openlayer-ai/openlayer-ts/commit/55a402e77e8dd04ec442f739a893c72ad23b3af4))
|
|
21
|
+
* **internal:** codegen related update ([fa4eb8b](https://github.com/openlayer-ai/openlayer-ts/commit/fa4eb8bffc2007c2c6ca7ffe7e0f9a0a59c7d435))
|
|
22
|
+
* **internal:** fix incremental formatting in some cases ([6b294aa](https://github.com/openlayer-ai/openlayer-ts/commit/6b294aa76c5722ae7e442a7d9ad1a3c487c13e16))
|
|
23
|
+
* **internal:** ignore .eslintcache ([455578b](https://github.com/openlayer-ai/openlayer-ts/commit/455578b399f4b722fc28185d91e70c9d2ef76e97))
|
|
24
|
+
* **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([60a3a49](https://github.com/openlayer-ai/openlayer-ts/commit/60a3a49421700a05c11006de24de24f6b060878f))
|
|
25
|
+
|
|
3
26
|
## 0.17.0 (2025-09-09)
|
|
4
27
|
|
|
5
28
|
Full Changelog: [v0.16.3...v0.17.0](https://github.com/openlayer-ai/openlayer-ts/compare/v0.16.3...v0.17.0)
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.17.
|
|
1
|
+
export const VERSION = '0.17.1'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.17.
|
|
1
|
+
export declare const VERSION = "0.17.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.17.
|
|
1
|
+
export const VERSION = '0.17.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|