summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/great-swans-punch.md5
-rw-r--r--.changeset/young-pots-brake.md6
-rw-r--r--packages/db/CHANGELOG.md7
-rw-r--r--packages/db/package.json2
-rw-r--r--packages/integrations/web-vitals/CHANGELOG.md7
-rw-r--r--packages/integrations/web-vitals/package.json16
6 files changed, 23 insertions, 20 deletions
diff --git a/.changeset/great-swans-punch.md b/.changeset/great-swans-punch.md
deleted file mode 100644
index 60725a224..000000000
--- 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 33b5e7fd6..000000000
--- 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 8193ebc83..177c5380e 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 24d7f3502..0604ac934 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 000000000..23945307b
--- /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 1719f423e..dde7c502b 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
}