diff options
author | 2025-05-12 03:32:21 -0700 | |
---|---|---|
committer | 2025-05-12 11:32:21 +0100 | |
commit | 2ba4692792954ea612161e3bd8aa4515e2169b57 (patch) | |
tree | a9072a0f5aa1320bb148155e18155aed6bb2955a | |
parent | 1609044face6f58fff1dc82ceb14b3fd13b5ff67 (diff) | |
download | astro-2ba4692792954ea612161e3bd8aa4515e2169b57.tar.gz astro-2ba4692792954ea612161e3bd8aa4515e2169b57.tar.zst astro-2ba4692792954ea612161e3bd8aa4515e2169b57.zip |
[ci] release (#13771)@astrojs/sitemap@3.4.0@astrojs/db@0.14.14
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
-rw-r--r-- | .changeset/calm-drinks-beg.md | 5 | ||||
-rw-r--r-- | .changeset/neat-tigers-float.md | 23 | ||||
-rw-r--r-- | .changeset/silent-states-shout.md | 5 | ||||
-rw-r--r-- | examples/blog/package.json | 2 | ||||
-rw-r--r-- | packages/db/CHANGELOG.md | 8 | ||||
-rw-r--r-- | packages/db/package.json | 2 | ||||
-rw-r--r-- | packages/integrations/sitemap/CHANGELOG.md | 24 | ||||
-rw-r--r-- | packages/integrations/sitemap/package.json | 2 | ||||
-rw-r--r-- | pnpm-lock.yaml | 2 |
9 files changed, 36 insertions, 37 deletions
diff --git a/.changeset/calm-drinks-beg.md b/.changeset/calm-drinks-beg.md deleted file mode 100644 index 2d7c3af72..000000000 --- a/.changeset/calm-drinks-beg.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/db': patch ---- - -Fix options parsing for the libsql client connection to ensure that proper values are being set when adding URLSearchParams to the `ASTRO_DB_REMOTE_URL` diff --git a/.changeset/neat-tigers-float.md b/.changeset/neat-tigers-float.md deleted file mode 100644 index 10326f6fe..000000000 --- a/.changeset/neat-tigers-float.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -'@astrojs/sitemap': minor ---- - -Customize the filenames of sitemap XML files generated by the `@astro/sitemap` integration by setting `filenameBase` in the integration configuration settings. This may be useful when deploying an Astro site at a path on a domain with preexisting sitemap files. - -Generated sitemap files will appear at `/sitemap-0.xml` and `/sitemap-index.xml` by default, which may conflict with preexisting files. Set `filenameBase` to a custom value to avoid that if so: - -```js - import { defineConfig } from 'astro/config'; - import sitemap from '@astrojs/sitemap'; - - export default defineConfig({ - site: 'https://example.com', - integrations: [ - sitemap({ - filenameBase: 'astronomy-sitemap', - }), - ], - }); -``` - -This will yield sitemap and index files as `https://example.com/astronomy-sitemap-0.xml` and `https://example.com/astronomy-sitemap-index.xml`. diff --git a/.changeset/silent-states-shout.md b/.changeset/silent-states-shout.md deleted file mode 100644 index 8c4a1d09e..000000000 --- a/.changeset/silent-states-shout.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/db': patch ---- - -Modify Database type to allow transactions to be properly typed now that Astro Studio has sunset. diff --git a/examples/blog/package.json b/examples/blog/package.json index e0758bc99..9c0350ddd 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -12,7 +12,7 @@ "dependencies": { "@astrojs/mdx": "^4.2.6", "@astrojs/rss": "^4.0.11", - "@astrojs/sitemap": "^3.3.1", + "@astrojs/sitemap": "^3.4.0", "astro": "^5.7.12" } } diff --git a/packages/db/CHANGELOG.md b/packages/db/CHANGELOG.md index 826c6fec2..12453c0bb 100644 --- a/packages/db/CHANGELOG.md +++ b/packages/db/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/db +## 0.14.14 + +### Patch Changes + +- [#13772](https://github.com/withastro/astro/pull/13772) [`83193d4`](https://github.com/withastro/astro/commit/83193d43cfb7fb28254f0ff3fb717a7bdd65977b) Thanks [@Adammatthiesen](https://github.com/Adammatthiesen)! - Fix options parsing for the libsql client connection to ensure that proper values are being set when adding URLSearchParams to the `ASTRO_DB_REMOTE_URL` + +- [#13783](https://github.com/withastro/astro/pull/13783) [`1609044`](https://github.com/withastro/astro/commit/1609044face6f58fff1dc82ceb14b3fd13b5ff67) Thanks [@Adammatthiesen](https://github.com/Adammatthiesen)! - Modify Database type to allow transactions to be properly typed now that Astro Studio has sunset. + ## 0.14.13 ### Patch Changes diff --git a/packages/db/package.json b/packages/db/package.json index 582debc44..14cac58df 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/db", - "version": "0.14.13", + "version": "0.14.14", "description": "Add libSQL and Astro Studio support to your Astro site", "license": "MIT", "repository": { diff --git a/packages/integrations/sitemap/CHANGELOG.md b/packages/integrations/sitemap/CHANGELOG.md index 9ca929908..540b09975 100644 --- a/packages/integrations/sitemap/CHANGELOG.md +++ b/packages/integrations/sitemap/CHANGELOG.md @@ -1,5 +1,29 @@ # @astrojs/sitemap +## 3.4.0 + +### Minor Changes + +- [#13753](https://github.com/withastro/astro/pull/13753) [`90293de`](https://github.com/withastro/astro/commit/90293de03320da51965f05cfa6923cbe5521f519) Thanks [@mattyoho](https://github.com/mattyoho)! - Customize the filenames of sitemap XML files generated by the `@astro/sitemap` integration by setting `filenameBase` in the integration configuration settings. This may be useful when deploying an Astro site at a path on a domain with preexisting sitemap files. + + Generated sitemap files will appear at `/sitemap-0.xml` and `/sitemap-index.xml` by default, which may conflict with preexisting files. Set `filenameBase` to a custom value to avoid that if so: + + ```js + import { defineConfig } from 'astro/config'; + import sitemap from '@astrojs/sitemap'; + + export default defineConfig({ + site: 'https://example.com', + integrations: [ + sitemap({ + filenameBase: 'astronomy-sitemap', + }), + ], + }); + ``` + + This will yield sitemap and index files as `https://example.com/astronomy-sitemap-0.xml` and `https://example.com/astronomy-sitemap-index.xml`. + ## 3.3.1 ### Patch Changes diff --git a/packages/integrations/sitemap/package.json b/packages/integrations/sitemap/package.json index 4183e4530..9038e6f1a 100644 --- a/packages/integrations/sitemap/package.json +++ b/packages/integrations/sitemap/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/sitemap", "description": "Generate a sitemap for your Astro site", - "version": "3.3.1", + "version": "3.4.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9dac6921b..61ac128cb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -157,7 +157,7 @@ importers: specifier: ^4.0.11 version: link:../../packages/astro-rss '@astrojs/sitemap': - specifier: ^3.3.1 + specifier: ^3.4.0 version: link:../../packages/integrations/sitemap astro: specifier: ^5.7.12 |