Skip to content

Commit

Permalink
Publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 20, 2024
1 parent 994e2ea commit 34aab6f
Show file tree
Hide file tree
Showing 16 changed files with 83 additions and 35 deletions.
16 changes: 0 additions & 16 deletions .changeset/ninety-wasps-deny.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/pink-dryers-fix.md

This file was deleted.

7 changes: 7 additions & 0 deletions examples/custom-element/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# example-custom-element

## 0.0.14

### Patch Changes

- Updated dependencies [[`994e2ea`](https://github.com/Shopify/remote-dom/commit/994e2ea2f7ab0e67a2c37e5295ce86618b004518), [`017ca02`](https://github.com/Shopify/remote-dom/commit/017ca029fb148a51115edb12b7c8ccd49d2c52eb)]:
- @remote-dom/core@1.5.1

## 0.0.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-element/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "example-custom-element",
"version": "0.0.13",
"version": "0.0.14",
"type": "module",
"private": true,
"scripts": {
Expand Down
7 changes: 7 additions & 0 deletions examples/getting-started/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# example-getting-started

## 0.0.14

### Patch Changes

- Updated dependencies [[`994e2ea`](https://github.com/Shopify/remote-dom/commit/994e2ea2f7ab0e67a2c37e5295ce86618b004518), [`017ca02`](https://github.com/Shopify/remote-dom/commit/017ca029fb148a51115edb12b7c8ccd49d2c52eb)]:
- @remote-dom/core@1.5.1

## 0.0.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/getting-started/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "example-getting-started",
"version": "0.0.13",
"version": "0.0.14",
"type": "module",
"private": true,
"scripts": {
Expand Down
9 changes: 9 additions & 0 deletions examples/kitchen-sink/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# example-kitchen-sink

## 0.0.17

### Patch Changes

- Updated dependencies [[`994e2ea`](https://github.com/Shopify/remote-dom/commit/994e2ea2f7ab0e67a2c37e5295ce86618b004518), [`017ca02`](https://github.com/Shopify/remote-dom/commit/017ca029fb148a51115edb12b7c8ccd49d2c52eb)]:
- @remote-dom/core@1.5.1
- @remote-dom/preact@1.2.1
- @remote-dom/signals@1.1.1

## 0.0.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/kitchen-sink/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "example-kitchen-sink",
"type": "module",
"private": true,
"version": "0.0.16",
"version": "0.0.17",
"scripts": {
"start": "vite"
},
Expand Down
21 changes: 21 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @remote-dom/core

## 1.5.1

### Patch Changes

- [#499](https://github.com/Shopify/remote-dom/pull/499) [`994e2ea`](https://github.com/Shopify/remote-dom/commit/994e2ea2f7ab0e67a2c37e5295ce86618b004518) Thanks [@lemonmade](https://github.com/lemonmade)! - Roll back mutation of `globalThis` and `globalThis.self` in `Window.setGlobal()`

This prevents the polyfill from interfering with globals like `globalThis.addEventListener`, which you may need to manage the communication between a sandboxed environment and the main thread.

In the future, we will likely change the polyfill to require you to explicitly install the polyfill, instead of it being done automatically when you `@remote-dom/core/polyfill`. At that point, we will reintroduce the ability to more faithfully replicate more DOM globals, like having `globalThis`, `globalThis.self`, and `globalThis.window` all refer to the same polyfilled `Window` object. To install this polyfill today and get back to the behavior introduced by [this PR](https://github.com/Shopify/remote-dom/pull/470), you can call the new `Window.setGlobalThis()` method:

```js
import {window, Window} from '@remote-dom/core/polyfill';

Window.setGlobalThis(window);
```

- [#465](https://github.com/Shopify/remote-dom/pull/465) [`017ca02`](https://github.com/Shopify/remote-dom/commit/017ca029fb148a51115edb12b7c8ccd49d2c52eb) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix `slot` to be transmitted as an attribute, not a property

- Updated dependencies [[`994e2ea`](https://github.com/Shopify/remote-dom/commit/994e2ea2f7ab0e67a2c37e5295ce86618b004518)]:
- @remote-dom/polyfill@1.4.2

## 1.5.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"access": "public",
"@remote-dom/registry": "https://registry.npmjs.org"
},
"version": "1.5.0",
"version": "1.5.1",
"engines": {
"node": ">=14.0.0"
},
Expand Down Expand Up @@ -80,7 +80,7 @@
"build": "rollup --config ./rollup.config.js"
},
"dependencies": {
"@remote-dom/polyfill": "workspace:^1.3.0",
"@remote-dom/polyfill": "workspace:^1.4.2",
"htm": "^3.1.1"
},
"peerDependencies": {
Expand Down
16 changes: 16 additions & 0 deletions packages/polyfill/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @remote-dom/polyfill

## 1.4.2

### Patch Changes

- [#499](https://github.com/Shopify/remote-dom/pull/499) [`994e2ea`](https://github.com/Shopify/remote-dom/commit/994e2ea2f7ab0e67a2c37e5295ce86618b004518) Thanks [@lemonmade](https://github.com/lemonmade)! - Roll back mutation of `globalThis` and `globalThis.self` in `Window.setGlobal()`

This prevents the polyfill from interfering with globals like `globalThis.addEventListener`, which you may need to manage the communication between a sandboxed environment and the main thread.

In the future, we will likely change the polyfill to require you to explicitly install the polyfill, instead of it being done automatically when you `@remote-dom/core/polyfill`. At that point, we will reintroduce the ability to more faithfully replicate more DOM globals, like having `globalThis`, `globalThis.self`, and `globalThis.window` all refer to the same polyfilled `Window` object. To install this polyfill today and get back to the behavior introduced by [this PR](https://github.com/Shopify/remote-dom/pull/470), you can call the new `Window.setGlobalThis()` method:

```js
import {window, Window} from '@remote-dom/core/polyfill';

Window.setGlobalThis(window);
```

## 1.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/polyfill/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"access": "public",
"@remote-dom/registry": "https://registry.npmjs.org"
},
"version": "1.4.1",
"version": "1.4.2",
"engines": {
"node": ">=14.0.0"
},
Expand Down
10 changes: 10 additions & 0 deletions packages/preact/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @remote-dom/preact

## 1.2.1

### Patch Changes

- [#465](https://github.com/Shopify/remote-dom/pull/465) [`017ca02`](https://github.com/Shopify/remote-dom/commit/017ca029fb148a51115edb12b7c8ccd49d2c52eb) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix `slot` to be transmitted as an attribute, not a property

- Updated dependencies [[`994e2ea`](https://github.com/Shopify/remote-dom/commit/994e2ea2f7ab0e67a2c37e5295ce86618b004518), [`017ca02`](https://github.com/Shopify/remote-dom/commit/017ca029fb148a51115edb12b7c8ccd49d2c52eb)]:
- @remote-dom/core@1.5.1
- @remote-dom/signals@1.1.1

## 1.2.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/preact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"access": "public",
"@remote-dom/registry": "https://registry.npmjs.org"
},
"version": "1.2.0",
"version": "1.2.1",
"engines": {
"node": ">=14.0.0"
},
Expand Down Expand Up @@ -55,8 +55,8 @@
"build": "rollup --config rollup.config.js"
},
"dependencies": {
"@remote-dom/core": "workspace:^1.5.0",
"@remote-dom/signals": "workspace:^1.1.0",
"@remote-dom/core": "workspace:^1.5.1",
"@remote-dom/signals": "workspace:^1.1.1",
"htm": "^3.1.1"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/signals/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"peerDependencies": {
"@preact/signals-core": "^1.3.0",
"@remote-dom/core": "workspace:^1.0.0"
"@remote-dom/core": "workspace:^1.5.1"
},
"peerDependenciesMeta": {
"@preact/signals-core": {
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

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

0 comments on commit 34aab6f

Please sign in to comment.