Skip to content

Commit c64dfdd

Browse files
[ci] release (#7254)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 6721b1f commit c64dfdd

25 files changed

+53
-56
lines changed

.changeset/curvy-pumpkins-remain.md

-5
This file was deleted.

.changeset/eight-planes-drop.md

-5
This file was deleted.

.changeset/fuzzy-papayas-shout.md

-5
This file was deleted.

.changeset/many-cats-fry.md

-5
This file was deleted.

.changeset/olive-gorillas-cheat.md

-5
This file was deleted.

.changeset/pink-ghosts-end.md

-5
This file was deleted.

.changeset/rotten-pens-destroy.md

-5
This file was deleted.

.changeset/smart-moles-double.md

-7
This file was deleted.

packages/astro/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# astro
22

3+
## 2.5.7
4+
5+
### Patch Changes
6+
7+
- [#7215](https://github.com/withastro/astro/pull/7215) [`6e27f2f6d`](https://github.com/withastro/astro/commit/6e27f2f6dbd52f980c487e875faf1b066f65cffd) Thanks [@bmenant](https://github.com/bmenant)! - Node adapter fallbacks to `:authority` http2 pseudo-header when `host` is nullish.
8+
9+
- [#7233](https://github.com/withastro/astro/pull/7233) [`96ae37eb0`](https://github.com/withastro/astro/commit/96ae37eb09f7406f40fba93e14b2a26ccd46640c) Thanks [@bluwy](https://github.com/bluwy)! - Fix `getViteConfig` and Vitest setup with content collections
10+
11+
- [#7136](https://github.com/withastro/astro/pull/7136) [`fea306936`](https://github.com/withastro/astro/commit/fea30693609cc517d8660972151f4d12a0dd4e82) Thanks [@johannesspohr](https://github.com/johannesspohr)! - Render arrays of components in parallel
12+
13+
- [#7257](https://github.com/withastro/astro/pull/7257) [`5156c4f90`](https://github.com/withastro/astro/commit/5156c4f90e0922f62d25fa0c82bbefae39f4c2b6) Thanks [@thiti-y](https://github.com/thiti-y)! - fix: build fail upon have 'process.env' in \*.md file.
14+
15+
- [#7268](https://github.com/withastro/astro/pull/7268) [`9e7366567`](https://github.com/withastro/astro/commit/9e7366567e2b83d46a46db35e74ad508d1978039) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: ignore `.json` files within content collection directories starting with an `_` underscore.
16+
17+
- [#7185](https://github.com/withastro/astro/pull/7185) [`339529fc8`](https://github.com/withastro/astro/commit/339529fc820bac2d514b63198ecf54a1d88c0917) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Bring back improved style and script handling across content collection files. This addresses bugs found in a previous release to `@astrojs/markdoc`.
18+
319
## 2.5.6
420

521
### Patch Changes

packages/astro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "astro",
3-
"version": "2.5.6",
3+
"version": "2.5.7",
44
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
55
"type": "module",
66
"author": "withastro",

packages/integrations/cloudflare/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"tiny-glob": "^0.2.9"
4343
},
4444
"peerDependencies": {
45-
"astro": "workspace:^2.5.6"
45+
"astro": "workspace:^2.5.7"
4646
},
4747
"devDependencies": {
4848
"astro": "workspace:*",

packages/integrations/deno/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"esbuild": "^0.15.18"
3737
},
3838
"peerDependencies": {
39-
"astro": "workspace:^2.5.6"
39+
"astro": "workspace:^2.5.7"
4040
},
4141
"devDependencies": {
4242
"astro": "workspace:*",

packages/integrations/image/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"vite": "^4.3.1"
6363
},
6464
"peerDependencies": {
65-
"astro": "workspace:^2.5.6",
65+
"astro": "workspace:^2.5.7",
6666
"sharp": ">=0.31.0"
6767
},
6868
"peerDependenciesMeta": {

packages/integrations/markdoc/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @astrojs/markdoc
22

3+
## 0.3.1
4+
5+
### Patch Changes
6+
7+
- [#7224](https://github.com/withastro/astro/pull/7224) [`563293c5d`](https://github.com/withastro/astro/commit/563293c5d67e2bf13b9c735581969a0341861b44) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Allow HTML comments `<!--like this-->` in Markdoc files.
8+
9+
- [#7185](https://github.com/withastro/astro/pull/7185) [`339529fc8`](https://github.com/withastro/astro/commit/339529fc820bac2d514b63198ecf54a1d88c0917) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Bring back improved style and script handling across content collection files. This addresses bugs found in a previous release to `@astrojs/markdoc`.
10+
11+
- Updated dependencies [[`6e27f2f6d`](https://github.com/withastro/astro/commit/6e27f2f6dbd52f980c487e875faf1b066f65cffd), [`96ae37eb0`](https://github.com/withastro/astro/commit/96ae37eb09f7406f40fba93e14b2a26ccd46640c), [`fea306936`](https://github.com/withastro/astro/commit/fea30693609cc517d8660972151f4d12a0dd4e82), [`5156c4f90`](https://github.com/withastro/astro/commit/5156c4f90e0922f62d25fa0c82bbefae39f4c2b6), [`9e7366567`](https://github.com/withastro/astro/commit/9e7366567e2b83d46a46db35e74ad508d1978039), [`339529fc8`](https://github.com/withastro/astro/commit/339529fc820bac2d514b63198ecf54a1d88c0917)]:
12+
13+
314
## 0.3.0
415

516
### Minor Changes

packages/integrations/markdoc/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@astrojs/markdoc",
33
"description": "Add support for Markdoc in your Astro site",
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"type": "module",
66
"types": "./dist/index.d.ts",
77
"author": "withastro",
@@ -51,7 +51,7 @@
5151
"zod": "^3.17.3"
5252
},
5353
"peerDependencies": {
54-
"astro": "workspace:^2.5.6"
54+
"astro": "workspace:^2.5.7"
5555
},
5656
"devDependencies": {
5757
"@astrojs/markdown-remark": "^2.2.1",

packages/integrations/mdx/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @astrojs/mdx
22

3+
## 0.19.6
4+
5+
### Patch Changes
6+
7+
- [#7185](https://github.com/withastro/astro/pull/7185) [`339529fc8`](https://github.com/withastro/astro/commit/339529fc820bac2d514b63198ecf54a1d88c0917) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Bring back improved style and script handling across content collection files. This addresses bugs found in a previous release to `@astrojs/markdoc`.
8+
39
## 0.19.5
410

511
### Patch Changes

packages/integrations/mdx/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@astrojs/mdx",
33
"description": "Add support for MDX pages in your Astro site",
4-
"version": "0.19.5",
4+
"version": "0.19.6",
55
"type": "module",
66
"types": "./dist/index.d.ts",
77
"author": "withastro",

packages/integrations/netlify/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"esbuild": "^0.15.18"
4343
},
4444
"peerDependencies": {
45-
"astro": "workspace:^2.5.6"
45+
"astro": "workspace:^2.5.7"
4646
},
4747
"devDependencies": {
4848
"@netlify/edge-functions": "^2.0.0",

packages/integrations/node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"server-destroy": "^1.0.1"
3939
},
4040
"peerDependencies": {
41-
"astro": "workspace:^2.5.6"
41+
"astro": "workspace:^2.5.7"
4242
},
4343
"devDependencies": {
4444
"@types/send": "^0.17.1",

packages/integrations/sitemap/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @astrojs/sitemap
22

3+
## 1.3.3
4+
5+
### Patch Changes
6+
7+
- [#7263](https://github.com/withastro/astro/pull/7263) [`dff0d0dda`](https://github.com/withastro/astro/commit/dff0d0dda2f20c02901594739a654834d3451c8e) Thanks [@andremralves](https://github.com/andremralves)! - Fix sitemap does not filter pages
8+
39
## 1.3.2
410

511
### Patch Changes

packages/integrations/sitemap/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@astrojs/sitemap",
33
"description": "Generate a sitemap for your Astro site",
4-
"version": "1.3.2",
4+
"version": "1.3.3",
55
"type": "module",
66
"types": "./dist/index.d.ts",
77
"author": "withastro",

packages/integrations/svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"vite": "^4.3.1"
4949
},
5050
"peerDependencies": {
51-
"astro": "workspace:^2.5.6",
51+
"astro": "workspace:^2.5.7",
5252
"svelte": "^3.54.0"
5353
},
5454
"engines": {

packages/integrations/tailwind/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"vite": "^4.3.1"
4545
},
4646
"peerDependencies": {
47-
"astro": "workspace:^2.5.6",
47+
"astro": "workspace:^2.5.7",
4848
"tailwindcss": "^3.0.24"
4949
},
5050
"pnpm": {

packages/integrations/vercel/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"web-vitals": "^3.1.1"
6060
},
6161
"peerDependencies": {
62-
"astro": "workspace:^2.5.6"
62+
"astro": "workspace:^2.5.7"
6363
},
6464
"devDependencies": {
6565
"@types/set-cookie-parser": "^2.4.2",

packages/integrations/vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"vue": "^3.2.37"
5757
},
5858
"peerDependencies": {
59-
"astro": "workspace:^2.5.6",
59+
"astro": "workspace:^2.5.7",
6060
"vue": "^3.2.30"
6161
},
6262
"engines": {

0 commit comments

Comments
 (0)