@toa.io/operations 1.0.0-alpha.295 → 1.0.0-alpha.296

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
@@ -3,6 +3,13 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.0.0-alpha.296](https://github.com/toa-io/toa/compare/v1.0.0-alpha.295...v1.0.0-alpha.296) (2026-09-08)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **exposition:** the gateway's image carries every storage provider ([ab19d25](https://github.com/toa-io/toa/commit/ab19d2567764d5a3148b067f186819d7e646908f))
11
+
12
+
6
13
  # [1.0.0-alpha.295](https://github.com/toa-io/toa/compare/v1.0.0-alpha.294...v1.0.0-alpha.295) (2026-09-07)
7
14
 
8
15
  **Note:** Version bump only for package @toa.io/operations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toa.io/operations",
3
- "version": "1.0.0-alpha.295",
3
+ "version": "1.0.0-alpha.296",
4
4
  "type": "module",
5
5
  "description": "Toa Deployment",
6
6
  "homepage": "https://toa.io",
@@ -30,8 +30,8 @@
30
30
  "dependencies": {
31
31
  "@toa.io/generic": "1.0.0-alpha.292",
32
32
  "@toa.io/kubernetes": "1.0.0-alpha.293",
33
- "@toa.io/norm": "1.0.0-alpha.295",
33
+ "@toa.io/norm": "1.0.0-alpha.296",
34
34
  "paseto": "4.0.0"
35
35
  },
36
- "gitHead": "4053b28216cf83889258d3a891b9c7f43137234a"
36
+ "gitHead": "d0fd4f9d13483f763acd9dd2b3c3eb8cb8856524"
37
37
  }
@@ -19,5 +19,7 @@ RUN --mount=type=cache,target=/root/.npm,sharing=locked \
19
19
  # what the extensions need for what these components declare: installed beside the extension
20
20
  # that reads the declaration, in Toa's own install, because that is where Node resolves an
21
21
  # extension's imports from — and one copy for the composition rather than one per component
22
+ # `--legacy-peer-deps` for the reason the base image installs with it: what is added here
23
+ # re-resolves the tree, and a peer nothing imports comes back with it — 23 MB of `typescript`
22
24
  RUN --mount=type=cache,target=/root/.npm,sharing=locked \
23
- if [ -s .packages ]; then npm i --prefix /toa --omit=dev $(cat .packages); fi
25
+ if [ -s .packages ]; then npm i --prefix /toa --omit=dev --legacy-peer-deps $(cat .packages); fi
@@ -176,7 +176,9 @@ describe('prepare', () => {
176
176
 
177
177
  const dockerfile = await readFile(join(context, 'Dockerfile'), 'utf8')
178
178
 
179
- assert.ok(dockerfile.includes('npm i --prefix /toa --omit=dev $(cat .packages)'))
179
+ assert.ok(
180
+ dockerfile.includes('npm i --prefix /toa --omit=dev --legacy-peer-deps $(cat .packages)')
181
+ )
180
182
  })
181
183
 
182
184
  it('should hold what a service the composition runs brings', async () => {