Skip to content

Commit 1bcc769

Browse files
authored
chore: release (#2272)
Regularly occurring releases. This include changes to pass-style, patterns, & exo including a new TypeScript type for Passables.
2 parents 6447287 + f3592b6 commit 1bcc769

Some content is hidden

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

82 files changed

+778
-390
lines changed

CONTRIBUTING.md

+14
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ https://github.com/endojs/endo/labels/next-release
7272
git commit -am 'docs: Update release notes'
7373
```
7474

75+
* Update `yarn.lock`.
76+
77+
```sh
78+
yarn
79+
git add -um 'chore: Update yarn.lock'
80+
```
81+
7582
* Push the branch.
7683

7784
```sh
@@ -123,6 +130,13 @@ https://github.com/endojs/endo/labels/next-release
123130
yarn lerna version --no-push --conventional-graduate
124131
```
125132

133+
* Update `yarn.lock`.
134+
135+
```sh
136+
yarn
137+
git add -um 'chore: Update yarn.lock'
138+
```
139+
126140
* Publish the versions to npm.
127141
Being a member of the project or organization and having two-factor
128142
authentication may be necessary. It may be necessary to login with

packages/base64/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.0.5](https://github.com/endojs/endo/compare/@endo/base64@1.0.4...@endo/base64@1.0.5) (2024-05-07)
7+
8+
**Note:** Version bump only for package @endo/base64
9+
10+
11+
12+
13+
614
### [1.0.4](https://github.com/endojs/endo/compare/@endo/base64@1.0.3...@endo/base64@1.0.4) (2024-04-04)
715

816
**Note:** Version bump only for package @endo/base64

packages/base64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@endo/base64",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Transcodes base64",
55
"keywords": [
66
"base64",

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+
### [3.2.3](https://github.com/endojs/endo/compare/@endo/bundle-source@3.2.2...@endo/bundle-source@3.2.3) (2024-05-07)
7+
8+
**Note:** Version bump only for package @endo/bundle-source
9+
10+
11+
12+
13+
614
### [3.2.2](https://github.com/endojs/endo/compare/@endo/bundle-source@3.2.1...@endo/bundle-source@3.2.2) (2024-04-04)
715

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

packages/bundle-source/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@endo/bundle-source",
3-
"version": "3.2.2",
3+
"version": "3.2.3",
44
"description": "Create source bundles from ES Modules",
55
"type": "module",
66
"main": "src/index.js",
@@ -25,20 +25,20 @@
2525
"lint:types": "tsc"
2626
},
2727
"dependencies": {
28-
"@endo/base64": "^1.0.4",
29-
"@endo/compartment-mapper": "^1.1.4",
30-
"@endo/evasive-transform": "^1.1.1",
31-
"@endo/init": "^1.1.1",
32-
"@endo/promise-kit": "^1.1.1",
33-
"@endo/where": "^1.0.4",
28+
"@endo/base64": "^1.0.5",
29+
"@endo/compartment-mapper": "^1.1.5",
30+
"@endo/evasive-transform": "^1.1.2",
31+
"@endo/init": "^1.1.2",
32+
"@endo/promise-kit": "^1.1.2",
33+
"@endo/where": "^1.0.5",
3434
"@rollup/plugin-commonjs": "^19.0.0",
3535
"@rollup/plugin-node-resolve": "^13.0.0",
3636
"acorn": "^8.2.4",
3737
"rollup": "^2.79.1"
3838
},
3939
"devDependencies": {
40-
"@endo/lockdown": "^1.0.6",
41-
"@endo/ses-ava": "^1.2.1",
40+
"@endo/lockdown": "^1.0.7",
41+
"@endo/ses-ava": "^1.2.2",
4242
"ava": "^6.1.2",
4343
"c8": "^7.14.0"
4444
},

packages/captp/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
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+
## [4.2.0](https://github.com/endojs/endo/compare/@endo/captp@4.1.1...@endo/captp@4.2.0) (2024-05-07)
7+
8+
9+
### Features
10+
11+
* **types:** fromCapData is Passable, but unknown is more practical ([5fa54f0](https://github.com/endojs/endo/commit/5fa54f0287b467d3d6baf354a36263a4aa36ec55))
12+
13+
14+
615
### [4.1.1](https://github.com/endojs/endo/compare/@endo/captp@4.1.0...@endo/captp@4.1.1) (2024-04-04)
716

817
**Note:** Version bump only for package @endo/captp

packages/captp/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@endo/captp",
3-
"version": "4.1.1",
3+
"version": "4.2.0",
44
"description": "Capability Transfer Protocol for distributed objects",
55
"type": "module",
66
"keywords": [
@@ -47,17 +47,17 @@
4747
"lint:types": "tsc"
4848
},
4949
"devDependencies": {
50-
"@endo/init": "^1.1.1",
51-
"@endo/ses-ava": "^1.2.1",
50+
"@endo/init": "^1.1.2",
51+
"@endo/ses-ava": "^1.2.2",
5252
"ava": "^6.1.2",
5353
"c8": "^7.14.0"
5454
},
5555
"dependencies": {
56-
"@endo/errors": "^1.2.1",
57-
"@endo/eventual-send": "^1.2.1",
58-
"@endo/marshal": "^1.4.1",
59-
"@endo/nat": "^5.0.6",
60-
"@endo/promise-kit": "^1.1.1"
56+
"@endo/errors": "^1.2.2",
57+
"@endo/eventual-send": "^1.2.2",
58+
"@endo/marshal": "^1.5.0",
59+
"@endo/nat": "^5.0.7",
60+
"@endo/promise-kit": "^1.1.2"
6161
},
6262
"bugs": {
6363
"url": "https://github.com/endojs/endo/issues"

packages/check-bundle/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.0.7](https://github.com/endojs/endo/compare/@endo/check-bundle@1.0.6...@endo/check-bundle@1.0.7) (2024-05-07)
7+
8+
**Note:** Version bump only for package @endo/check-bundle
9+
10+
11+
12+
13+
614
### [1.0.6](https://github.com/endojs/endo/compare/@endo/check-bundle@1.0.5...@endo/check-bundle@1.0.6) (2024-04-04)
715

816
**Note:** Version bump only for package @endo/check-bundle

packages/check-bundle/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@endo/check-bundle",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"description": "Checks the integrity of an Endo bundle.",
55
"keywords": [
66
"endo",
@@ -40,14 +40,14 @@
4040
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js"
4141
},
4242
"dependencies": {
43-
"@endo/base64": "^1.0.4",
44-
"@endo/compartment-mapper": "^1.1.4",
45-
"@endo/errors": "^1.2.1"
43+
"@endo/base64": "^1.0.5",
44+
"@endo/compartment-mapper": "^1.1.5",
45+
"@endo/errors": "^1.2.2"
4646
},
4747
"devDependencies": {
48-
"@endo/bundle-source": "^3.2.2",
49-
"@endo/init": "^1.1.1",
50-
"@endo/zip": "^1.0.4",
48+
"@endo/bundle-source": "^3.2.3",
49+
"@endo/init": "^1.1.2",
50+
"@endo/zip": "^1.0.5",
5151
"ava": "^6.1.2",
5252
"babel-eslint": "^10.0.3",
5353
"c8": "^7.14.0",

packages/cjs-module-analyzer/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.0.5](https://github.com/endojs/endo/compare/@endo/cjs-module-analyzer@1.0.4...@endo/cjs-module-analyzer@1.0.5) (2024-05-07)
7+
8+
**Note:** Version bump only for package @endo/cjs-module-analyzer
9+
10+
11+
12+
13+
614
### [1.0.4](https://github.com/endojs/endo/compare/@endo/cjs-module-analyzer@1.0.3...@endo/cjs-module-analyzer@1.0.4) (2024-04-04)
715

816
**Note:** Version bump only for package @endo/cjs-module-analyzer

packages/cjs-module-analyzer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@endo/cjs-module-analyzer",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "A JavaScript lexer dedicated to static analysis and transformation of ECMAScript modules.",
55
"keywords": [],
66
"author": "Endo contributors",

packages/cli/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@
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.2.0](https://github.com/endojs/endo/compare/@endo/cli@2.1.1...@endo/cli@2.2.0) (2024-05-07)
7+
8+
9+
### Features
10+
11+
* **cli:** Add eval to demo web UI ([8b0fe92](https://github.com/endojs/endo/commit/8b0fe921dd521e0c145fea353bd2fb5765bcf9e5))
12+
* **cli:** Add eval value viewer ([5b5e10a](https://github.com/endojs/endo/commit/5b5e10a3032b780bd0af44c4fa4c9fc40aed68ca))
13+
* **cli:** Add responsive curly braces and square brackets ([6095ad5](https://github.com/endojs/endo/commit/6095ad502bae52d8dd5f25b706f0f2ed02d1789f))
14+
* **cli:** Add show button to inventory in web UI ([3535f53](https://github.com/endojs/endo/commit/3535f53cec4bd923e0e5d327d9fa9d691eb06eb0))
15+
* **cli:** demo: Add a coat of paint, scroll, chat ([85dad01](https://github.com/endojs/endo/commit/85dad012ee74a24188f926a8fd8ff1a670449df0))
16+
* **cli:** Less fancy value representations ([f1faf9d](https://github.com/endojs/endo/commit/f1faf9dfaeacbed6b04476dca72e37664eafd59f))
17+
* **cli:** Show dotted paths ([c1e6db6](https://github.com/endojs/endo/commit/c1e6db6f3e3755cde596b26e0e915d798878c1af))
18+
* **cli:** Store more value types ([0eb8759](https://github.com/endojs/endo/commit/0eb8759acc0fec6191f037ab3c99990a3f6207ba))
19+
* **daemon:** Always stop the daemon on purge ([c6a9b0c](https://github.com/endojs/endo/commit/c6a9b0cf9cae0b64dbf5d45ab98fb270352060d4))
20+
* **daemon:** Invitations ([0f3a2a3](https://github.com/endojs/endo/commit/0f3a2a33783f4915471af717024b77441d4446c2))
21+
22+
23+
### Bug Fixes
24+
25+
* **cli:** demo: Fix type error when receiving message from self ([d1c58c4](https://github.com/endojs/endo/commit/d1c58c41e5dcb72d36e6b01b923d66483d96d5a7))
26+
* **cli:** Remove spooky accelerator cross-coupling ([1a086d7](https://github.com/endojs/endo/commit/1a086d7e554fb16f1f768a25c96e7e646a38079a))
27+
* **cli:** Remove stray endowments element ([4e78372](https://github.com/endojs/endo/commit/4e78372677badfa42b4696d8c95e3d30ac019f19))
28+
* **cli:** Update cat.js guide ([ddc0825](https://github.com/endojs/endo/commit/ddc08257a2c1999d9d3ce3e8b7b5e8795aed56a4))
29+
30+
31+
632
### [2.1.1](https://github.com/endojs/endo/compare/@endo/cli@2.1.0...@endo/cli@2.1.1) (2024-04-04)
733

834
**Note:** Version bump only for package @endo/cli

packages/cli/package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@endo/cli",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"private": true,
55
"description": "Endo command line interface",
66
"keywords": [],
@@ -31,22 +31,22 @@
3131
"test": "exit 0"
3232
},
3333
"dependencies": {
34-
"@endo/bundle-source": "^3.2.2",
35-
"@endo/compartment-mapper": "^1.1.4",
36-
"@endo/daemon": "^2.2.0",
37-
"@endo/eventual-send": "^1.2.1",
38-
"@endo/exo": "^1.4.0",
39-
"@endo/far": "^1.1.1",
40-
"@endo/import-bundle": "^1.1.1",
41-
"@endo/lockdown": "^1.0.6",
42-
"@endo/pass-style": "^1.3.1",
43-
"@endo/patterns": "^1.3.1",
44-
"@endo/promise-kit": "^1.1.1",
45-
"@endo/stream-node": "^1.1.1",
46-
"@endo/where": "^1.0.4",
34+
"@endo/bundle-source": "^3.2.3",
35+
"@endo/compartment-mapper": "^1.1.5",
36+
"@endo/daemon": "^2.3.0",
37+
"@endo/eventual-send": "^1.2.2",
38+
"@endo/exo": "^1.5.0",
39+
"@endo/far": "^1.1.2",
40+
"@endo/import-bundle": "^1.1.2",
41+
"@endo/lockdown": "^1.0.7",
42+
"@endo/pass-style": "^1.4.0",
43+
"@endo/patterns": "^1.4.0",
44+
"@endo/promise-kit": "^1.1.2",
45+
"@endo/stream-node": "^1.1.2",
46+
"@endo/where": "^1.0.5",
4747
"commander": "^5.0.0",
4848
"open": "^9.1.0",
49-
"ses": "^1.4.1"
49+
"ses": "^1.5.0"
5050
},
5151
"devDependencies": {
5252
"ava": "^6.1.2",

packages/common/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.2.2](https://github.com/endojs/endo/compare/@endo/common@1.2.1...@endo/common@1.2.2) (2024-05-07)
7+
8+
**Note:** Version bump only for package @endo/common
9+
10+
11+
12+
13+
614
### [1.2.1](https://github.com/endojs/endo/compare/@endo/common@1.2.0...@endo/common@1.2.1) (2024-04-04)
715

816
**Note:** Version bump only for package @endo/common

packages/common/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@endo/common",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "common low level utilities",
55
"keywords": [],
66
"author": "Endo contributors",
@@ -41,13 +41,13 @@
4141
"test:xs": "exit 0"
4242
},
4343
"dependencies": {
44-
"@endo/errors": "^1.2.1",
45-
"@endo/eventual-send": "^1.2.1",
46-
"@endo/promise-kit": "^1.1.1"
44+
"@endo/errors": "^1.2.2",
45+
"@endo/eventual-send": "^1.2.2",
46+
"@endo/promise-kit": "^1.1.2"
4747
},
4848
"devDependencies": {
49-
"@endo/lockdown": "^1.0.6",
50-
"@endo/ses-ava": "^1.2.1",
49+
"@endo/lockdown": "^1.0.7",
50+
"@endo/ses-ava": "^1.2.2",
5151
"ava": "^6.1.2",
5252
"c8": "^7.14.0",
5353
"tsd": "^0.30.7"

packages/compartment-mapper/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.1.5](https://github.com/endojs/endo/compare/@endo/compartment-mapper@1.1.4...@endo/compartment-mapper@1.1.5) (2024-05-07)
7+
8+
**Note:** Version bump only for package @endo/compartment-mapper
9+
10+
11+
12+
13+
614
### [1.1.4](https://github.com/endojs/endo/compare/@endo/compartment-mapper@1.1.3...@endo/compartment-mapper@1.1.4) (2024-04-04)
715

816
**Note:** Version bump only for package @endo/compartment-mapper

packages/compartment-mapper/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@endo/compartment-mapper",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "The compartment mapper assembles Node applications in a sandbox",
55
"keywords": [
66
"node",
@@ -47,10 +47,10 @@
4747
"test": "ava"
4848
},
4949
"dependencies": {
50-
"@endo/cjs-module-analyzer": "^1.0.4",
51-
"@endo/static-module-record": "^1.1.1",
52-
"@endo/zip": "^1.0.4",
53-
"ses": "^1.4.1"
50+
"@endo/cjs-module-analyzer": "^1.0.5",
51+
"@endo/static-module-record": "^1.1.2",
52+
"@endo/zip": "^1.0.5",
53+
"ses": "^1.5.0"
5454
},
5555
"devDependencies": {
5656
"ava": "^6.1.2",

0 commit comments

Comments
 (0)