@bridgerust/embex 0.1.17 → 0.1.20

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 CHANGED
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.19] - 2026-02-22
11
+
12
+ ### Fixed
13
+
14
+ - Replaced Bun-based release build/publish pipeline with Node/npm tooling for improved runner compatibility.
15
+ - Added manual release tag input support in the Node publish workflow.
16
+
17
+ ## [0.1.18] - 2026-02-18
18
+
19
+ ### Fixed
20
+
21
+ - Release pipeline now keeps platform `optionalDependencies` versions aligned with the main package version during publish.
22
+
23
+ ### Changed
24
+
25
+ - GitHub release flow is now tag-driven (`v*`) with a dedicated release creation workflow.
26
+
10
27
  ## [0.1.16] - 2026-01-05
11
28
 
12
29
  ### Added
package/bun.lockb CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bridgerust/embex",
3
- "version": "0.1.17",
3
+ "version": "0.1.20",
4
4
  "description": "Embex Vector Database ORM Node.js Bindings",
5
5
  "homepage": "https://github.com/bridgerust/bridgerust/tree/main/crates/embex",
6
6
  "authors": [
@@ -64,14 +64,15 @@
64
64
  },
65
65
  "devDependencies": {
66
66
  "@napi-rs/cli": "^3.5.0",
67
- "vitest": "^4.0.16",
68
- "@types/node": "^25.0.3"
67
+ "@types/node": "^25.0.3",
68
+ "typescript": "^5.9.3",
69
+ "vitest": "^4.0.16"
69
70
  },
70
71
  "optionalDependencies": {
71
- "@bridgerust/embex-darwin-arm64": "0.1.16",
72
- "@bridgerust/embex-darwin-x64": "0.1.16",
73
- "@bridgerust/embex-linux-x64-gnu": "0.1.16",
74
- "@bridgerust/embex-linux-x64-musl": "0.1.16",
75
- "@bridgerust/embex-win32-x64-msvc": "0.1.16"
72
+ "@bridgerust/embex-darwin-arm64": "0.1.20",
73
+ "@bridgerust/embex-darwin-x64": "0.1.20",
74
+ "@bridgerust/embex-linux-x64-gnu": "0.1.20",
75
+ "@bridgerust/embex-linux-x64-musl": "0.1.20",
76
+ "@bridgerust/embex-win32-x64-msvc": "0.1.20"
76
77
  }
77
78
  }