Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] release #1981

Merged
merged 1 commit into from
Jun 27, 2023
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
5 changes: 0 additions & 5 deletions .changeset/fluffy-paws-cross.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/soft-points-work.md

This file was deleted.

40 changes: 20 additions & 20 deletions package-lock.json

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

13 changes: 13 additions & 0 deletions packages/babel-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## 6.0.0

### Major Changes

- [#1980](https://github.com/marko-js/marko/pull/1980) [`9d3b34eef`](https://github.com/marko-js/marko/commit/9d3b34eefa2d0d9f9b27b9635950360b62be2f1f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Allow parse errors to be recovered from by migrations. This adds a new ast node type of MarkoParseError.
MarkoParseError nodes can be removed during the migration stage to handle legacy syntaxes. Any MarkoParseError
left in the AST at the end of the migration phase will throw an error similar to what it would have previously
thrown synchronously.

This also means that all parse errors can be surfaced as an aggregate error instead of bailing on the first
parse error. When the compiler is ran with `errorRecovery: true` these errors become diagnostics instead of
being thrown.

## 5.22.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@marko/babel-utils",
"description": "Utilities for use with Marko babel plugins.",
"version": "5.22.1",
"version": "6.0.0",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
"dependencies": {
Expand All @@ -10,7 +10,7 @@
"relative-import-path": "^1.0.0"
},
"devDependencies": {
"@marko/compiler": "^5.28.3"
"@marko/compiler": "^5.29.0"
},
"files": [
"dist",
Expand Down
18 changes: 18 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Change Log

## 5.29.0

### Minor Changes

- [#1980](https://github.com/marko-js/marko/pull/1980) [`9d3b34eef`](https://github.com/marko-js/marko/commit/9d3b34eefa2d0d9f9b27b9635950360b62be2f1f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Allow parse errors to be recovered from by migrations. This adds a new ast node type of MarkoParseError.
MarkoParseError nodes can be removed during the migration stage to handle legacy syntaxes. Any MarkoParseError
left in the AST at the end of the migration phase will throw an error similar to what it would have previously
thrown synchronously.

This also means that all parse errors can be surfaced as an aggregate error instead of bailing on the first
parse error. When the compiler is ran with `errorRecovery: true` these errors become diagnostics instead of
being thrown.

### Patch Changes

- Updated dependencies [[`9d3b34eef`](https://github.com/marko-js/marko/commit/9d3b34eefa2d0d9f9b27b9635950360b62be2f1f)]:
- @marko/[email protected]

## 5.28.5

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@marko/compiler",
"description": "Marko template to JS compiler.",
"version": "5.28.5",
"version": "5.29.0",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
"dependencies": {
Expand All @@ -15,7 +15,7 @@
"@babel/runtime": "^7.16.0",
"@babel/traverse": "^7.16.0",
"@babel/types": "^7.16.0",
"@marko/babel-utils": "^5.22.1",
"@marko/babel-utils": "^6.0.0",
"complain": "^1.6.0",
"he": "^1.2.0",
"htmljs-parser": "^5.4.3",
Expand All @@ -30,7 +30,7 @@
"strip-json-comments": "^3.1.1"
},
"devDependencies": {
"@marko/translator-default": "^5.26.5"
"@marko/translator-default": "^5.27.0"
},
"files": [
"dist",
Expand Down
21 changes: 21 additions & 0 deletions packages/marko/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Change Log

## 5.27.0

### Minor Changes

- [#1980](https://github.com/marko-js/marko/pull/1980) [`9d3b34eef`](https://github.com/marko-js/marko/commit/9d3b34eefa2d0d9f9b27b9635950360b62be2f1f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Allow parse errors to be recovered from by migrations. This adds a new ast node type of MarkoParseError.
MarkoParseError nodes can be removed during the migration stage to handle legacy syntaxes. Any MarkoParseError
left in the AST at the end of the migration phase will throw an error similar to what it would have previously
thrown synchronously.

This also means that all parse errors can be surfaced as an aggregate error instead of bailing on the first
parse error. When the compiler is ran with `errorRecovery: true` these errors become diagnostics instead of
being thrown.

### Patch Changes

- [#1980](https://github.com/marko-js/marko/pull/1980) [`20deb5699`](https://github.com/marko-js/marko/commit/20deb5699c7b7393dd7ba4b95cdbb60945a9319f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue that could happen if DOMContentLoaded was manually invoked multiple times.

- Updated dependencies [[`9d3b34eef`](https://github.com/marko-js/marko/commit/9d3b34eefa2d0d9f9b27b9635950360b62be2f1f)]:
- @marko/[email protected]
- @marko/[email protected]

## 5.26.5

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/marko/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "marko",
"version": "5.26.5",
"version": "5.27.0",
"license": "MIT",
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
"dependencies": {
"@marko/compiler": "^5.28.5",
"@marko/translator-default": "^5.26.5",
"@marko/compiler": "^5.29.0",
"@marko/translator-default": "^5.27.0",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",
Expand Down
18 changes: 18 additions & 0 deletions packages/translator-default/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Change Log

## 5.27.0

### Minor Changes

- [#1980](https://github.com/marko-js/marko/pull/1980) [`9d3b34eef`](https://github.com/marko-js/marko/commit/9d3b34eefa2d0d9f9b27b9635950360b62be2f1f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Allow parse errors to be recovered from by migrations. This adds a new ast node type of MarkoParseError.
MarkoParseError nodes can be removed during the migration stage to handle legacy syntaxes. Any MarkoParseError
left in the AST at the end of the migration phase will throw an error similar to what it would have previously
thrown synchronously.

This also means that all parse errors can be surfaced as an aggregate error instead of bailing on the first
parse error. When the compiler is ran with `errorRecovery: true` these errors become diagnostics instead of
being thrown.

### Patch Changes

- Updated dependencies [[`9d3b34eef`](https://github.com/marko-js/marko/commit/9d3b34eefa2d0d9f9b27b9635950360b62be2f1f)]:
- @marko/[email protected]

## 5.26.5

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/translator-default/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "@marko/translator-default",
"description": "Translates Marko templates to the default Marko runtime.",
"version": "5.26.5",
"version": "5.27.0",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
"dependencies": {
"@babel/runtime": "^7.16.0",
"@marko/babel-utils": "^5.22.1",
"@marko/babel-utils": "^6.0.0",
"escape-string-regexp": "^4.0.0",
"magic-string": "^0.27.0",
"self-closing-tags": "^1.0.1"
},
"devDependencies": {
"@marko/compiler": "^5.28.5",
"marko": "^5.26.5"
"@marko/compiler": "^5.29.0",
"marko": "^5.27.0"
},
"files": [
"dist",
Expand Down
Loading