Skip to content

Commit 79df84a

Browse files
authored
Merge pull request #3041 from Agoric/release-20210505T011732
Release 2.18.1
2 parents c4c44cb + f4b0e0b commit 79df84a

File tree

95 files changed

+673
-288
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+673
-288
lines changed

.github/workflows/docker.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,17 @@ jobs:
1414
run: echo "GIT_REVISION=$(git rev-parse HEAD)" >> $GITHUB_ENV
1515
- name: Save SDK_VERSION
1616
run: echo "SDK_VERSION=$(jq -r .version package.json)" >> $GITHUB_ENV
17-
- name: Save MODDABLE_COMMIT_HASH
17+
- name: Save MODDABLE_COMMIT_HASH, MODDABLE_URL
1818
run: |
1919
git submodule status packages/xsnap/moddable | \
2020
sed -ne 's/^.\([^ ]*\).*/MODDABLE_COMMIT_HASH=\1/p' >> $GITHUB_ENV
21+
sed -ne 's!^.*url = \(https://.*moddable\.git\).*!MODDABLE_URL=\1!p' .gitmodules >> $GITHUB_ENV
2122
- name: Build SDK image
2223
uses: elgohr/Publish-Docker-Github-Action@master
2324
with:
2425
name: agoric/agoric-sdk
2526
dockerfile: packages/deployment/Dockerfile.sdk
26-
buildargs: MODDABLE_COMMIT_HASH,GIT_REVISION
27+
buildargs: MODDABLE_COMMIT_HASH,MODDABLE_URL,GIT_REVISION
2728
username: ${{ secrets.DOCKER_USERNAME }}
2829
password: ${{ secrets.DOCKER_PASSWORD }}
2930
snapshot: true

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.18.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
7+
8+
9+
### Bug Fixes
10+
11+
* **swingset:** force vattp to run on worker=local for now ([a6aff0a](https://github.com/Agoric/agoric-sdk/commit/a6aff0ac52de6ecd12b9b1c5c82958f502b549b3)), closes [#3039](https://github.com/Agoric/agoric-sdk/issues/3039)
12+
* cope with getting moddable submodule from agoric-labs ([a1a2693](https://github.com/Agoric/agoric-sdk/commit/a1a26931d17ade84ae97aa3a9d0e7c5c58a74491))
13+
14+
15+
16+
17+
618
# [2.18.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
719

820

golang/cosmos/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.26.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
7+
8+
**Note:** Version bump only for package @agoric/cosmos
9+
10+
11+
12+
13+
614
# [0.26.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
715

816

golang/cosmos/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agoric/cosmos",
3-
"version": "0.26.0",
3+
"version": "0.26.1",
44
"description": "Connect JS to the Cosmos blockchain SDK",
55
"parsers": {
66
"js": "mjs"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agoric/sdk",
3-
"version": "2.18.0",
3+
"version": "2.18.1",
44
"private": true,
55
"useWorkspaces": true,
66
"workspaces": [

packages/ERTP/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.11.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
7+
8+
**Note:** Version bump only for package @agoric/ertp
9+
10+
11+
12+
13+
614
# [0.11.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
715

816

packages/ERTP/package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agoric/ertp",
3-
"version": "0.11.0",
3+
"version": "0.11.1",
44
"description": "Electronic Rights Transfer Protocol (ERTP). A smart contract framework for exchanging electronic rights",
55
"parsers": {
66
"js": "mjs"
@@ -42,20 +42,20 @@
4242
},
4343
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
4444
"dependencies": {
45-
"@agoric/assert": "^0.2.10",
46-
"@agoric/eventual-send": "^0.13.12",
47-
"@agoric/import-manager": "^0.2.12",
48-
"@agoric/marshal": "^0.4.9",
45+
"@agoric/assert": "^0.2.11",
46+
"@agoric/eventual-send": "^0.13.13",
47+
"@agoric/import-manager": "^0.2.13",
48+
"@agoric/marshal": "^0.4.10",
4949
"@agoric/nat": "^4.0.0",
50-
"@agoric/notifier": "^0.3.12",
51-
"@agoric/promise-kit": "^0.2.11",
52-
"@agoric/same-structure": "^0.1.11",
53-
"@agoric/store": "^0.4.12"
50+
"@agoric/notifier": "^0.3.13",
51+
"@agoric/promise-kit": "^0.2.12",
52+
"@agoric/same-structure": "^0.1.12",
53+
"@agoric/store": "^0.4.13"
5454
},
5555
"devDependencies": {
56-
"@agoric/bundle-source": "^1.3.5",
57-
"@agoric/install-ses": "^0.5.11",
58-
"@agoric/swingset-vat": "^0.17.0",
56+
"@agoric/bundle-source": "^1.3.6",
57+
"@agoric/install-ses": "^0.5.12",
58+
"@agoric/swingset-vat": "^0.17.1",
5959
"ava": "^3.12.1",
6060
"esm": "^3.2.25",
6161
"nyc": "^15.1.0"

packages/SwingSet/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.17.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
7+
8+
9+
### Bug Fixes
10+
11+
* **swingset:** force vattp to run on worker=local for now ([a6aff0a](https://github.com/Agoric/agoric-sdk/commit/a6aff0ac52de6ecd12b9b1c5c82958f502b549b3)), closes [#3039](https://github.com/Agoric/agoric-sdk/issues/3039)
12+
13+
14+
15+
16+
617
# [0.17.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
718

819

packages/SwingSet/package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agoric/swingset-vat",
3-
"version": "0.17.0",
3+
"version": "0.17.1",
44
"description": "Vat/Container Launcher",
55
"parsers": {
66
"js": "mjs"
@@ -27,28 +27,28 @@
2727
"lint:eslint": "eslint '**/*.js'"
2828
},
2929
"devDependencies": {
30-
"@agoric/install-metering-and-ses": "^0.2.11",
30+
"@agoric/install-metering-and-ses": "^0.2.12",
3131
"@agoric/ses-ava": "^0.1.1",
3232
"ava": "^3.12.1",
3333
"nyc": "^15.1.0"
3434
},
3535
"dependencies": {
36-
"@agoric/assert": "^0.2.10",
36+
"@agoric/assert": "^0.2.11",
3737
"@agoric/babel-parser": "^7.6.4",
38-
"@agoric/bundle-source": "^1.3.5",
39-
"@agoric/captp": "^1.7.11",
40-
"@agoric/eventual-send": "^0.13.12",
41-
"@agoric/import-bundle": "^0.2.12",
42-
"@agoric/install-ses": "^0.5.11",
43-
"@agoric/marshal": "^0.4.9",
38+
"@agoric/bundle-source": "^1.3.6",
39+
"@agoric/captp": "^1.7.12",
40+
"@agoric/eventual-send": "^0.13.13",
41+
"@agoric/import-bundle": "^0.2.13",
42+
"@agoric/install-ses": "^0.5.12",
43+
"@agoric/marshal": "^0.4.10",
4444
"@agoric/nat": "^4.0.0",
45-
"@agoric/notifier": "^0.3.12",
46-
"@agoric/promise-kit": "^0.2.11",
47-
"@agoric/store": "^0.4.12",
48-
"@agoric/swing-store-simple": "^0.3.7",
49-
"@agoric/tame-metering": "^1.3.7",
50-
"@agoric/transform-metering": "^1.4.10",
51-
"@agoric/xsnap": "^0.6.0",
45+
"@agoric/notifier": "^0.3.13",
46+
"@agoric/promise-kit": "^0.2.12",
47+
"@agoric/store": "^0.4.13",
48+
"@agoric/swing-store-simple": "^0.3.8",
49+
"@agoric/tame-metering": "^1.3.8",
50+
"@agoric/transform-metering": "^1.4.11",
51+
"@agoric/xsnap": "^0.6.1",
5252
"@babel/core": "^7.5.0",
5353
"@babel/generator": "^7.6.4",
5454
"@endo/base64": "^0.1.0",

packages/SwingSet/src/initializeSwingset.js

+5
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,11 @@ export async function initializeSwingset(
297297
// it to comms
298298
config.vats.vattp = {
299299
bundle: kernelBundles.vattp,
300+
creationOptions: {
301+
// we saw evidence of vattp dropping messages, and out of caution,
302+
// we're keeping it on an in-kernel worker for now. See #3039.
303+
managerType: 'local',
304+
},
300305
};
301306

302307
// timer wrapper vat is added automatically, but TODO: bootstraps must

packages/acorn-eventual-send/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.1.8](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
7+
8+
**Note:** Version bump only for package @agoric/acorn-eventual-send
9+
10+
11+
12+
13+
614
## [2.1.7](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
715

816
**Note:** Version bump only for package @agoric/acorn-eventual-send

packages/acorn-eventual-send/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agoric/acorn-eventual-send",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"description": "Eventual send (wavy dot) parser plugin for Acorn",
55
"parsers": {
66
"js": "mjs"

packages/agoric-cli/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.13.1](https://github.com/Agoric/agoric-sdk/compare/[email protected]@0.13.1) (2021-05-05)
7+
8+
**Note:** Version bump only for package agoric
9+
10+
11+
12+
13+
614
# [0.13.0](https://github.com/Agoric/agoric-sdk/compare/[email protected]@0.13.0) (2021-05-05)
715

816

packages/agoric-cli/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agoric",
3-
"version": "0.13.0",
3+
"version": "0.13.1",
44
"description": "Manage the Agoric Javascript smart contract platform",
55
"parsers": {
66
"js": "mjs"
@@ -20,19 +20,19 @@
2020
"lint-fix": "eslint --fix '**/*.{js,jsx}'"
2121
},
2222
"devDependencies": {
23-
"@agoric/swingset-vat": "^0.17.0",
23+
"@agoric/swingset-vat": "^0.17.1",
2424
"ava": "^3.12.1",
2525
"nyc": "^15.1.0",
2626
"tmp": "^0.1.0"
2727
},
2828
"dependencies": {
29-
"@agoric/assert": "^0.2.10",
30-
"@agoric/bundle-source": "^1.3.5",
31-
"@agoric/captp": "^1.7.11",
32-
"@agoric/install-ses": "^0.5.11",
29+
"@agoric/assert": "^0.2.11",
30+
"@agoric/bundle-source": "^1.3.6",
31+
"@agoric/captp": "^1.7.12",
32+
"@agoric/install-ses": "^0.5.12",
3333
"@agoric/nat": "^4.0.0",
34-
"@agoric/promise-kit": "^0.2.11",
35-
"@agoric/swing-store-simple": "^0.3.7",
34+
"@agoric/promise-kit": "^0.2.12",
35+
"@agoric/swing-store-simple": "^0.3.8",
3636
"@iarna/toml": "^2.2.3",
3737
"anylogger": "^0.21.0",
3838
"chalk": "^2.4.2",

packages/assert/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.2.11](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
7+
8+
**Note:** Version bump only for package @agoric/assert
9+
10+
11+
12+
13+
614
## [0.2.10](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
715

816
**Note:** Version bump only for package @agoric/assert

packages/assert/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agoric/assert",
3-
"version": "0.2.10",
3+
"version": "0.2.11",
44
"description": "Assert expression support that protects sensitive data",
55
"parsers": {
66
"js": "mjs"
@@ -35,7 +35,7 @@
3535
},
3636
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
3737
"devDependencies": {
38-
"@agoric/install-ses": "^0.5.11",
38+
"@agoric/install-ses": "^0.5.12",
3939
"ava": "^3.12.1",
4040
"esm": "^3.2.25",
4141
"nyc": "^15.1.0"

packages/bundle-source/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.3.6](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
7+
8+
**Note:** Version bump only for package @agoric/bundle-source
9+
10+
11+
12+
13+
614
## [1.3.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
715

816
**Note:** Version bump only for package @agoric/bundle-source

packages/bundle-source/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agoric/bundle-source",
3-
"version": "1.3.5",
3+
"version": "1.3.6",
44
"description": "Create source bundles from ES Modules",
55
"parsers": {
66
"js": "mjs"
@@ -17,12 +17,12 @@
1717
"lint-check-jessie": "eslint -c '.eslintrc-jessie.js' '**/*.js'"
1818
},
1919
"devDependencies": {
20-
"@agoric/install-ses": "^0.5.11",
20+
"@agoric/install-ses": "^0.5.12",
2121
"ava": "^3.12.1",
2222
"nyc": "^15.1.0"
2323
},
2424
"dependencies": {
25-
"@agoric/acorn-eventual-send": "^2.1.7",
25+
"@agoric/acorn-eventual-send": "^2.1.8",
2626
"@agoric/babel-parser": "^7.6.4",
2727
"@agoric/compartment-mapper": "^0.2.4",
2828
"@babel/generator": "^7.6.4",

packages/captp/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.7.12](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
7+
8+
**Note:** Version bump only for package @agoric/captp
9+
10+
11+
12+
13+
614
## [1.7.11](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-05-05)
715

816
**Note:** Version bump only for package @agoric/captp

packages/captp/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agoric/captp",
3-
"version": "1.7.11",
3+
"version": "1.7.12",
44
"description": "Capability Transfer Protocol for distributed objects",
55
"parsers": {
66
"js": "mjs"
@@ -35,15 +35,15 @@
3535
"lint-check": "eslint 'lib/*.js'"
3636
},
3737
"devDependencies": {
38-
"@agoric/install-ses": "^0.5.11",
38+
"@agoric/install-ses": "^0.5.12",
3939
"ava": "^3.12.1",
4040
"nyc": "^15.1.0"
4141
},
4242
"dependencies": {
43-
"@agoric/eventual-send": "^0.13.12",
44-
"@agoric/marshal": "^0.4.9",
43+
"@agoric/eventual-send": "^0.13.13",
44+
"@agoric/marshal": "^0.4.10",
4545
"@agoric/nat": "^4.0.0",
46-
"@agoric/promise-kit": "^0.2.11",
46+
"@agoric/promise-kit": "^0.2.12",
4747
"esm": "^3.2.5"
4848
},
4949
"bugs": {

0 commit comments

Comments
 (0)