@agoric/network 0.2.1-upgrade-23-dev-3866789.0.3866789 → 0.3.0-u23.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,42 @@
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
+ ## [0.3.0-u23.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/network@0.3.0-u23.0...@agoric/network@0.3.0-u23.1) (2026-07-15)
7
+
8
+ **Note:** Version bump only for package @agoric/network
9
+
10
+ ## 0.3.0-u23.0 (2026-04-27)
11
+
12
+ ### ⚠ BREAKING CHANGES
13
+
14
+ * rm store exported.js
15
+ * **network:** improve naming and data coercion
16
+ * make Network and IBC vats durable (#8721)
17
+
18
+ ### Features
19
+
20
+ * make Network and IBC vats durable ([#8721](https://github.com/Agoric/agoric-sdk/issues/8721)) ([3d13c09](https://github.com/Agoric/agoric-sdk/commit/3d13c09363013e23726c2ac5fa299a8e5344fd8c))
21
+ * **network:** add `allocateICQControllerPort` to PortAllocator ([b819aa9](https://github.com/Agoric/agoric-sdk/commit/b819aa912890a93be1775beb7cd540fe5d91b8aa)), closes [#9072](https://github.com/Agoric/agoric-sdk/issues/9072)
22
+ * **network:** export `SendOptionsShape` ([abafe8e](https://github.com/Agoric/agoric-sdk/commit/abafe8ecb449d8fb2c84bd4c5ad18933a64a471e))
23
+ * **types:** explicit exports from network ([65c2075](https://github.com/Agoric/agoric-sdk/commit/65c2075021dfb0ecf62a6009f7c411c7c49eb624))
24
+
25
+ ### Bug Fixes
26
+
27
+ * **lint:** addressing lint errors ([bfe10d9](https://github.com/Agoric/agoric-sdk/commit/bfe10d9cc3878c322ca624a3a603e80f94dc6970))
28
+ * **network:** Connection should have negotiated remoteAddress and localAddress ([2184ea3](https://github.com/Agoric/agoric-sdk/commit/2184ea3d655c1334653e27d163a09ceb5f61fd50)), closes [#9064](https://github.com/Agoric/agoric-sdk/issues/9064)
29
+ * **network:** create and use `coerceToData` ([39beecb](https://github.com/Agoric/agoric-sdk/commit/39beecba84ef6dfafca902a28a651dbba77cdb1e))
30
+ * **network:** half connection `.send()` includes opts bag ([428a439](https://github.com/Agoric/agoric-sdk/commit/428a4399630830b07244af8b7f73a84ec6480fba))
31
+ * **network:** improve naming and data coercion ([8bcd9e2](https://github.com/Agoric/agoric-sdk/commit/8bcd9e2100f4973fd788a6edf42c144d916c173d))
32
+ * **network:** introduce `Finalizer` to close network ([54b9b00](https://github.com/Agoric/agoric-sdk/commit/54b9b009fff3fd3ab54f731adee97195acaa238f))
33
+ * **network:** use new `ERef` and `FarRef` ([3027adf](https://github.com/Agoric/agoric-sdk/commit/3027adf8613154dec167c5fccf5f207f6d2af701))
34
+ * **network:** use vow types, correct revealed problems ([d1c1240](https://github.com/Agoric/agoric-sdk/commit/d1c1240bcf534a316533d4c203f45f01fdfc825d))
35
+ * use isPrimitive rather than deprecated isObject ([76ef9a3](https://github.com/Agoric/agoric-sdk/commit/76ef9a357ea25ccd4228320e4323d2afbaa589f0))
36
+ * **vats:** `vtransfer` code cleanup ([8ac8197](https://github.com/Agoric/agoric-sdk/commit/8ac819709ef9ced0badee25e6715a5847b1e3f4c))
37
+
38
+ ### Miscellaneous Chores
39
+
40
+ * rm store exported.js ([5e474fe](https://github.com/Agoric/agoric-sdk/commit/5e474feea8211886cf81464aa1f39cbb7d7cd250))
41
+
6
42
  ## [0.2.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/network@0.2.0-u22.2...@agoric/network@0.2.0) (2026-04-02)
7
43
 
8
44
  **Note:** Version bump only for package @agoric/network
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/network",
3
- "version": "0.2.1-upgrade-23-dev-3866789.0.3866789",
3
+ "version": "0.3.0-u23.1",
4
4
  "description": "Agoric's network protocol API",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
@@ -21,9 +21,9 @@
21
21
  "author": "Agoric",
22
22
  "license": "Apache-2.0",
23
23
  "dependencies": {
24
- "@agoric/internal": "0.4.1-upgrade-23-dev-3866789.0.3866789",
25
- "@agoric/store": "0.10.1-upgrade-23-dev-3866789.0.3866789",
26
- "@agoric/vat-data": "0.6.1-upgrade-23-dev-3866789.0.3866789",
24
+ "@agoric/internal": "0.5.0-u23.1",
25
+ "@agoric/store": "0.11.0-u23.0",
26
+ "@agoric/vat-data": "0.7.0-u23.1",
27
27
  "@endo/base64": "^1.0.12",
28
28
  "@endo/errors": "^1.2.13",
29
29
  "@endo/far": "^1.1.14",
@@ -32,11 +32,11 @@
32
32
  "@endo/promise-kit": "^1.1.13"
33
33
  },
34
34
  "devDependencies": {
35
- "@agoric/cosmic-proto": "0.5.1-upgrade-23-dev-3866789.0.3866789",
36
- "@agoric/swingset-liveslots": "0.11.1-upgrade-23-dev-3866789.0.3866789",
37
- "@agoric/swingset-vat": "0.33.1-upgrade-23-dev-3866789.0.3866789",
38
- "@agoric/vow": "0.2.1-upgrade-23-dev-3866789.0.3866789",
39
- "@agoric/zone": "0.3.1-upgrade-23-dev-3866789.0.3866789",
35
+ "@agoric/cosmic-proto": "0.6.0-u23.1",
36
+ "@agoric/swingset-liveslots": "0.12.0-u23.1",
37
+ "@agoric/swingset-vat": "0.34.0-u23.1",
38
+ "@agoric/vow": "0.3.0-u23.1",
39
+ "@agoric/zone": "0.4.0-u23.1",
40
40
  "@endo/bundle-source": "^4.1.2",
41
41
  "ava": "^6.4.1",
42
42
  "c8": "^10.1.3"
@@ -70,5 +70,5 @@
70
70
  "typeCoverage": {
71
71
  "atLeast": 91.16
72
72
  },
73
- "gitHead": "38667890f6113ac3266fe834e3f880ac07304fb6"
73
+ "gitHead": "6a6343510742fef366aa7b4a31a862f9ef409656"
74
74
  }