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 #1988

Merged
merged 1 commit into from
Jun 29, 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
7 changes: 0 additions & 7 deletions .changeset/cool-spoons-confess.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/lovely-keys-whisper.md

This file was deleted.

26 changes: 13 additions & 13 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.30.1

### Patch Changes

- [#1987](https://github.com/marko-js/marko/pull/1987) [`8bf5cb1f0`](https://github.com/marko-js/marko/commit/8bf5cb1f097769c835a452ff4bbea67a6c741810) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - When duplicate taglib entries are found and merged, nullish values are now ignored. This means if you specify a property in a taglib it will not be unset by another (merged) taglib.

- [#1986](https://github.com/marko-js/marko/pull/1986) [`1b29b859f`](https://github.com/marko-js/marko/commit/1b29b859fb0876d9a8d0d7bba44d08f77f1706bb) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where `module-code` entries were not properly checking the expected module output (causing them to always output esm). This was previously fine due to the cjs conversion plugin running for these, however a recent change caused that plugin to no longer run for these files since (which should have been unnecessary, except for that they had the incorrect check).

## 5.30.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 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.30.0",
"version": "5.30.1",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
"dependencies": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"strip-json-comments": "^3.1.1"
},
"devDependencies": {
"@marko/translator-default": "^5.28.0"
"@marko/translator-default": "^5.28.1"
},
"files": [
"dist",
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.28.1

### Patch Changes

- [#1987](https://github.com/marko-js/marko/pull/1987) [`8bf5cb1f0`](https://github.com/marko-js/marko/commit/8bf5cb1f097769c835a452ff4bbea67a6c741810) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - When duplicate taglib entries are found and merged, nullish values are now ignored. This means if you specify a property in a taglib it will not be unset by another (merged) taglib.

- [#1986](https://github.com/marko-js/marko/pull/1986) [`1b29b859f`](https://github.com/marko-js/marko/commit/1b29b859fb0876d9a8d0d7bba44d08f77f1706bb) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where `module-code` entries were not properly checking the expected module output (causing them to always output esm). This was previously fine due to the cjs conversion plugin running for these, however a recent change caused that plugin to no longer run for these files since (which should have been unnecessary, except for that they had the incorrect check).

- Updated dependencies [[`8bf5cb1f0`](https://github.com/marko-js/marko/commit/8bf5cb1f097769c835a452ff4bbea67a6c741810), [`1b29b859f`](https://github.com/marko-js/marko/commit/1b29b859fb0876d9a8d0d7bba44d08f77f1706bb)]:
- @marko/[email protected]
- @marko/[email protected]

## 5.28.0

### Minor 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.28.0",
"version": "5.28.1",
"license": "MIT",
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
"dependencies": {
"@marko/compiler": "^5.30.0",
"@marko/translator-default": "^5.28.0",
"@marko/compiler": "^5.30.1",
"@marko/translator-default": "^5.28.1",
"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

## 5.28.1

### Patch Changes

- [#1987](https://github.com/marko-js/marko/pull/1987) [`8bf5cb1f0`](https://github.com/marko-js/marko/commit/8bf5cb1f097769c835a452ff4bbea67a6c741810) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - When duplicate taglib entries are found and merged, nullish values are now ignored. This means if you specify a property in a taglib it will not be unset by another (merged) taglib.

- [#1986](https://github.com/marko-js/marko/pull/1986) [`1b29b859f`](https://github.com/marko-js/marko/commit/1b29b859fb0876d9a8d0d7bba44d08f77f1706bb) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where `module-code` entries were not properly checking the expected module output (causing them to always output esm). This was previously fine due to the cjs conversion plugin running for these, however a recent change caused that plugin to no longer run for these files since (which should have been unnecessary, except for that they had the incorrect check).

## 5.28.0

### Minor 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,7 +1,7 @@
{
"name": "@marko/translator-default",
"description": "Translates Marko templates to the default Marko runtime.",
"version": "5.28.0",
"version": "5.28.1",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
"dependencies": {
Expand All @@ -12,8 +12,8 @@
"self-closing-tags": "^1.0.1"
},
"devDependencies": {
"@marko/compiler": "^5.30.0",
"marko": "^5.28.0"
"@marko/compiler": "^5.30.1",
"marko": "^5.28.1"
},
"files": [
"dist",
Expand Down
Loading