Skip to content

Commit

Permalink
[ci] release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 25, 2023
1 parent 184870e commit 68ebdd0
Show file tree
Hide file tree
Showing 30 changed files with 97 additions and 94 deletions.
5 changes: 0 additions & 5 deletions .changeset/clever-garlics-doubt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/curvy-hotels-study.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dirty-singers-enjoy.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/dry-taxis-suffer.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/eleven-tables-speak.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/lazy-zebras-invent.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-geese-fold.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/popular-berries-travel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spotty-glasses-return.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/static-slot-css.md

This file was deleted.

11 changes: 11 additions & 0 deletions packages/astro/CHANGELOG.md
@@ -1,5 +1,16 @@
# astro

## 2.5.6

### Patch Changes

- [#7193](https://github.com/withastro/astro/pull/7193) [`8b041bf57`](https://github.com/withastro/astro/commit/8b041bf57c76830c4070330270521e05d8e58474) Thanks [@ematipico](https://github.com/ematipico)! - Refactor how pages are emitted during the internal bundling. Now each
page is emitted as a separate entry point.

- [#7192](https://github.com/withastro/astro/pull/7192) [`7851f9258`](https://github.com/withastro/astro/commit/7851f9258fae2f54795470253df9ce4bcd5f9cb0) Thanks [@ematipico](https://github.com/ematipico)! - Detect `mdx` files using their full extension

- [#7189](https://github.com/withastro/astro/pull/7189) [`2bda7fb0b`](https://github.com/withastro/astro/commit/2bda7fb0bce346f7725086980e1648e2636bbefb) Thanks [@elevatebart](https://github.com/elevatebart)! - fix: add astro-static-slot to the list of inert tags in astro css

## 2.5.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
"version": "2.5.5",
"version": "2.5.6",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/cloudflare/package.json
Expand Up @@ -42,7 +42,7 @@
"tiny-glob": "^0.2.9"
},
"peerDependencies": {
"astro": "workspace:^2.5.5"
"astro": "workspace:^2.5.6"
},
"devDependencies": {
"astro": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/deno/package.json
Expand Up @@ -36,7 +36,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
"astro": "workspace:^2.5.5"
"astro": "workspace:^2.5.6"
},
"devDependencies": {
"astro": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/image/package.json
Expand Up @@ -62,7 +62,7 @@
"vite": "^4.3.1"
},
"peerDependencies": {
"astro": "workspace:^2.5.5",
"astro": "workspace:^2.5.6",
"sharp": ">=0.31.0"
},
"peerDependenciesMeta": {
Expand Down
39 changes: 39 additions & 0 deletions packages/integrations/markdoc/CHANGELOG.md
@@ -1,5 +1,44 @@
# @astrojs/markdoc

## 0.2.4

### Patch Changes

- [#7187](https://github.com/withastro/astro/pull/7187) [`1efaef6be`](https://github.com/withastro/astro/commit/1efaef6be0265c68eac706623778e8ad23b33247) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add support for syntax highlighting with Shiki. Apply to your Markdoc config using the `extends` property:

```js
// markdoc.config.mjs
import { defineMarkdocConfig } from '@astrojs/markdoc/config';
import shiki from '@astrojs/markdoc/shiki';

export default defineMarkdocConfig({
extends: [
shiki({
/** Shiki config options */
}),
],
});
```

Learn more in the [`@astrojs/markdoc` README.](https://docs.astro.build/en/guides/integrations-guide/markdoc/#syntax-highlighting)

- [#7209](https://github.com/withastro/astro/pull/7209) [`16b836411`](https://github.com/withastro/astro/commit/16b836411980f18c58ca15712d92cec1b3c95670) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add a built-in extension for syntax highlighting with Prism. Apply to your Markdoc config using the `extends` property:

```js
// markdoc.config.mjs
import { defineMarkdocConfig } from '@astrojs/markdoc/config';
import prism from '@astrojs/markdoc/prism';

export default defineMarkdocConfig({
extends: [prism()],
});
```

Learn more in the [`@astrojs/markdoc` README.](https://docs.astro.build/en/guides/integrations-guide/markdoc/#syntax-highlighting)

- Updated dependencies [[`8b041bf57`](https://github.com/withastro/astro/commit/8b041bf57c76830c4070330270521e05d8e58474), [`7851f9258`](https://github.com/withastro/astro/commit/7851f9258fae2f54795470253df9ce4bcd5f9cb0), [`2bda7fb0b`](https://github.com/withastro/astro/commit/2bda7fb0bce346f7725086980e1648e2636bbefb)]:
- astro@2.5.6

## 0.2.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/integrations/markdoc/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/markdoc",
"description": "Add support for Markdoc in your Astro site",
"version": "0.2.3",
"version": "0.2.4",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
Expand Down Expand Up @@ -51,7 +51,7 @@
"zod": "^3.17.3"
},
"peerDependencies": {
"astro": "workspace:^2.5.5"
"astro": "workspace:^2.5.6"
},
"devDependencies": {
"@astrojs/markdown-remark": "^2.2.1",
Expand Down
10 changes: 10 additions & 0 deletions packages/integrations/mdx/CHANGELOG.md
@@ -1,5 +1,15 @@
# @astrojs/mdx

## 0.19.5

### Patch Changes

- [#7151](https://github.com/withastro/astro/pull/7151) [`ea16570b1`](https://github.com/withastro/astro/commit/ea16570b1e0929678170c10b06c011dc668d7013) Thanks [@bluwy](https://github.com/bluwy)! - Add `optimize` option for faster builds and rendering

- [#7192](https://github.com/withastro/astro/pull/7192) [`7851f9258`](https://github.com/withastro/astro/commit/7851f9258fae2f54795470253df9ce4bcd5f9cb0) Thanks [@ematipico](https://github.com/ematipico)! - Detect `mdx` files using their full extension

- [#7191](https://github.com/withastro/astro/pull/7191) [`27c6e0182`](https://github.com/withastro/astro/commit/27c6e01826a6da525f1f811d97784accd1ebbd96) Thanks [@bluwy](https://github.com/bluwy)! - Remove `@mdx-js/rollup` dependency

## 0.19.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/mdx/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/mdx",
"description": "Add support for MDX pages in your Astro site",
"version": "0.19.4",
"version": "0.19.5",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/netlify/package.json
Expand Up @@ -42,7 +42,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
"astro": "workspace:^2.5.5"
"astro": "workspace:^2.5.6"
},
"devDependencies": {
"@netlify/edge-functions": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/node/package.json
Expand Up @@ -38,7 +38,7 @@
"server-destroy": "^1.0.1"
},
"peerDependencies": {
"astro": "workspace:^2.5.5"
"astro": "workspace:^2.5.6"
},
"devDependencies": {
"@types/send": "^0.17.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/integrations/partytown/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/partytown

## 1.2.3

### Patch Changes

- [#7175](https://github.com/withastro/astro/pull/7175) [`59d8c50b8`](https://github.com/withastro/astro/commit/59d8c50b8426cd6825abc07405041779b7999022) Thanks [@AkashRajpurohit](https://github.com/AkashRajpurohit)! - fix typescript type for partytown options

## 1.2.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/partytown/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/partytown",
"description": "Use Partytown to move scripts into a web worker in your Astro project",
"version": "1.2.2",
"version": "1.2.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
Expand Down
6 changes: 6 additions & 0 deletions packages/integrations/sitemap/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/sitemap

## 1.3.2

### Patch Changes

- [#7028](https://github.com/withastro/astro/pull/7028) [`6ca3b5a9e`](https://github.com/withastro/astro/commit/6ca3b5a9e8b9aa19a9436043f8ead41e7938c32e) Thanks [@alexanderniebuhr](https://github.com/alexanderniebuhr)! - exported enum type to support typescript > 5.0

## 1.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/sitemap/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/sitemap",
"description": "Generate a sitemap for your Astro site",
"version": "1.3.1",
"version": "1.3.2",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/svelte/package.json
Expand Up @@ -48,7 +48,7 @@
"vite": "^4.3.1"
},
"peerDependencies": {
"astro": "workspace:^2.5.5",
"astro": "workspace:^2.5.6",
"svelte": "^3.54.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/tailwind/package.json
Expand Up @@ -44,7 +44,7 @@
"vite": "^4.3.1"
},
"peerDependencies": {
"astro": "workspace:^2.5.5",
"astro": "workspace:^2.5.6",
"tailwindcss": "^3.0.24"
},
"pnpm": {
Expand Down
9 changes: 9 additions & 0 deletions packages/integrations/vercel/CHANGELOG.md
@@ -1,5 +1,14 @@
# @astrojs/vercel

## 3.4.1

### Patch Changes

- [#7208](https://github.com/withastro/astro/pull/7208) [`f5a8cffac`](https://github.com/withastro/astro/commit/f5a8cffac22c9e33fad6f47f7d166b55c86ad87b) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix `imagesConfig` being wrongly spelt as `imageConfig` in the README

- Updated dependencies [[`8b041bf57`](https://github.com/withastro/astro/commit/8b041bf57c76830c4070330270521e05d8e58474), [`7851f9258`](https://github.com/withastro/astro/commit/7851f9258fae2f54795470253df9ce4bcd5f9cb0), [`2bda7fb0b`](https://github.com/withastro/astro/commit/2bda7fb0bce346f7725086980e1648e2636bbefb)]:
- astro@2.5.6

## 3.4.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/integrations/vercel/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
"version": "3.4.0",
"version": "3.4.1",
"type": "module",
"author": "withastro",
"license": "MIT",
Expand Down Expand Up @@ -59,7 +59,7 @@
"web-vitals": "^3.1.1"
},
"peerDependencies": {
"astro": "workspace:^2.5.5"
"astro": "workspace:^2.5.6"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/vue/package.json
Expand Up @@ -56,7 +56,7 @@
"vue": "^3.2.37"
},
"peerDependencies": {
"astro": "workspace:^2.5.5",
"astro": "workspace:^2.5.6",
"vue": "^3.2.30"
},
"engines": {
Expand Down

0 comments on commit 68ebdd0

Please sign in to comment.