Skip to content

Commit

Permalink
1.0.0-alpha.22
Browse files Browse the repository at this point in the history
  • Loading branch information
lahmatiy committed Jun 29, 2022
1 parent f5be89a commit dc9248d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## next
## 1.0.0-alpha.22 (June 29, 2022)

- Fixed a crash on UI init in sandbox when a bundle declares variables with a name as a readonly globals referring to a window object like `top`, `parent` etc.
- Fixed crash on UI init in a sandbox when a bundle declares variables with a name as a readonly globals referring to a window object like `top`, `parent` etc.
- Changed `createPublisher()` to return a root namespace (`ns('*')`) instead of a `Publisher`'s instance
- Changed `getSubscriber()` and `getSelfSubscriber()` to return a root namespace (`ns('*')`) instead of a `Subscriber`'s instance
- Improved TypeScript typings

## 1.0.0-alpha.21 (May 20, 2022)

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rempl",
"version": "1.0.0-alpha.21",
"version": "1.0.0-alpha.22",
"description": "Framework for moderated access with custom UI to remote JavaScript runtime",
"repository": "rempl/rempl",
"license": "MIT",
Expand All @@ -16,6 +16,7 @@
"browser": "./lib/browser.js",
"exports": {
".": {
"types": "./lib/browser.d.ts",
"node": {
"types": "./lib/node.d.ts",
"require": "./lib/node.cjs",
Expand All @@ -37,7 +38,7 @@
"test": "npm run test:esm && npm run test:cjs",
"test:esm": "mocha lib-test/*.js",
"test:cjs": "mocha lib-test/*.cjs",
"build": "npm run build:transpile && npm run build:bundle",
"build": "npm run build:transpile && npm run build:bundle && npm run ts-emit-types",
"build:clean": "node scripts/clean.cjs",
"build:bundle": "node scripts/build.cjs",
"build:server-assets": "node node_modules/basisjs-tools-build/bin/build -c server/client/build.config",
Expand Down

0 comments on commit dc9248d

Please sign in to comment.