Skip to content

Commit

Permalink
chore: Release 2024-02-14 (merge #2077)
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal authored Feb 15, 2024
2 parents c819dca + 57b2820 commit 75bd2d2
Show file tree
Hide file tree
Showing 78 changed files with 578 additions and 187 deletions.
15 changes: 15 additions & 0 deletions packages/base64/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [1.0.2](https://github.com/endojs/endo/compare/@endo/base64@1.0.1...@endo/base64@1.0.2) (2024-02-15)


### Bug Fixes

* Add repository directory to all package descriptors ([e5f36e7](https://github.com/endojs/endo/commit/e5f36e7a321c13ee25e74eb74d2a5f3d7517119c))
* **base64:** Reject too-short encodings ([06d2fc5](https://github.com/endojs/endo/commit/06d2fc5f81f68977e10b47448e1e0c56dce5048f)), closes [#1990](https://github.com/endojs/endo/issues/1990)


### Performance Improvements

* **base64:** Avoid unnecessary calculations ([01c06d4](https://github.com/endojs/endo/commit/01c06d43273cd1dd522e8736e998b1c050f0475c))



### [1.0.1](https://github.com/endojs/endo/compare/@endo/base64@1.0.0...@endo/base64@1.0.1) (2024-01-18)

**Note:** Version bump only for package @endo/base64
Expand Down
2 changes: 1 addition & 1 deletion packages/base64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@endo/base64",
"version": "1.0.1",
"version": "1.0.2",
"description": "Transcodes base64",
"keywords": [
"base64",
Expand Down
10 changes: 10 additions & 0 deletions packages/bundle-source/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [3.0.3](https://github.com/endojs/endo/compare/@endo/bundle-source@3.0.2...@endo/bundle-source@3.0.3) (2024-02-15)


### Bug Fixes

* Add repository directory to all package descriptors ([e5f36e7](https://github.com/endojs/endo/commit/e5f36e7a321c13ee25e74eb74d2a5f3d7517119c))
* **bundle-source:** apply eval evasion for cjs modules too ([5b159cb](https://github.com/endojs/endo/commit/5b159cb8b572ef739529638cfb38c167977df222))



### [3.0.2](https://github.com/endojs/endo/compare/@endo/bundle-source@3.0.1...@endo/bundle-source@3.0.2) (2024-01-18)


Expand Down
18 changes: 9 additions & 9 deletions packages/bundle-source/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@endo/bundle-source",
"version": "3.0.2",
"version": "3.0.3",
"description": "Create source bundles from ES Modules",
"type": "module",
"main": "src/index.js",
Expand All @@ -27,20 +27,20 @@
"lint:types": "tsc"
},
"dependencies": {
"@endo/base64": "^1.0.1",
"@endo/compartment-mapper": "^1.1.0",
"@endo/evasive-transform": "^1.0.2",
"@endo/init": "^1.0.2",
"@endo/promise-kit": "^1.0.2",
"@endo/where": "^1.0.1",
"@endo/base64": "^1.0.2",
"@endo/compartment-mapper": "^1.1.1",
"@endo/evasive-transform": "^1.0.3",
"@endo/init": "^1.0.3",
"@endo/promise-kit": "^1.0.3",
"@endo/where": "^1.0.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"acorn": "^8.2.4",
"rollup": "^2.79.1"
},
"devDependencies": {
"@endo/lockdown": "^1.0.2",
"@endo/ses-ava": "^1.1.0",
"@endo/lockdown": "^1.0.3",
"@endo/ses-ava": "^1.1.1",
"ava": "^5.3.0",
"c8": "^7.14.0",
"execa": "^8.0.1"
Expand Down
10 changes: 10 additions & 0 deletions packages/captp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [4.0.3](https://github.com/endojs/endo/compare/@endo/captp@4.0.2...@endo/captp@4.0.3) (2024-02-15)


### Bug Fixes

* Add repository directory to all package descriptors ([e5f36e7](https://github.com/endojs/endo/commit/e5f36e7a321c13ee25e74eb74d2a5f3d7517119c))
* Edit change logs ([8186abe](https://github.com/endojs/endo/commit/8186abe62ed60c8db92ef8ddd39891dcf2863ee4))



### [4.0.2](https://github.com/endojs/endo/compare/@endo/captp@4.0.1...@endo/captp@4.0.2) (2024-01-18)


Expand Down
16 changes: 8 additions & 8 deletions packages/captp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@endo/captp",
"version": "4.0.2",
"version": "4.0.3",
"description": "Capability Transfer Protocol for distributed objects",
"type": "module",
"keywords": [
Expand Down Expand Up @@ -47,17 +47,17 @@
"lint:types": "tsc"
},
"devDependencies": {
"@endo/init": "^1.0.2",
"@endo/ses-ava": "^1.1.0",
"@endo/init": "^1.0.3",
"@endo/ses-ava": "^1.1.1",
"ava": "^5.3.0",
"c8": "^7.14.0"
},
"dependencies": {
"@endo/errors": "^1.0.2",
"@endo/eventual-send": "^1.1.0",
"@endo/marshal": "^1.1.0",
"@endo/nat": "^5.0.2",
"@endo/promise-kit": "^1.0.2"
"@endo/errors": "^1.0.3",
"@endo/eventual-send": "^1.1.1",
"@endo/marshal": "^1.2.0",
"@endo/nat": "^5.0.3",
"@endo/promise-kit": "^1.0.3"
},
"bugs": {
"url": "https://github.com/endojs/endo/issues"
Expand Down
9 changes: 9 additions & 0 deletions packages/check-bundle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [1.0.3](https://github.com/endojs/endo/compare/@endo/check-bundle@1.0.2...@endo/check-bundle@1.0.3) (2024-02-15)


### Bug Fixes

* Add repository directory to all package descriptors ([e5f36e7](https://github.com/endojs/endo/commit/e5f36e7a321c13ee25e74eb74d2a5f3d7517119c))



### [1.0.2](https://github.com/endojs/endo/compare/@endo/check-bundle@1.0.1...@endo/check-bundle@1.0.2) (2024-01-18)

**Note:** Version bump only for package @endo/check-bundle
Expand Down
14 changes: 7 additions & 7 deletions packages/check-bundle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@endo/check-bundle",
"version": "1.0.2",
"version": "1.0.3",
"description": "Checks the integrity of an Endo bundle.",
"keywords": [
"endo",
Expand Down Expand Up @@ -40,14 +40,14 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js"
},
"dependencies": {
"@endo/base64": "^1.0.1",
"@endo/compartment-mapper": "^1.1.0",
"@endo/errors": "^1.0.2"
"@endo/base64": "^1.0.2",
"@endo/compartment-mapper": "^1.1.1",
"@endo/errors": "^1.0.3"
},
"devDependencies": {
"@endo/bundle-source": "^3.0.2",
"@endo/init": "^1.0.2",
"@endo/zip": "^1.0.1",
"@endo/bundle-source": "^3.0.3",
"@endo/init": "^1.0.3",
"@endo/zip": "^1.0.2",
"ava": "^5.3.0",
"babel-eslint": "^10.0.3",
"c8": "^7.14.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/cjs-module-analyzer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [1.0.2](https://github.com/endojs/endo/compare/@endo/cjs-module-analyzer@1.0.1...@endo/cjs-module-analyzer@1.0.2) (2024-02-15)


### Bug Fixes

* Add repository directory to all package descriptors ([e5f36e7](https://github.com/endojs/endo/commit/e5f36e7a321c13ee25e74eb74d2a5f3d7517119c))



### [1.0.1](https://github.com/endojs/endo/compare/@endo/cjs-module-analyzer@1.0.0...@endo/cjs-module-analyzer@1.0.1) (2024-01-18)

**Note:** Version bump only for package @endo/cjs-module-analyzer
Expand Down
2 changes: 1 addition & 1 deletion packages/cjs-module-analyzer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@endo/cjs-module-analyzer",
"version": "1.0.1",
"version": "1.0.2",
"description": "A JavaScript lexer dedicated to static analysis and transformation of ECMAScript modules.",
"keywords": [],
"author": "Endo contributors",
Expand Down
9 changes: 9 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [1.0.3](https://github.com/endojs/endo/compare/@endo/cli@1.0.2...@endo/cli@1.0.3) (2024-02-15)


### Bug Fixes

* Add repository directory to all package descriptors ([e5f36e7](https://github.com/endojs/endo/commit/e5f36e7a321c13ee25e74eb74d2a5f3d7517119c))



### [1.0.2](https://github.com/endojs/endo/compare/@endo/cli@1.0.1...@endo/cli@1.0.2) (2024-01-18)

**Note:** Version bump only for package @endo/cli
Expand Down
18 changes: 9 additions & 9 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@endo/cli",
"version": "1.0.2",
"version": "1.0.3",
"description": "Endo command line interface",
"keywords": [],
"author": "Endo contributors",
Expand All @@ -27,15 +27,15 @@
"test": "exit 0"
},
"dependencies": {
"@endo/compartment-mapper": "^1.1.0",
"@endo/daemon": "^1.0.2",
"@endo/eventual-send": "^1.1.0",
"@endo/far": "^1.0.2",
"@endo/lockdown": "^1.0.2",
"@endo/promise-kit": "^1.0.2",
"@endo/where": "^1.0.1",
"@endo/compartment-mapper": "^1.1.1",
"@endo/daemon": "^1.0.3",
"@endo/eventual-send": "^1.1.1",
"@endo/far": "^1.0.3",
"@endo/lockdown": "^1.0.3",
"@endo/promise-kit": "^1.0.3",
"@endo/where": "^1.0.2",
"commander": "^5.0.0",
"ses": "^1.1.0"
"ses": "^1.2.0"
},
"devDependencies": {
"ava": "^5.3.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [1.0.3](https://github.com/endojs/endo/compare/@endo/common@1.0.2...@endo/common@1.0.3) (2024-02-15)

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





### 1.0.2 (2024-01-18)


Expand Down
12 changes: 6 additions & 6 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@endo/common",
"version": "1.0.2",
"version": "1.0.3",
"description": "common low level utilities",
"keywords": [],
"author": "Endo contributors",
Expand Down Expand Up @@ -41,13 +41,13 @@
"test:xs": "exit 0"
},
"dependencies": {
"@endo/errors": "^1.0.2",
"@endo/eventual-send": "^1.1.0",
"@endo/promise-kit": "^1.0.2"
"@endo/errors": "^1.0.3",
"@endo/eventual-send": "^1.1.1",
"@endo/promise-kit": "^1.0.3"
},
"devDependencies": {
"@endo/lockdown": "^1.0.2",
"@endo/ses-ava": "^1.1.0",
"@endo/lockdown": "^1.0.3",
"@endo/ses-ava": "^1.1.1",
"ava": "^5.3.0",
"c8": "^7.14.0",
"tsd": "^0.28.1"
Expand Down
9 changes: 9 additions & 0 deletions packages/compartment-mapper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [1.1.1](https://github.com/endojs/endo/compare/@endo/compartment-mapper@1.1.0...@endo/compartment-mapper@1.1.1) (2024-02-15)


### Bug Fixes

* Add repository directory to all package descriptors ([e5f36e7](https://github.com/endojs/endo/commit/e5f36e7a321c13ee25e74eb74d2a5f3d7517119c))



## [1.1.0](https://github.com/endojs/endo/compare/@endo/compartment-mapper@1.0.1...@endo/compartment-mapper@1.1.0) (2024-01-18)


Expand Down
10 changes: 5 additions & 5 deletions packages/compartment-mapper/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@endo/compartment-mapper",
"version": "1.1.0",
"version": "1.1.1",
"description": "The compartment mapper assembles Node applications in a sandbox",
"keywords": [
"node",
Expand Down Expand Up @@ -47,10 +47,10 @@
"test": "ava"
},
"dependencies": {
"@endo/cjs-module-analyzer": "^1.0.1",
"@endo/static-module-record": "^1.0.2",
"@endo/zip": "^1.0.1",
"ses": "^1.1.0"
"@endo/cjs-module-analyzer": "^1.0.2",
"@endo/static-module-record": "^1.0.3",
"@endo/zip": "^1.0.2",
"ses": "^1.2.0"
},
"devDependencies": {
"ava": "^5.3.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/daemon/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [1.0.3](https://github.com/endojs/endo/compare/@endo/daemon@1.0.2...@endo/daemon@1.0.3) (2024-02-15)


### Bug Fixes

* Add repository directory to all package descriptors ([e5f36e7](https://github.com/endojs/endo/commit/e5f36e7a321c13ee25e74eb74d2a5f3d7517119c))



### [1.0.2](https://github.com/endojs/endo/compare/@endo/daemon@1.0.1...@endo/daemon@1.0.2) (2024-01-18)

**Note:** Version bump only for package @endo/daemon
Expand Down
24 changes: 12 additions & 12 deletions packages/daemon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@endo/daemon",
"version": "1.0.2",
"version": "1.0.3",
"description": "Endo daemon",
"keywords": [
"endo",
Expand Down Expand Up @@ -40,17 +40,17 @@
"test": "ava"
},
"dependencies": {
"@endo/captp": "^4.0.2",
"@endo/errors": "^1.0.2",
"@endo/eventual-send": "^1.1.0",
"@endo/far": "^1.0.2",
"@endo/lockdown": "^1.0.2",
"@endo/netstring": "^1.0.2",
"@endo/promise-kit": "^1.0.2",
"@endo/stream": "^1.0.2",
"@endo/stream-node": "^1.0.2",
"@endo/where": "^1.0.1",
"ses": "^1.1.0"
"@endo/captp": "^4.0.3",
"@endo/errors": "^1.0.3",
"@endo/eventual-send": "^1.1.1",
"@endo/far": "^1.0.3",
"@endo/lockdown": "^1.0.3",
"@endo/netstring": "^1.0.3",
"@endo/promise-kit": "^1.0.3",
"@endo/stream": "^1.0.3",
"@endo/stream-node": "^1.0.3",
"@endo/where": "^1.0.2",
"ses": "^1.2.0"
},
"devDependencies": {
"ava": "^5.3.0",
Expand Down
Loading

0 comments on commit 75bd2d2

Please sign in to comment.