@toa.io/core 1.0.0-alpha.262 → 1.0.0-alpha.265

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,25 @@
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.265](https://github.com/toa-io/toa/compare/v1.0.0-alpha.264...v1.0.0-alpha.265) (2026-08-29)
7
+
8
+
9
+ ### Features
10
+
11
+ * **bridges.node:** add the dispose run command phase ([00df715](https://github.com/toa-io/toa/commit/00df7158f638b976ab09d4007102a4ead3c696c3))
12
+
13
+
14
+
15
+
16
+
17
+ # [1.0.0-alpha.264](https://github.com/toa-io/toa/compare/v1.0.0-alpha.263...v1.0.0-alpha.264) (2026-08-29)
18
+
19
+ **Note:** Version bump only for package @toa.io/core
20
+
21
+
22
+
23
+
24
+
6
25
  # [1.0.0-alpha.262](https://github.com/toa-io/toa/compare/v1.0.0-alpha.261...v1.0.0-alpha.262) (2026-08-28)
7
26
 
8
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toa.io/core",
3
- "version": "1.0.0-alpha.262",
3
+ "version": "1.0.0-alpha.265",
4
4
  "description": "Toa Core",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -24,8 +24,8 @@
24
24
  "@toa.io/generic": "1.0.0-alpha.254",
25
25
  "@toa.io/yaml": "1.0.0-alpha.254",
26
26
  "error-value": "0.3.0",
27
- "openspan": "1.0.0-alpha.254",
27
+ "openspan": "1.0.0-alpha.264",
28
28
  "uuid": "11.1.1"
29
29
  },
30
- "gitHead": "e14059cf5cc364d933f2a4b3d7114f3b5ec0764f"
30
+ "gitHead": "b8585e0fbc4f0bebfddd27105bc7e30662f29d2f"
31
31
  }
package/types/bridges.ts CHANGED
@@ -29,5 +29,5 @@ export interface Factory {
29
29
 
30
30
  receiver?: (path: string, label: string) => Receiver
31
31
 
32
- rc?: (path: string, context: Context) => Promise<{ preflight?: Connector, settle?: Connector } | undefined>
32
+ rc?: (path: string, context: Context) => Promise<{ preflight?: Connector, settle?: Connector, dispose?: Connector } | undefined>
33
33
  }