From 60ed33a5a367933fe51a3c599f68213c82c37f76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Dec 2022 14:28:36 -0600 Subject: [PATCH] [ci] release (#650) Co-authored-by: github-actions[bot] --- .changeset/giant-chairs-rest.md | 5 ----- .changeset/light-berries-laugh.md | 5 ----- .changeset/nine-ladybugs-exist.md | 5 ----- packages/compiler/CHANGELOG.md | 8 ++++++++ packages/compiler/package.json | 2 +- 5 files changed, 9 insertions(+), 16 deletions(-) delete mode 100644 .changeset/giant-chairs-rest.md delete mode 100644 .changeset/light-berries-laugh.md delete mode 100644 .changeset/nine-ladybugs-exist.md diff --git a/.changeset/giant-chairs-rest.md b/.changeset/giant-chairs-rest.md deleted file mode 100644 index 4d6ce2558..000000000 --- a/.changeset/giant-chairs-rest.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/compiler': patch ---- - -fix: avoid nil pointer dereference in table parsing diff --git a/.changeset/light-berries-laugh.md b/.changeset/light-berries-laugh.md deleted file mode 100644 index 728b70aac..000000000 --- a/.changeset/light-berries-laugh.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/compiler': patch ---- - -Fix `parse` output to properly account for the location of self-closing tags diff --git a/.changeset/nine-ladybugs-exist.md b/.changeset/nine-ladybugs-exist.md deleted file mode 100644 index d61807b08..000000000 --- a/.changeset/nine-ladybugs-exist.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/compiler': patch ---- - -Internally, replace `astro.ParseFragment` in favor of `astro.ParseFragmentWithOptions`. We now check whether an error handler is passed when calling `astro.ParseFragmentWithOptions` diff --git a/packages/compiler/CHANGELOG.md b/packages/compiler/CHANGELOG.md index 316affc0c..6b4b3d259 100644 --- a/packages/compiler/CHANGELOG.md +++ b/packages/compiler/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/compiler +## 0.29.18 + +### Patch Changes + +- 80de395: fix: avoid nil pointer dereference in table parsing +- aa3ad9d: Fix `parse` output to properly account for the location of self-closing tags +- b89dec4: Internally, replace `astro.ParseFragment` in favor of `astro.ParseFragmentWithOptions`. We now check whether an error handler is passed when calling `astro.ParseFragmentWithOptions` + ## 0.29.17 ### Patch Changes diff --git a/packages/compiler/package.json b/packages/compiler/package.json index 9fc72fbac..4a587aebe 100644 --- a/packages/compiler/package.json +++ b/packages/compiler/package.json @@ -5,7 +5,7 @@ "type": "module", "bugs": "https://github.com/withastro/compiler/issues", "homepage": "https://astro.build", - "version": "0.29.17", + "version": "0.29.18", "scripts": { "build": "tsc -p ." },