Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"buffersource-arraybufferstruct",
"bump-v8-image",
"canvas-console",
"canvas-cross-context-font-size",
"canvas-image-type-confusion",
"canvas-path-ctm",
"clean-compile-warnings",
Expand All @@ -72,6 +73,7 @@
"egl-swap-interval",
"fast-fused-decompress",
"fatal-emergency-teardown",
"fetch-late-binding",
"fetch-request-get-body",
"gamepad-id",
"gpu-transparent-present",
Expand Down Expand Up @@ -101,8 +103,10 @@
"v1-beta",
"v8-heap-sizing",
"video-element",
"video-play-before-metadata",
"web-audio-api",
"web-bluetooth",
"webgl2-bulk-defineproperties",
"webusb"
]
}
2 changes: 2 additions & 0 deletions packages/create-nxjs-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# create-nxjs-app

## 1.0.0-beta.6

## 1.0.0-beta.5

## 1.0.0-beta.4
Expand Down
2 changes: 1 addition & 1 deletion packages/create-nxjs-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-nxjs-app",
"version": "1.0.0-beta.5",
"version": "1.0.0-beta.6",
"description": "Initialize a `nx.js` homebrew application",
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions packages/nro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @nx.js/nro

## 1.0.0-beta.6

## 1.0.0-beta.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nx.js/nro",
"version": "1.0.0-beta.5",
"version": "1.0.0-beta.6",
"description": "Package nx.js app into a `.nro` file",
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions packages/nsp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @nx.js/nsp

## 1.0.0-beta.6

## 1.0.0-beta.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nsp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nx.js/nsp",
"version": "1.0.0-beta.5",
"version": "1.0.0-beta.6",
"description": "Package nx.js applications into a `.nsp` file",
"repository": {
"type": "git",
Expand Down
12 changes: 12 additions & 0 deletions packages/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @nx.js/runtime

## 1.0.0-beta.6

### Patch Changes

- fix: cross-context canvas font size leakage — re-pin the shared FT_Face char_size at the start of `fillText()`, `strokeText()`, and `measureText()` ([#406](https://github.com/TooTallNate/nx.js/pull/406))

- feat: `Image`, `Audio`, and `Video` now resolve `globalThis.fetch` at call time, so embedder-installed `fetch` wrappers (e.g. custom URL schemes) are honored for `src` loads ([#404](https://github.com/TooTallNate/nx.js/pull/404))

- fix: `Video.play()` no longer rejects with `InvalidStateError` when called before `loadedmetadata` — playback is queued and the returned promise resolves once it actually begins, matching `HTMLMediaElement.play()`. A pending `play()` is rejected with `AbortError` by `pause()` or a superseding load, and with `NotSupportedError` on load failure ([#412](https://github.com/TooTallNate/nx.js/pull/412))

- fix: install WebGL2 `GL_CONSTANTS` with a single bulk `Object.defineProperties()` call per target instead of ~740 sequential `Object.defineProperty()` calls at module scope ([#405](https://github.com/TooTallNate/nx.js/pull/405))

## 1.0.0-beta.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nx.js/runtime",
"version": "1.0.0-beta.5",
"version": "1.0.0-beta.6",
"description": "nx.js runtime",
"repository": {
"type": "git",
Expand Down