Skip to content

Commit

Permalink
[ci] release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and DylanPiercey committed Sep 23, 2024
1 parent c01d83f commit 60c2c1c
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 30 deletions.
7 changes: 0 additions & 7 deletions .changeset/shaggy-plants-smell.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/wise-sloths-prove.md

This file was deleted.

16 changes: 8 additions & 8 deletions package-lock.json

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

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

## 5.37.12

### Patch Changes

- [#2298](https://github.com/marko-js/marko/pull/2298) [`c01d83f`](https://github.com/marko-js/marko/commit/c01d83fb2617443a7dc03eb3b43a2f7752754a45) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue with the "ignoreUnrecognizedTags" compiler option being used with dynamic tags that have attribute tags.

- [#2298](https://github.com/marko-js/marko/pull/2298) [`cfff311`](https://github.com/marko-js/marko/commit/cfff3111148a43f58c7d2b78f679c09c04d429b5) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Removes the debug mode dom manipulation warning since chrome dropped the api's that allowed us to get useful stack traces.

## 5.37.11

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@marko/compiler",
"version": "5.37.11",
"version": "5.37.12",
"description": "Marko template to JS compiler.",
"keywords": [
"babel",
Expand Down Expand Up @@ -80,7 +80,7 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@marko/translator-default": "^6.0.13"
"@marko/translator-default": "^6.0.14"
},
"publishConfig": {
"access": "public"
Expand Down
12 changes: 12 additions & 0 deletions packages/marko/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 5.35.17

### Patch Changes

- [#2298](https://github.com/marko-js/marko/pull/2298) [`c01d83f`](https://github.com/marko-js/marko/commit/c01d83fb2617443a7dc03eb3b43a2f7752754a45) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue with the "ignoreUnrecognizedTags" compiler option being used with dynamic tags that have attribute tags.

- [#2298](https://github.com/marko-js/marko/pull/2298) [`cfff311`](https://github.com/marko-js/marko/commit/cfff3111148a43f58c7d2b78f679c09c04d429b5) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Removes the debug mode dom manipulation warning since chrome dropped the api's that allowed us to get useful stack traces.

- Updated dependencies [[`c01d83f`](https://github.com/marko-js/marko/commit/c01d83fb2617443a7dc03eb3b43a2f7752754a45), [`cfff311`](https://github.com/marko-js/marko/commit/cfff3111148a43f58c7d2b78f679c09c04d429b5)]:
- @marko/translator-default@6.0.14
- @marko/compiler@5.37.12

## 5.35.16

### 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,6 +1,6 @@
{
"name": "marko",
"version": "5.35.16",
"version": "5.35.17",
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
"keywords": [
"front-end",
Expand Down Expand Up @@ -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.11",
"@marko/translator-default": "^6.0.13",
"@marko/compiler": "^5.37.12",
"@marko/translator-default": "^6.0.14",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",
Expand Down
8 changes: 8 additions & 0 deletions packages/translator-default/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 6.0.14

### Patch Changes

- [#2298](https://github.com/marko-js/marko/pull/2298) [`c01d83f`](https://github.com/marko-js/marko/commit/c01d83fb2617443a7dc03eb3b43a2f7752754a45) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue with the "ignoreUnrecognizedTags" compiler option being used with dynamic tags that have attribute tags.

- [#2298](https://github.com/marko-js/marko/pull/2298) [`cfff311`](https://github.com/marko-js/marko/commit/cfff3111148a43f58c7d2b78f679c09c04d429b5) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Removes the debug mode dom manipulation warning since chrome dropped the api's that allowed us to get useful stack traces.

## 6.0.13

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/translator-default/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@marko/translator-default",
"version": "6.0.13",
"version": "6.0.14",
"description": "Translates Marko templates to the default Marko runtime.",
"keywords": [
"babel",
Expand Down Expand Up @@ -34,8 +34,8 @@
"self-closing-tags": "^1.0.1"
},
"devDependencies": {
"@marko/compiler": "^5.37.11",
"marko": "^5.35.16"
"@marko/compiler": "^5.37.12",
"marko": "^5.35.17"
},
"peerDependencies": {
"@marko/compiler": "^5.16.1",
Expand Down

0 comments on commit 60c2c1c

Please sign in to comment.