@biffo/cli 0.54.0 → 0.55.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.
@@ -247,7 +247,12 @@ jobs:
247
247
  - name: Package and deploy Lambda
248
248
  working-directory: services/api
249
249
  run: |
250
- uv export --no-dev --output-file requirements.txt
250
+ # --frozen: export the lock as it stands, never re-resolve. Unlike the
251
+ # core's api-service artifact (#410), services/api/uv.lock IS present
252
+ # here, so this already exported pins — but a plain `uv export` will
253
+ # quietly re-lock when pyproject.toml has drifted from the lock, which
254
+ # puts an unreviewed dependency tree on the Lambda. Fail instead.
255
+ uv export --no-dev --frozen --output-file requirements.txt
251
256
  uv pip install -r requirements.txt --target package/
252
257
  cp -r src/ package/
253
258
  cd package && zip -r ../lambda.zip .
package/core.version CHANGED
@@ -1 +1 @@
1
- 0.54.0
1
+ 0.55.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biffo/cli",
3
- "version": "0.54.0",
3
+ "version": "0.55.1",
4
4
  "description": "Biffo project scaffolding CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",