cloudnativedaysjp / website

Website for CloudNative Days a.k.a Dreamkast-Archives
1 stars 0 forks source link

Update dependency @astrojs/rss to v3 #171

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/rss (source) ^2.0.0 -> ^3.0.0 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/rss) ### [`v3.0.0`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#300) [Compare Source](https://togithub.com/withastro/astro/compare/@astrojs/rss@2.4.4...@astrojs/rss@3.0.0) ##### Major Changes - [#​8188](https://togithub.com/withastro/astro/pull/8188) [`d0679a666`](https://togithub.com/withastro/astro/commit/d0679a666f37da0fca396d42b9b32bbb25d29312) Thanks [@​ematipico](https://togithub.com/ematipico)! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023. - [#​8179](https://togithub.com/withastro/astro/pull/8179) [`6011d52d3`](https://togithub.com/withastro/astro/commit/6011d52d38e43c3e3d52bc3bc41a60e36061b7b7) Thanks [@​matthewp](https://togithub.com/matthewp)! - Astro 3.0 Release Candidate - [#​8198](https://togithub.com/withastro/astro/pull/8198) [`cb95aa5f8`](https://togithub.com/withastro/astro/commit/cb95aa5f8e0b04eba1a56e3e4a7901d40f1c854b) Thanks [@​bluwy](https://togithub.com/bluwy)! - Update the `rss()` default export to return a `Response` instead of a simple object, which is deprecated in Astro 3.0. If you were directly returning the `rss()` result from an endpoint before, this breaking change should not affect you. You can also import `getRssString()` to get the RSS string directly and use it to return your own Response: ```ts // src/pages/rss.xml.js import { getRssString } from '@​astrojs/rss'; export async function get(context) { const rssString = await getRssString({ title: 'Buzz’s Blog', ... }); return new Response(rssString, { headers: { 'Content-Type': 'application/xml', }, }); } ``` ##### Patch Changes - [#​8099](https://togithub.com/withastro/astro/pull/8099) [`732111cdc`](https://togithub.com/withastro/astro/commit/732111cdce441639db31f40f621df48442d00969) Thanks [@​bluwy](https://togithub.com/bluwy)! - Deprecate the `markdown.drafts` configuration option. If you'd like to create draft pages that are visible in dev but not in production, you can [migrate to content collections](https://docs.astro.build/en/guides/content-collections/#migrating-from-file-based-routing) and [manually filter out pages](https://docs.astro.build/en/guides/content-collections/#filtering-collection-queries) with the `draft: true` frontmatter property instead. ### [`v2.4.4`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#244) [Compare Source](https://togithub.com/withastro/astro/compare/@astrojs/rss@2.4.3...@astrojs/rss@2.4.4) ##### Patch Changes - [#​7964](https://togithub.com/withastro/astro/pull/7964) [`51028f85c`](https://togithub.com/withastro/astro/commit/51028f85c68944872a65b4bc0b8fcb6c3f3cf496) Thanks [@​DerTimonius](https://togithub.com/DerTimonius)! - Add URL to RSSOptions.site type ### [`v2.4.3`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#243) [Compare Source](https://togithub.com/withastro/astro/compare/@astrojs/rss@2.4.2...@astrojs/rss@2.4.3) ##### Patch Changes - [#​7153](https://togithub.com/withastro/astro/pull/7153) [`e17ed0727`](https://togithub.com/withastro/astro/commit/e17ed0727ef1acb512c77723a1b641326de8ca84) Thanks [@​AkashRajpurohit](https://togithub.com/AkashRajpurohit)! - exposes RSSFeedItem type ### [`v2.4.2`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#242) [Compare Source](https://togithub.com/withastro/astro/compare/@astrojs/rss@2.4.1...@astrojs/rss@2.4.2) ##### Patch Changes - [#​7066](https://togithub.com/withastro/astro/pull/7066) [`a37e67b52`](https://togithub.com/withastro/astro/commit/a37e67b520dc35dbf40313c77490a97446de2f74) Thanks [@​TheOtterlord](https://togithub.com/TheOtterlord)! - Fix pubDate schema tranformation - [#​7104](https://togithub.com/withastro/astro/pull/7104) [`826e02890`](https://togithub.com/withastro/astro/commit/826e0289005f645b902375b98d5549c6a95ccafa) Thanks [@​bluwy](https://togithub.com/bluwy)! - Specify `"files"` field to only publish necessary files ### [`v2.4.1`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#241) ##### Patch Changes - [#​6970](https://togithub.com/withastro/astro/pull/6970) [`b5482cee2`](https://togithub.com/withastro/astro/commit/b5482cee2387149ff397447e546130ba3dea58db) Thanks [@​bholmesdev](https://togithub.com/bholmesdev)! - Fix: remove accidental stripping of trailing `/1/` on canonical URLs ### [`v2.4.0`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#240) ##### Minor Changes - [#​6707](https://togithub.com/withastro/astro/pull/6707) [`4ea716e56`](https://togithub.com/withastro/astro/commit/4ea716e5692d23361e9301330ce52733b3d05b01) Thanks [@​philnash](https://togithub.com/philnash)! - Added extra elements to the RSS items, including categories and enclosure

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] commented 1 year ago

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 3.x releases. But if you manually upgrade to 3.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.