[ci] release (#2359)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2024-11-11 12:37:26 -07:00 committed by GitHub
parent 76951d887d
commit 77c22d6079
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
16 changed files with 101 additions and 51 deletions

View File

@ -1,11 +0,0 @@
---
"@marko/translator-default": patch
"@marko/translator-tags": patch
"@marko/babel-utils": patch
"@marko/compiler": patch
"marko": patch
"@marko/runtime-tags": patch
"@marko/translator-interop-class-tags": patch
---
Always use MarkoTagBody AST nodes for control flow (even with attribute tags). This fixes a regression with the @marko/tags-api-preview and is more accurate to what is actually happening, especially from a variable scoping perspective.

40
package-lock.json generated
View File

@ -10304,7 +10304,7 @@
},
"packages/babel-utils": {
"name": "@marko/babel-utils",
"version": "6.5.11",
"version": "6.5.12",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.26.0",
@ -10312,12 +10312,12 @@
"relative-import-path": "^1.0.0"
},
"devDependencies": {
"@marko/compiler": "^5.37.23"
"@marko/compiler": "^5.37.24"
}
},
"packages/compiler": {
"name": "@marko/compiler",
"version": "5.37.23",
"version": "5.37.24",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.26.2",
@ -10331,7 +10331,7 @@
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"@luxass/strip-json-comments": "^1.3.2",
"@marko/babel-utils": "^6.5.10",
"@marko/babel-utils": "^6.5.12",
"complain": "^1.6.1",
"he": "^1.2.0",
"htmljs-parser": "^5.5.2",
@ -10345,15 +10345,15 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@marko/translator-default": "^6.0.23"
"@marko/translator-default": "^6.0.24"
}
},
"packages/marko": {
"version": "5.35.32",
"version": "5.35.33",
"license": "MIT",
"dependencies": {
"@marko/compiler": "^5.37.23",
"@marko/translator-default": "^6.0.23",
"@marko/compiler": "^5.37.24",
"@marko/translator-default": "^6.0.24",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",
@ -10397,22 +10397,22 @@
},
"packages/runtime-tags": {
"name": "@marko/runtime-tags",
"version": "0.1.21",
"version": "0.1.22",
"license": "MIT"
},
"packages/translator-default": {
"name": "@marko/translator-default",
"version": "6.0.23",
"version": "6.0.24",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.26.0",
"@marko/babel-utils": "^6.5.10",
"@marko/babel-utils": "^6.5.12",
"magic-string": "^0.30.12",
"self-closing-tags": "^1.0.1"
},
"devDependencies": {
"@marko/compiler": "^5.37.23",
"marko": "^5.35.32"
"@marko/compiler": "^5.37.24",
"marko": "^5.35.33"
},
"peerDependencies": {
"@marko/compiler": "^5.16.1",
@ -10421,13 +10421,13 @@
},
"packages/translator-interop": {
"name": "@marko/translator-interop-class-tags",
"version": "0.1.29",
"version": "0.1.30",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@marko/babel-utils": "^6.5.11",
"@marko/translator-default": "^6.0.23",
"@marko/translator-tags": "^0.2.20"
"@marko/babel-utils": "^6.5.12",
"@marko/translator-default": "^6.0.24",
"@marko/translator-tags": "^0.2.21"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"
@ -10435,11 +10435,11 @@
},
"packages/translator-tags": {
"name": "@marko/translator-tags",
"version": "0.2.20",
"version": "0.2.21",
"license": "MIT",
"dependencies": {
"@marko/babel-utils": "^6.5.11",
"@marko/runtime-tags": "^0.1.21"
"@marko/babel-utils": "^6.5.12",
"@marko/runtime-tags": "^0.1.22"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"

View File

@ -1,5 +1,11 @@
# Change Log
## 6.5.12
### Patch Changes
- [#2358](https://github.com/marko-js/marko/pull/2358) [`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Always use MarkoTagBody AST nodes for control flow (even with attribute tags). This fixes a regression with the @marko/tags-api-preview and is more accurate to what is actually happening, especially from a variable scoping perspective.
## 6.5.11
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/babel-utils",
"version": "6.5.11",
"version": "6.5.12",
"description": "Utilities for use with Marko babel plugins.",
"keywords": [
"htmljs",
@ -33,7 +33,7 @@
"relative-import-path": "^1.0.0"
},
"devDependencies": {
"@marko/compiler": "^5.37.23"
"@marko/compiler": "^5.37.24"
},
"publishConfig": {
"access": "public"

View File

@ -1,5 +1,14 @@
# Change Log
## 5.37.24
### Patch Changes
- [#2358](https://github.com/marko-js/marko/pull/2358) [`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Always use MarkoTagBody AST nodes for control flow (even with attribute tags). This fixes a regression with the @marko/tags-api-preview and is more accurate to what is actually happening, especially from a variable scoping perspective.
- Updated dependencies [[`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069)]:
- @marko/babel-utils@6.5.12
## 5.37.23
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/compiler",
"version": "5.37.23",
"version": "5.37.24",
"description": "Marko template to JS compiler.",
"keywords": [
"babel",
@ -66,7 +66,7 @@
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"@luxass/strip-json-comments": "^1.3.2",
"@marko/babel-utils": "^6.5.10",
"@marko/babel-utils": "^6.5.12",
"complain": "^1.6.1",
"he": "^1.2.0",
"htmljs-parser": "^5.5.2",
@ -80,7 +80,7 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@marko/translator-default": "^6.0.23"
"@marko/translator-default": "^6.0.24"
},
"publishConfig": {
"access": "public"

View File

@ -1,5 +1,15 @@
# Change Log
## 5.35.33
### Patch Changes
- [#2358](https://github.com/marko-js/marko/pull/2358) [`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Always use MarkoTagBody AST nodes for control flow (even with attribute tags). This fixes a regression with the @marko/tags-api-preview and is more accurate to what is actually happening, especially from a variable scoping perspective.
- Updated dependencies [[`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069)]:
- @marko/translator-default@6.0.24
- @marko/compiler@5.37.24
## 5.35.32
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "marko",
"version": "5.35.32",
"version": "5.35.33",
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
"keywords": [
"front-end",
@ -66,8 +66,8 @@
"build": "babel ./src --out-dir ./dist --extensions .js --copy-files --config-file ../../babel.config.js --env-name=production"
},
"dependencies": {
"@marko/compiler": "^5.37.23",
"@marko/translator-default": "^6.0.23",
"@marko/compiler": "^5.37.24",
"@marko/translator-default": "^6.0.24",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",

View File

@ -1,5 +1,11 @@
# @marko/runtime-tags
## 0.1.22
### Patch Changes
- [#2358](https://github.com/marko-js/marko/pull/2358) [`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Always use MarkoTagBody AST nodes for control flow (even with attribute tags). This fixes a regression with the @marko/tags-api-preview and is more accurate to what is actually happening, especially from a variable scoping perspective.
## 0.1.21
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/runtime-tags",
"version": "0.1.21",
"version": "0.1.22",
"description": "Optimized runtime for Marko templates.",
"keywords": [
"api",

View File

@ -1,5 +1,14 @@
# Change Log
## 6.0.24
### Patch Changes
- [#2358](https://github.com/marko-js/marko/pull/2358) [`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Always use MarkoTagBody AST nodes for control flow (even with attribute tags). This fixes a regression with the @marko/tags-api-preview and is more accurate to what is actually happening, especially from a variable scoping perspective.
- Updated dependencies [[`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069)]:
- @marko/babel-utils@6.5.12
## 6.0.23
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/translator-default",
"version": "6.0.23",
"version": "6.0.24",
"description": "Translates Marko templates to the default Marko runtime.",
"keywords": [
"babel",
@ -29,13 +29,13 @@
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@marko/babel-utils": "^6.5.10",
"@marko/babel-utils": "^6.5.12",
"magic-string": "^0.30.12",
"self-closing-tags": "^1.0.1"
},
"devDependencies": {
"@marko/compiler": "^5.37.23",
"marko": "^5.35.32"
"@marko/compiler": "^5.37.24",
"marko": "^5.35.33"
},
"peerDependencies": {
"@marko/compiler": "^5.16.1",

View File

@ -1,5 +1,16 @@
# @marko/translator-interop-class-tags
## 0.1.30
### Patch Changes
- [#2358](https://github.com/marko-js/marko/pull/2358) [`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Always use MarkoTagBody AST nodes for control flow (even with attribute tags). This fixes a regression with the @marko/tags-api-preview and is more accurate to what is actually happening, especially from a variable scoping perspective.
- Updated dependencies [[`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069)]:
- @marko/translator-default@6.0.24
- @marko/translator-tags@0.2.21
- @marko/babel-utils@6.5.12
## 0.1.29
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/translator-interop-class-tags",
"version": "0.1.29",
"version": "0.1.30",
"description": "Combines the Class API translator from Marko 5 and the Tags API translator from Marko 6",
"keywords": [
"babel",
@ -29,9 +29,9 @@
},
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@marko/babel-utils": "^6.5.11",
"@marko/translator-default": "^6.0.23",
"@marko/translator-tags": "^0.2.20"
"@marko/babel-utils": "^6.5.12",
"@marko/translator-default": "^6.0.24",
"@marko/translator-tags": "^0.2.21"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"

View File

@ -1,5 +1,15 @@
# @marko/translator-tags
## 0.2.21
### Patch Changes
- [#2358](https://github.com/marko-js/marko/pull/2358) [`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Always use MarkoTagBody AST nodes for control flow (even with attribute tags). This fixes a regression with the @marko/tags-api-preview and is more accurate to what is actually happening, especially from a variable scoping perspective.
- Updated dependencies [[`76951d8`](https://github.com/marko-js/marko/commit/76951d887d02e6f0dd3f0fe1345721d4a94a0069)]:
- @marko/babel-utils@6.5.12
- @marko/runtime-tags@0.1.22
## 0.2.20
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/translator-tags",
"version": "0.2.20",
"version": "0.2.21",
"description": "Translates Marko templates to the experimental fast, lean, unified, update & render target.",
"keywords": [
"babel",
@ -30,8 +30,8 @@
"build": "node -r ~ts ./scripts/bundle.ts"
},
"dependencies": {
"@marko/babel-utils": "^6.5.11",
"@marko/runtime-tags": "^0.1.21"
"@marko/babel-utils": "^6.5.12",
"@marko/runtime-tags": "^0.1.22"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"