@agoric/network 0.1.1-upgrade-16-dev-91eb8f4.0 → 0.2.0-u16.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.
- package/CHANGELOG.md +37 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## [0.2.0-u16.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/network@0.2.0-u16.0...@agoric/network@0.2.0-u16.1) (2024-07-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @agoric/network
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 0.2.0-u16.0 (2024-07-02)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### ⚠ BREAKING CHANGES
|
|
18
|
+
|
|
19
|
+
* **network:** improve naming and data coercion
|
|
20
|
+
* make Network and IBC vats durable (#8721)
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* make Network and IBC vats durable ([#8721](https://github.com/Agoric/agoric-sdk/issues/8721)) ([3d13c09](https://github.com/Agoric/agoric-sdk/commit/3d13c09363013e23726c2ac5fa299a8e5344fd8c))
|
|
25
|
+
* **network:** add `allocateICQControllerPort` to PortAllocator ([b819aa9](https://github.com/Agoric/agoric-sdk/commit/b819aa912890a93be1775beb7cd540fe5d91b8aa)), closes [#9072](https://github.com/Agoric/agoric-sdk/issues/9072)
|
|
26
|
+
* **types:** explicit exports from network ([65c2075](https://github.com/Agoric/agoric-sdk/commit/65c2075021dfb0ecf62a6009f7c411c7c49eb624))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* **lint:** addressing lint errors ([bfe10d9](https://github.com/Agoric/agoric-sdk/commit/bfe10d9cc3878c322ca624a3a603e80f94dc6970))
|
|
32
|
+
* **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)
|
|
33
|
+
* **network:** create and use `coerceToData` ([39beecb](https://github.com/Agoric/agoric-sdk/commit/39beecba84ef6dfafca902a28a651dbba77cdb1e))
|
|
34
|
+
* **network:** improve naming and data coercion ([8bcd9e2](https://github.com/Agoric/agoric-sdk/commit/8bcd9e2100f4973fd788a6edf42c144d916c173d))
|
|
35
|
+
* **network:** use new `ERef` and `FarRef` ([55adb2b](https://github.com/Agoric/agoric-sdk/commit/55adb2b1f5b644ef5b7cf40ea8b7d87488218229))
|
|
36
|
+
* **network:** use vow types, correct revealed problems ([d1c1240](https://github.com/Agoric/agoric-sdk/commit/d1c1240bcf534a316533d4c203f45f01fdfc825d))
|
|
37
|
+
* **vats:** `vtransfer` code cleanup ([8ac8197](https://github.com/Agoric/agoric-sdk/commit/8ac819709ef9ced0badee25e6715a5847b1e3f4c))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/network",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0-u16.1",
|
|
4
4
|
"description": "Agoric's network protocol API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"author": "Agoric",
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@agoric/assert": "0.6.1-
|
|
25
|
-
"@agoric/internal": "0.
|
|
26
|
-
"@agoric/store": "0.9.3-
|
|
27
|
-
"@agoric/vat-data": "0.5.3-
|
|
24
|
+
"@agoric/assert": "^0.6.1-u16.0",
|
|
25
|
+
"@agoric/internal": "^0.4.0-u16.1",
|
|
26
|
+
"@agoric/store": "^0.9.3-u16.0",
|
|
27
|
+
"@agoric/vat-data": "^0.5.3-u16.1",
|
|
28
28
|
"@endo/base64": "^1.0.5",
|
|
29
29
|
"@endo/far": "^1.1.2",
|
|
30
30
|
"@endo/pass-style": "^1.4.0",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"@endo/promise-kit": "^1.1.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@agoric/swingset-liveslots": "0.10.3-
|
|
36
|
-
"@agoric/swingset-vat": "0.
|
|
37
|
-
"@agoric/vow": "0.
|
|
38
|
-
"@agoric/zone": "0.
|
|
35
|
+
"@agoric/swingset-liveslots": "^0.10.3-u16.1",
|
|
36
|
+
"@agoric/swingset-vat": "^0.33.0-u16.1",
|
|
37
|
+
"@agoric/vow": "^0.2.0-u16.1",
|
|
38
|
+
"@agoric/zone": "^0.3.0-u16.1",
|
|
39
39
|
"@endo/bundle-source": "^3.2.3",
|
|
40
40
|
"ava": "^5.3.0",
|
|
41
41
|
"c8": "^9.1.0"
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"typeCoverage": {
|
|
69
69
|
"atLeast": 89.7
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "2eaeab90b4015e355faea534c1c933351d25b1b9"
|
|
72
72
|
}
|