ocm-sdk 0.14.4-beta → 0.14.6-beta
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 +30 -0
- package/package.json +1 -1
- package/src/version.ts +1 -1
- package/version.d.mts +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,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.14.6-beta (2026-04-03)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.14.5-beta...v0.14.6-beta](https://github.com/andreibesleaga/ocm-sdk/compare/v0.14.5-beta...v0.14.6-beta)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **internal:** gitignore generated `oidc` dir ([5d9e042](https://github.com/andreibesleaga/ocm-sdk/commit/5d9e04258ae570d8549105e77a56254bcbf1331e))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* **internal:** codegen related update ([398bbfe](https://github.com/andreibesleaga/ocm-sdk/commit/398bbfebd912ac9fa2787d679d0061be3f447e70))
|
|
15
|
+
* **internal:** fix MCP docker image builds in yarn projects ([7cf354e](https://github.com/andreibesleaga/ocm-sdk/commit/7cf354e49a216e863256c035165063321cbb4a7a))
|
|
16
|
+
* **internal:** improve local docs search for MCP servers ([0778b73](https://github.com/andreibesleaga/ocm-sdk/commit/0778b736f20d017afc30510ef28d943db14c4d9e))
|
|
17
|
+
* **internal:** improve local docs search for MCP servers ([06c1d51](https://github.com/andreibesleaga/ocm-sdk/commit/06c1d512aeb18385f922d85da1da8a40e60e0171))
|
|
18
|
+
* **internal:** support type annotations when running MCP in local execution mode ([2b300ce](https://github.com/andreibesleaga/ocm-sdk/commit/2b300ceda9c4b079985d40c6fd9957ea543ebfbf))
|
|
19
|
+
* **internal:** use link instead of file in MCP server package.json files ([bbc8c77](https://github.com/andreibesleaga/ocm-sdk/commit/bbc8c77cfa0ba459ef88d6d7c44194899243c188))
|
|
20
|
+
* **mcp-server:** add support for session id, forward client info ([9a01d51](https://github.com/andreibesleaga/ocm-sdk/commit/9a01d51ddd994c24229a967704a29d560f73d391))
|
|
21
|
+
* **mcp-server:** log client info ([a455488](https://github.com/andreibesleaga/ocm-sdk/commit/a455488340ee49655c697344a57e0d41585e7cf5))
|
|
22
|
+
|
|
23
|
+
## 0.14.5-beta (2026-03-28)
|
|
24
|
+
|
|
25
|
+
Full Changelog: [v0.14.4-beta...v0.14.5-beta](https://github.com/andreibesleaga/ocm-sdk/compare/v0.14.4-beta...v0.14.5-beta)
|
|
26
|
+
|
|
27
|
+
### Chores
|
|
28
|
+
|
|
29
|
+
* **ci:** escape input path in publish-npm workflow ([7aa468e](https://github.com/andreibesleaga/ocm-sdk/commit/7aa468e1e09a0186f2a15fed495f3789035ad6fd))
|
|
30
|
+
* **internal:** codegen related update ([9ebc086](https://github.com/andreibesleaga/ocm-sdk/commit/9ebc086d08e30b24e788993db759fd376bba0f1e))
|
|
31
|
+
* **internal:** support local docs search in MCP servers ([b9a070f](https://github.com/andreibesleaga/ocm-sdk/commit/b9a070fa3520534eee87b0fa539d436752cc0b7c))
|
|
32
|
+
|
|
3
33
|
## 0.14.4-beta (2026-03-27)
|
|
4
34
|
|
|
5
35
|
Full Changelog: [v0.14.3-beta...v0.14.4-beta](https://github.com/andreibesleaga/ocm-sdk/compare/v0.14.3-beta...v0.14.4-beta)
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.14.
|
|
1
|
+
export const VERSION = '0.14.6-beta'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.14.
|
|
1
|
+
export declare const VERSION = "0.14.6-beta";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.14.
|
|
1
|
+
export declare const VERSION = "0.14.6-beta";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = '0.14.
|
|
4
|
+
exports.VERSION = '0.14.6-beta'; // x-release-please-version
|
|
5
5
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.14.
|
|
1
|
+
export const VERSION = '0.14.6-beta'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|