[ci] release

This commit is contained in:
github-actions[bot] 2024-10-03 23:23:11 +00:00 committed by Dylan Piercey
parent f06d4b0559
commit 7b6bf89c23
18 changed files with 105 additions and 61 deletions

View File

@ -1,5 +0,0 @@
---
"marko": patch
---
fix: upgrade babel/it-fails, fix VComment

View File

@ -1,7 +0,0 @@
---
"@marko/translator-interop-class-tags": patch
"@marko/translator-tags": patch
"@marko/runtime-tags": patch
---
Fix scope cleanup, make signals order independant and various fixes

View File

@ -1,9 +0,0 @@
---
"@marko/translator-default": patch
"@marko/translator-interop-class-tags": patch
"@marko/babel-utils": patch
"@marko/compiler": patch
"marko": patch
---
Avoid babel compiler assert api to fix a regression.

40
package-lock.json generated
View File

@ -10835,7 +10835,7 @@
},
"packages/babel-utils": {
"name": "@marko/babel-utils",
"version": "6.5.6",
"version": "6.5.7",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.25.0",
@ -10843,12 +10843,12 @@
"relative-import-path": "^1.0.0"
},
"devDependencies": {
"@marko/compiler": "^5.37.11"
"@marko/compiler": "^5.37.15"
}
},
"packages/compiler": {
"name": "@marko/compiler",
"version": "5.37.14",
"version": "5.37.15",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.24.7",
@ -10862,7 +10862,7 @@
"@babel/traverse": "^7.25.3",
"@babel/types": "^7.25.2",
"@luxass/strip-json-comments": "^1.3.2",
"@marko/babel-utils": "^6.5.6",
"@marko/babel-utils": "^6.5.7",
"complain": "^1.6.0",
"he": "^1.2.0",
"htmljs-parser": "^5.5.2",
@ -10876,15 +10876,15 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@marko/translator-default": "^6.0.15"
"@marko/translator-default": "^6.0.16"
}
},
"packages/marko": {
"version": "5.35.19",
"version": "5.35.20",
"license": "MIT",
"dependencies": {
"@marko/compiler": "^5.37.14",
"@marko/translator-default": "^6.0.15",
"@marko/compiler": "^5.37.15",
"@marko/translator-default": "^6.0.16",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",
@ -10924,22 +10924,22 @@
},
"packages/runtime-tags": {
"name": "@marko/runtime-tags",
"version": "0.1.13",
"version": "0.1.14",
"license": "MIT"
},
"packages/translator-default": {
"name": "@marko/translator-default",
"version": "6.0.15",
"version": "6.0.16",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.25.0",
"@marko/babel-utils": "^6.5.6",
"@marko/babel-utils": "^6.5.7",
"magic-string": "^0.30.11",
"self-closing-tags": "^1.0.1"
},
"devDependencies": {
"@marko/compiler": "^5.37.13",
"marko": "^5.35.18"
"@marko/compiler": "^5.37.15",
"marko": "^5.35.20"
},
"peerDependencies": {
"@marko/compiler": "^5.16.1",
@ -10948,13 +10948,13 @@
},
"packages/translator-interop": {
"name": "@marko/translator-interop-class-tags",
"version": "0.1.24",
"version": "0.1.25",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.24.7",
"@marko/babel-utils": "^6.5.6",
"@marko/translator-default": "^6.0.13",
"@marko/translator-tags": "^0.2.9"
"@marko/babel-utils": "^6.5.7",
"@marko/translator-default": "^6.0.16",
"@marko/translator-tags": "^0.2.10"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"
@ -10962,11 +10962,11 @@
},
"packages/translator-tags": {
"name": "@marko/translator-tags",
"version": "0.2.9",
"version": "0.2.10",
"license": "MIT",
"dependencies": {
"@marko/babel-utils": "^6.5.6",
"@marko/runtime-tags": "^0.1.13"
"@marko/babel-utils": "^6.5.7",
"@marko/runtime-tags": "^0.1.14"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"

View File

@ -1,5 +1,11 @@
# Change Log
## 6.5.7
### Patch Changes
- [#2310](https://github.com/marko-js/marko/pull/2310) [`f06d4b0`](https://github.com/marko-js/marko/commit/f06d4b0559c3fbb3af67773c70b3aab25278b0ca) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid babel compiler assert api to fix a regression.
## 6.5.6
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/babel-utils",
"version": "6.5.6",
"version": "6.5.7",
"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.11"
"@marko/compiler": "^5.37.15"
},
"publishConfig": {
"access": "public"

View File

@ -1,5 +1,14 @@
# Change Log
## 5.37.15
### Patch Changes
- [#2310](https://github.com/marko-js/marko/pull/2310) [`f06d4b0`](https://github.com/marko-js/marko/commit/f06d4b0559c3fbb3af67773c70b3aab25278b0ca) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid babel compiler assert api to fix a regression.
- Updated dependencies [[`f06d4b0`](https://github.com/marko-js/marko/commit/f06d4b0559c3fbb3af67773c70b3aab25278b0ca)]:
- @marko/babel-utils@6.5.7
## 5.37.14
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/compiler",
"version": "5.37.14",
"version": "5.37.15",
"description": "Marko template to JS compiler.",
"keywords": [
"babel",
@ -66,7 +66,7 @@
"@babel/traverse": "^7.25.3",
"@babel/types": "^7.25.2",
"@luxass/strip-json-comments": "^1.3.2",
"@marko/babel-utils": "^6.5.6",
"@marko/babel-utils": "^6.5.7",
"complain": "^1.6.0",
"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.15"
"@marko/translator-default": "^6.0.16"
},
"publishConfig": {
"access": "public"

View File

@ -1,5 +1,17 @@
# Change Log
## 5.35.20
### Patch Changes
- [#2306](https://github.com/marko-js/marko/pull/2306) [`4d8eb53`](https://github.com/marko-js/marko/commit/4d8eb53c7354837233d99077f3d68980b13da911) Thanks [@mlrawlings](https://github.com/mlrawlings)! - fix: upgrade babel/it-fails, fix VComment
- [#2310](https://github.com/marko-js/marko/pull/2310) [`f06d4b0`](https://github.com/marko-js/marko/commit/f06d4b0559c3fbb3af67773c70b3aab25278b0ca) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid babel compiler assert api to fix a regression.
- Updated dependencies [[`f06d4b0`](https://github.com/marko-js/marko/commit/f06d4b0559c3fbb3af67773c70b3aab25278b0ca)]:
- @marko/translator-default@6.0.16
- @marko/compiler@5.37.15
## 5.35.19
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "marko",
"version": "5.35.19",
"version": "5.35.20",
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
"keywords": [
"front-end",
@ -65,8 +65,8 @@
"build": "babel ./src --out-dir ./dist --extensions .js --copy-files --config-file ../../babel.config.js --env-name=production"
},
"dependencies": {
"@marko/compiler": "^5.37.14",
"@marko/translator-default": "^6.0.15",
"@marko/compiler": "^5.37.15",
"@marko/translator-default": "^6.0.16",
"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.14
### Patch Changes
- [#2309](https://github.com/marko-js/marko/pull/2309) [`2a971ce`](https://github.com/marko-js/marko/commit/2a971ce6617bf98f79c0b0840467c15ce413b0c9) Thanks [@rturnq](https://github.com/rturnq)! - Fix scope cleanup, make signals order independant and various fixes
## 0.1.13
### Patch Changes

View File

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

View File

@ -1,5 +1,14 @@
# Change Log
## 6.0.16
### Patch Changes
- [#2310](https://github.com/marko-js/marko/pull/2310) [`f06d4b0`](https://github.com/marko-js/marko/commit/f06d4b0559c3fbb3af67773c70b3aab25278b0ca) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid babel compiler assert api to fix a regression.
- Updated dependencies [[`f06d4b0`](https://github.com/marko-js/marko/commit/f06d4b0559c3fbb3af67773c70b3aab25278b0ca)]:
- @marko/babel-utils@6.5.7
## 6.0.15
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/translator-default",
"version": "6.0.15",
"version": "6.0.16",
"description": "Translates Marko templates to the default Marko runtime.",
"keywords": [
"babel",
@ -29,13 +29,13 @@
},
"dependencies": {
"@babel/runtime": "^7.25.0",
"@marko/babel-utils": "^6.5.6",
"@marko/babel-utils": "^6.5.7",
"magic-string": "^0.30.11",
"self-closing-tags": "^1.0.1"
},
"devDependencies": {
"@marko/compiler": "^5.37.13",
"marko": "^5.35.18"
"@marko/compiler": "^5.37.15",
"marko": "^5.35.20"
},
"peerDependencies": {
"@marko/compiler": "^5.16.1",

View File

@ -1,5 +1,18 @@
# @marko/translator-interop-class-tags
## 0.1.25
### Patch Changes
- [#2309](https://github.com/marko-js/marko/pull/2309) [`2a971ce`](https://github.com/marko-js/marko/commit/2a971ce6617bf98f79c0b0840467c15ce413b0c9) Thanks [@rturnq](https://github.com/rturnq)! - Fix scope cleanup, make signals order independant and various fixes
- [#2310](https://github.com/marko-js/marko/pull/2310) [`f06d4b0`](https://github.com/marko-js/marko/commit/f06d4b0559c3fbb3af67773c70b3aab25278b0ca) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid babel compiler assert api to fix a regression.
- Updated dependencies [[`2a971ce`](https://github.com/marko-js/marko/commit/2a971ce6617bf98f79c0b0840467c15ce413b0c9), [`f06d4b0`](https://github.com/marko-js/marko/commit/f06d4b0559c3fbb3af67773c70b3aab25278b0ca)]:
- @marko/translator-tags@0.2.10
- @marko/translator-default@6.0.16
- @marko/babel-utils@6.5.7
## 0.1.24
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/translator-interop-class-tags",
"version": "0.1.24",
"version": "0.1.25",
"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.24.7",
"@marko/babel-utils": "^6.5.6",
"@marko/translator-default": "^6.0.13",
"@marko/translator-tags": "^0.2.9"
"@marko/babel-utils": "^6.5.7",
"@marko/translator-default": "^6.0.16",
"@marko/translator-tags": "^0.2.10"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"

View File

@ -1,5 +1,15 @@
# @marko/translator-tags
## 0.2.10
### Patch Changes
- [#2309](https://github.com/marko-js/marko/pull/2309) [`2a971ce`](https://github.com/marko-js/marko/commit/2a971ce6617bf98f79c0b0840467c15ce413b0c9) Thanks [@rturnq](https://github.com/rturnq)! - Fix scope cleanup, make signals order independant and various fixes
- Updated dependencies [[`2a971ce`](https://github.com/marko-js/marko/commit/2a971ce6617bf98f79c0b0840467c15ce413b0c9), [`f06d4b0`](https://github.com/marko-js/marko/commit/f06d4b0559c3fbb3af67773c70b3aab25278b0ca)]:
- @marko/runtime-tags@0.1.14
- @marko/babel-utils@6.5.7
## 0.2.9
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/translator-tags",
"version": "0.2.9",
"version": "0.2.10",
"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.6",
"@marko/runtime-tags": "^0.1.13"
"@marko/babel-utils": "^6.5.7",
"@marko/runtime-tags": "^0.1.14"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"