[ci] release (#10943)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Houston (Bot) 2024-05-03 08:55:43 -07:00 committed by GitHub
parent 6c603bcc97
commit 2dcbcdb857
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 23 additions and 20 deletions

View file

@ -1,5 +0,0 @@
---
"@astrojs/web-vitals": minor
---
Adds a new web-vitals integration powered by Astro DB

View file

@ -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.

View file

@ -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

View file

@ -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": {

View file

@ -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

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/web-vitals",
"description": "Track your websites 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
}