Skip to content
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
6 changes: 0 additions & 6 deletions .changeset/fix-unquoted-attribute-values.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/template-depth-tracking.md

This file was deleted.

10 changes: 10 additions & 0 deletions crates/astro_napi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @astrojs/compiler-binding

## 0.2.0

### Minor Changes

- 0726e00: Emit `templateEnter` / `templateExit` instructions when printing `<template>` elements for https://github.com/withastro/astro/pull/15980

### Patch Changes

- 0bddba4: Fixes `Unexpected token` error when an HTML attribute has an unquoted value such as a number (`<input maxlength=255>`) or contains characters like `-` or `#`.

## 0.1.10

## 0.1.9
Expand Down
2 changes: 1 addition & 1 deletion crates/astro_napi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@astrojs/compiler-binding",
"version": "0.1.10",
"version": "0.2.0",
"description": "Astro Compiler",
"keywords": [
"astro",
Expand Down
13 changes: 13 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @astrojs/compiler-rs

## 0.2.0

### Minor Changes

- 0726e00: Emit `templateEnter` / `templateExit` instructions when printing `<template>` elements for https://github.com/withastro/astro/pull/15980

### Patch Changes

- 0bddba4: Fixes `Unexpected token` error when an HTML attribute has an unquoted value such as a number (`<input maxlength=255>`) or contains characters like `-` or `#`.
- Updated dependencies [0bddba4]
- Updated dependencies [0726e00]
- @astrojs/compiler-binding@0.2.0

## 0.1.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"bugs": "https://github.com/withastro/compiler-rs/issues",
"homepage": "https://astro.build",
"version": "0.1.10",
"version": "0.2.0",
"scripts": {
"build": "tsup"
},
Expand Down