Skip to content

Commit

Permalink
chore: Release (merge #1980)
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal authored Jan 18, 2024
2 parents aa82c91 + 77475a7 commit 98d6ebe
Show file tree
Hide file tree
Showing 77 changed files with 536 additions and 171 deletions.
8 changes: 8 additions & 0 deletions packages/base64/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.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





## [1.0.0](https://github.com/endojs/endo/compare/@endo/base64@0.2.35...@endo/base64@1.0.0) (2023-12-12)


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.0",
"version": "1.0.1",
"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.2](https://github.com/endojs/endo/compare/@endo/bundle-source@3.0.1...@endo/bundle-source@3.0.2) (2024-01-18)


### Bug Fixes

* **bundle-source:** Accommodate Windows lack of atomic rename ([48135aa](https://github.com/endojs/endo/commit/48135aa7c2f39b1659afbca334ea26cbe7364596))
* realpathSync usage ([cebcf09](https://github.com/endojs/endo/commit/cebcf09ba70bebdf5bb26176f76cb21d130ea20a))



### [3.0.1](https://github.com/endojs/endo/compare/@endo/bundle-source@3.0.0...@endo/bundle-source@3.0.1) (2023-12-20)


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.1",
"version": "3.0.2",
"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.0",
"@endo/compartment-mapper": "^1.0.1",
"@endo/evasive-transform": "^1.0.1",
"@endo/init": "^1.0.1",
"@endo/promise-kit": "^1.0.1",
"@endo/where": "^1.0.0",
"@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",
"@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.1",
"@endo/ses-ava": "^1.0.1",
"@endo/lockdown": "^1.0.2",
"@endo/ses-ava": "^1.1.0",
"ava": "^5.3.0",
"c8": "^7.14.0",
"execa": "^8.0.1"
Expand Down
9 changes: 9 additions & 0 deletions packages/captp/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.

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


### Bug Fixes

* Explicitly harden prototypes ([3f98274](https://github.com/endojs/endo/commit/3f9827429dc79105230e8f5377dcc6a14038e9f5))



### [4.0.1](https://github.com/endojs/endo/compare/@endo/captp@4.0.0...@endo/captp@4.0.1) (2023-12-20)


Expand Down
14 changes: 7 additions & 7 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.1",
"version": "4.0.2",
"description": "Capability Transfer Protocol for distributed objects",
"type": "module",
"keywords": [
Expand Down Expand Up @@ -46,16 +46,16 @@
"lint:types": "tsc"
},
"devDependencies": {
"@endo/init": "^1.0.1",
"@endo/ses-ava": "^1.0.1",
"@endo/init": "^1.0.2",
"@endo/ses-ava": "^1.1.0",
"ava": "^5.3.0",
"c8": "^7.14.0"
},
"dependencies": {
"@endo/eventual-send": "^1.0.1",
"@endo/marshal": "^1.0.1",
"@endo/nat": "^5.0.1",
"@endo/promise-kit": "^1.0.1"
"@endo/eventual-send": "^1.1.0",
"@endo/marshal": "^1.1.0",
"@endo/nat": "^5.0.2",
"@endo/promise-kit": "^1.0.2"
},
"bugs": {
"url": "https://github.com/endojs/endo/issues"
Expand Down
8 changes: 8 additions & 0 deletions packages/check-bundle/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.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





### [1.0.1](https://github.com/endojs/endo/compare/@endo/check-bundle@1.0.0...@endo/check-bundle@1.0.1) (2023-12-20)

**Note:** Version bump only for package @endo/check-bundle
Expand Down
12 changes: 6 additions & 6 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.1",
"version": "1.0.2",
"description": "Checks the integrity of an Endo bundle.",
"keywords": [
"endo",
Expand Down Expand Up @@ -39,13 +39,13 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js"
},
"dependencies": {
"@endo/base64": "^1.0.0",
"@endo/compartment-mapper": "^1.0.1"
"@endo/base64": "^1.0.1",
"@endo/compartment-mapper": "^1.1.0"
},
"devDependencies": {
"@endo/bundle-source": "^3.0.1",
"@endo/init": "^1.0.1",
"@endo/zip": "^1.0.0",
"@endo/bundle-source": "^3.0.2",
"@endo/init": "^1.0.2",
"@endo/zip": "^1.0.1",
"ava": "^5.3.0",
"babel-eslint": "^10.0.3",
"c8": "^7.14.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/cjs-module-analyzer/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.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





## [1.0.0](https://github.com/endojs/endo/compare/@endo/cjs-module-analyzer@0.2.35...@endo/cjs-module-analyzer@1.0.0) (2023-12-12)


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.0",
"version": "1.0.1",
"description": "A JavaScript lexer dedicated to static analysis and transformation of ECMAScript modules.",
"keywords": [],
"author": "Endo contributors",
Expand Down
8 changes: 8 additions & 0 deletions packages/cli/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.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





### [1.0.1](https://github.com/endojs/endo/compare/@endo/cli@1.0.0...@endo/cli@1.0.1) (2023-12-20)

**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.1",
"version": "1.0.2",
"description": "Endo command line interface",
"keywords": [],
"author": "Endo contributors",
Expand All @@ -26,15 +26,15 @@
"test": "exit 0"
},
"dependencies": {
"@endo/compartment-mapper": "^1.0.1",
"@endo/daemon": "^1.0.1",
"@endo/eventual-send": "^1.0.1",
"@endo/far": "^1.0.1",
"@endo/lockdown": "^1.0.1",
"@endo/promise-kit": "^1.0.1",
"@endo/where": "^1.0.0",
"@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",
"commander": "^5.0.0",
"ses": "^1.0.1"
"ses": "^1.1.0"
},
"devDependencies": {
"ava": "^5.3.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### 1.0.2 (2024-01-18)


### Bug Fixes

* **common:** fix @endo/common integration breakage ([#1963](https://github.com/endojs/endo/issues/1963)) ([73b5059](https://github.com/endojs/endo/commit/73b50590b7aef7eaffe2c435286fb291bf9b22bf))
10 changes: 5 additions & 5 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.1",
"version": "1.0.2",
"description": "common low level utilities",
"keywords": [],
"author": "Endo contributors",
Expand Down Expand Up @@ -41,12 +41,12 @@
"test:xs": "exit 0"
},
"dependencies": {
"@endo/eventual-send": "^1.0.1",
"@endo/promise-kit": "^1.0.1"
"@endo/eventual-send": "^1.1.0",
"@endo/promise-kit": "^1.0.2"
},
"devDependencies": {
"@endo/lockdown": "^1.0.1",
"@endo/ses-ava": "^1.0.1",
"@endo/lockdown": "^1.0.2",
"@endo/ses-ava": "^1.1.0",
"ava": "^5.3.0",
"c8": "^7.14.0",
"tsd": "^0.28.1"
Expand Down
15 changes: 15 additions & 0 deletions packages/compartment-mapper/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.1.0](https://github.com/endojs/endo/compare/@endo/compartment-mapper@1.0.1...@endo/compartment-mapper@1.1.0) (2024-01-18)


### Features

* **compartment-mapper:** add policy-related types ([d3b49e8](https://github.com/endojs/endo/commit/d3b49e828bd0ea2344079d2b0d205e4633624bee))


### Bug Fixes

* **compartment-mapper:** handle implicit policy/packagePolicy ([ed6f23e](https://github.com/endojs/endo/commit/ed6f23e5957dd89b9732aa087d99c10a58f56c26))
* **compartment-mapper:** throw if policy/packagePolicy mismatch ([ece09e2](https://github.com/endojs/endo/commit/ece09e253f48416e465a948c0e85ee6d866d7358))



### [1.0.1](https://github.com/endojs/endo/compare/@endo/compartment-mapper@1.0.0...@endo/compartment-mapper@1.0.1) (2023-12-20)

**Note:** Version bump only for package @endo/compartment-mapper
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.0.1",
"version": "1.1.0",
"description": "The compartment mapper assembles Node applications in a sandbox",
"keywords": [
"node",
Expand Down Expand Up @@ -46,10 +46,10 @@
"test": "ava"
},
"dependencies": {
"@endo/cjs-module-analyzer": "^1.0.0",
"@endo/static-module-record": "^1.0.1",
"@endo/zip": "^1.0.0",
"ses": "^1.0.1"
"@endo/cjs-module-analyzer": "^1.0.1",
"@endo/static-module-record": "^1.0.2",
"@endo/zip": "^1.0.1",
"ses": "^1.1.0"
},
"devDependencies": {
"ava": "^5.3.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/daemon/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.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





### [1.0.1](https://github.com/endojs/endo/compare/@endo/daemon@1.0.0...@endo/daemon@1.0.1) (2023-12-20)

**Note:** Version bump only for package @endo/daemon
Expand Down
22 changes: 11 additions & 11 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.1",
"version": "1.0.2",
"description": "Endo daemon",
"keywords": [
"endo",
Expand Down Expand Up @@ -39,16 +39,16 @@
"test": "ava"
},
"dependencies": {
"@endo/captp": "^4.0.1",
"@endo/eventual-send": "^1.0.1",
"@endo/far": "^1.0.1",
"@endo/lockdown": "^1.0.1",
"@endo/netstring": "^1.0.1",
"@endo/promise-kit": "^1.0.1",
"@endo/stream": "^1.0.1",
"@endo/stream-node": "^1.0.1",
"@endo/where": "^1.0.0",
"ses": "^1.0.1"
"@endo/captp": "^4.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"
},
"devDependencies": {
"ava": "^5.3.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/env-options/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.0](https://github.com/endojs/endo/compare/@endo/env-options@1.0.1...@endo/env-options@1.1.0) (2024-01-18)


### Features

* **env-options:** env-options conveniences for common cases ([#1710](https://github.com/endojs/endo/issues/1710)) ([4c686f6](https://github.com/endojs/endo/commit/4c686f6c9c3c54dbf73e8e7cd80a4dfebcbc61df))



### [1.0.1](https://github.com/endojs/endo/compare/@endo/env-options@1.0.0...@endo/env-options@1.0.1) (2023-12-20)

**Note:** Version bump only for package @endo/env-options
Expand Down
2 changes: 1 addition & 1 deletion packages/env-options/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@endo/env-options",
"version": "1.0.1",
"version": "1.1.0",
"private": null,
"description": "Reading environment options.",
"keywords": [],
Expand Down
Loading

0 comments on commit 98d6ebe

Please sign in to comment.