orbit-bus 0.1.1 → 0.1.6
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 +33 -0
- package/dist/src/echocore.js +0 -0
- package/dist/src/index.js +0 -0
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,39 @@ This project follows Semantic Versioning (`MAJOR.MINOR.PATCH`).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.6] - 2026-03-03
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Added root `package.json.repository.url` matching `https://github.com/AlexanderHabscheid/Orbit` to satisfy npm provenance verification.
|
|
13
|
+
- Root and Python package versions bumped to `0.1.6` for final release validation.
|
|
14
|
+
|
|
15
|
+
## [0.1.5] - 2026-03-03
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- `npm-publish` now upgrades to npm v11 in CI before publish to ensure trusted publishing OIDC support.
|
|
19
|
+
- Root and Python package versions bumped to `0.1.5` for another release validation tag.
|
|
20
|
+
|
|
21
|
+
## [0.1.4] - 2026-03-03
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- `npm-publish` release step now clears `NODE_AUTH_TOKEN` to force npm trusted publishing via OIDC.
|
|
25
|
+
- Root and Python package versions bumped to `0.1.4` for a fresh release validation tag.
|
|
26
|
+
|
|
27
|
+
## [0.1.3] - 2026-03-03
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
- Release workflow now publishes a single npm package (`orbit-bus`); TypeScript SDK remains in-repo and is no longer published as a separate npm release artifact by CI.
|
|
31
|
+
- Release policy/runbook updated to reflect single npm package publishing and Python trusted publishing flow.
|
|
32
|
+
- Python package metadata renamed from `orbit-sdk` to `Orbitai-CLI` to match trusted publisher configuration.
|
|
33
|
+
- Root and Python package versions bumped to `0.1.3` for trusted publish verification.
|
|
34
|
+
|
|
35
|
+
## [0.1.2] - 2026-03-03
|
|
36
|
+
|
|
37
|
+
### Changed
|
|
38
|
+
- Published TypeScript SDK under unscoped package name `orbit-sdk-typescript` to remove blocked `@orbit` scope dependency.
|
|
39
|
+
- Updated release runbook package naming to match published npm package.
|
|
40
|
+
- Version alignment refresh across root package, TypeScript SDK, and Python SDK.
|
|
41
|
+
|
|
9
42
|
## [0.1.1] - 2026-03-03
|
|
10
43
|
|
|
11
44
|
### Added
|
package/dist/src/echocore.js
CHANGED
|
File without changes
|
package/dist/src/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orbit-bus",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "ORBIT local agent message bus CLI powered by NATS",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/AlexanderHabscheid/Orbit"
|
|
8
|
+
},
|
|
5
9
|
"license": "MIT",
|
|
6
10
|
"type": "module",
|
|
7
11
|
"files": [
|