From 2dcbcdb8570d9c943ed2f2b4500bcc24998a25f7 Mon Sep 17 00:00:00 2001 From: "Houston (Bot)" <108291165+astrobot-houston@users.noreply.github.com> Date: Fri, 3 May 2024 08:55:43 -0700 Subject: [PATCH] [ci] release (#10943) Co-authored-by: github-actions[bot] --- .changeset/great-swans-punch.md | 5 ----- .changeset/young-pots-brake.md | 6 ------ packages/db/CHANGELOG.md | 7 +++++++ packages/db/package.json | 2 +- packages/integrations/web-vitals/CHANGELOG.md | 7 +++++++ packages/integrations/web-vitals/package.json | 16 ++++++++-------- 6 files changed, 23 insertions(+), 20 deletions(-) delete mode 100644 .changeset/great-swans-punch.md delete mode 100644 .changeset/young-pots-brake.md create mode 100644 packages/integrations/web-vitals/CHANGELOG.md diff --git a/.changeset/great-swans-punch.md b/.changeset/great-swans-punch.md deleted file mode 100644 index 60725a224c..0000000000 --- a/.changeset/great-swans-punch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/web-vitals": minor ---- - -Adds a new web-vitals integration powered by Astro DB diff --git a/.changeset/young-pots-brake.md b/.changeset/young-pots-brake.md deleted file mode 100644 index 33b5e7fd68..0000000000 --- a/.changeset/young-pots-brake.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@astrojs/db": minor ---- - -- Fix duplicate table recreations when you start your dev server. -- Remove eager re-seeding when updating your seed file in development. Seeding still runs on dev server startup for SQLite inspector tools. diff --git a/packages/db/CHANGELOG.md b/packages/db/CHANGELOG.md index 8193ebc835..177c5380e3 100644 --- a/packages/db/CHANGELOG.md +++ b/packages/db/CHANGELOG.md @@ -1,5 +1,12 @@ # @astrojs/db +## 0.11.0 + +### Minor Changes + +- [#10919](https://github.com/withastro/astro/pull/10919) [`44bafa9`](https://github.com/withastro/astro/commit/44bafa989af0cc380696bb6381048fc1ee55dd5b) Thanks [@bholmesdev](https://github.com/bholmesdev)! - - Fix duplicate table recreations when you start your dev server. + - Remove eager re-seeding when updating your seed file in development. Seeding still runs on dev server startup for SQLite inspector tools. + ## 0.10.7 ### Patch Changes diff --git a/packages/db/package.json b/packages/db/package.json index 24d7f35028..0604ac9347 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/db", - "version": "0.10.7", + "version": "0.11.0", "description": "Add libSQL and Astro Studio support to your Astro site", "license": "MIT", "repository": { diff --git a/packages/integrations/web-vitals/CHANGELOG.md b/packages/integrations/web-vitals/CHANGELOG.md new file mode 100644 index 0000000000..23945307b9 --- /dev/null +++ b/packages/integrations/web-vitals/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/web-vitals + +## 0.1.0 + +### Minor Changes + +- [#10883](https://github.com/withastro/astro/pull/10883) [`a37d76a`](https://github.com/withastro/astro/commit/a37d76a42ac00697be3acd575f3f7163129ea75c) Thanks [@delucis](https://github.com/delucis)! - Adds a new web-vitals integration powered by Astro DB diff --git a/packages/integrations/web-vitals/package.json b/packages/integrations/web-vitals/package.json index 1719f423ee..dde7c502b0 100644 --- a/packages/integrations/web-vitals/package.json +++ b/packages/integrations/web-vitals/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/web-vitals", "description": "Track your website’s performance with Astro DB", - "version": "0.0.0", + "version": "0.1.0", "type": "module", "author": "withastro", "license": "MIT", @@ -31,18 +31,18 @@ "dev": "astro-scripts dev \"src/**/*.ts\"", "test": "astro-scripts test --timeout 50000 \"test/**/*.test.js\"" }, - "dependencies": { - "web-vitals": "^3.5.2" - }, + "dependencies": { + "web-vitals": "^3.5.2" + }, "peerDependencies": { "@astrojs/db": "^0.11.0" }, - "devDependencies": { - "@astrojs/db": "workspace:*", - "astro": "workspace:*", + "devDependencies": { + "@astrojs/db": "workspace:*", + "astro": "workspace:*", "astro-scripts": "workspace:*", "linkedom": "^0.16.11" - }, + }, "publishConfig": { "provenance": true }