clawdex-mobile 5.0.0 → 5.0.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.
@@ -104,8 +104,31 @@ jobs:
104
104
  uses: actions/download-artifact@v7
105
105
  with:
106
106
  pattern: bridge-binaries-*
107
- path: .
108
- merge-multiple: true
107
+ path: .artifacts/bridge-binaries
108
+
109
+ - name: Restage packaged bridge binaries
110
+ run: |
111
+ rm -rf vendor/bridge-binaries
112
+ mkdir -p vendor/bridge-binaries
113
+ for target in darwin-arm64 darwin-x64 linux-x64 win32-x64; do
114
+ case "$target" in
115
+ win32-x64) binary_name="codex-rust-bridge.exe" ;;
116
+ *) binary_name="codex-rust-bridge" ;;
117
+ esac
118
+ source_path=".artifacts/bridge-binaries/bridge-binaries-${target}/${binary_name}"
119
+ if [ ! -f "$source_path" ]; then
120
+ echo "Missing downloaded bridge artifact for ${target}: ${source_path}"
121
+ exit 1
122
+ fi
123
+ node scripts/bridge-binary.js stage --target "$target" --from "$source_path"
124
+ done
125
+
126
+ - name: Verify packaged bridge bundle layout
127
+ run: |
128
+ test -f vendor/bridge-binaries/darwin-arm64/codex-rust-bridge
129
+ test -f vendor/bridge-binaries/darwin-x64/codex-rust-bridge
130
+ test -f vendor/bridge-binaries/linux-x64/codex-rust-bridge
131
+ test -f vendor/bridge-binaries/win32-x64/codex-rust-bridge.exe
109
132
 
110
133
  - name: Verify Rust bridge compiles
111
134
  working-directory: services/rust-bridge
@@ -134,6 +157,15 @@ jobs:
134
157
  - name: Show package contents
135
158
  run: npm pack --dry-run
136
159
 
160
+ - name: Verify tarball contains packaged bridge targets
161
+ run: |
162
+ TMPDIR="$(mktemp -d)"
163
+ TARBALL="$(npm pack --silent --pack-destination "$TMPDIR" | tail -n 1)"
164
+ tar -tzf "$TMPDIR/$TARBALL" | grep -q '^package/vendor/bridge-binaries/darwin-arm64/codex-rust-bridge$'
165
+ tar -tzf "$TMPDIR/$TARBALL" | grep -q '^package/vendor/bridge-binaries/darwin-x64/codex-rust-bridge$'
166
+ tar -tzf "$TMPDIR/$TARBALL" | grep -q '^package/vendor/bridge-binaries/linux-x64/codex-rust-bridge$'
167
+ tar -tzf "$TMPDIR/$TARBALL" | grep -q '^package/vendor/bridge-binaries/win32-x64/codex-rust-bridge.exe$'
168
+
137
169
  - name: Resolve publish target
138
170
  id: publish_target
139
171
  run: |
@@ -3,7 +3,7 @@
3
3
  "name": "Clawdex Mobile",
4
4
  "slug": "clawdex-mobile",
5
5
  "scheme": "clawdex",
6
- "version": "5.0.0",
6
+ "version": "5.0.1",
7
7
  "userInterfaceStyle": "dark",
8
8
  "orientation": "portrait",
9
9
  "icon": "./assets/brand/app-icon.png",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawdex-mobile",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "private": true,
5
5
  "main": "index.js",
6
6
  "scripts": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawdex-mobile",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "homepage": "https://github.com/Mohit-Patil/clawdex-mobile#readme",
5
5
  "repository": {
6
6
  "type": "git",
@@ -149,7 +149,7 @@ dependencies = [
149
149
 
150
150
  [[package]]
151
151
  name = "codex-rust-bridge"
152
- version = "5.0.0"
152
+ version = "5.0.1"
153
153
  dependencies = [
154
154
  "axum",
155
155
  "base64",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "codex-rust-bridge"
3
- version = "5.0.0"
3
+ version = "5.0.1"
4
4
  edition = "2021"
5
5
 
6
6
  [dependencies]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codex/rust-bridge",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "dev": "cargo run",