Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump the production-dependencies group with 6 updates #767

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2025

Bumps the production-dependencies group with 6 updates:

Package From To
@next/third-parties 15.0.2 15.1.6
github-markdown-css 5.7.0 5.8.1
next 15.1.2 15.1.6
pagefind 1.2.0 1.3.0
react-markdown 9.0.1 9.0.3
swiper 11.2.1 11.2.2

Updates @next/third-parties from 15.0.2 to 15.1.6

Release notes

Sourced from @​next/third-parties's releases.

v15.1.6

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • fix: don't memory-leak promises passed to waitUntil (#75041)
  • backport: fix prerender issue with intercepting routes + generateStaticParams (#75170)

Credits

Huge thanks to @​lubieowoce and @​ztanner for helping!

v15.1.5

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Fix missing revalidate with notFound() (#75009)
  • fix: when metadatabase is set we should not warn (#74840)
  • Fix @​vercel/og license SPDX expression (#74745)
  • fix: ts language server rule metadata should allow null (#74704)
  • fix: eslint rule of using img in metadata routes (#74864)
  • Fix presentation when onerror receives an event without error (#74643)
  • fix fetch lock not being consistently released #74623 (#75028)

Credits

Huge thanks to @​ijjk, @​huozhi, @​matmannion and @​ztanner for helping!

v15.1.4

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • backport: force module format for virtual client-proxy (#74608)
  • Fix prerender tags when notFound is called (#74607)
  • Use provided waitUntil for pending revalidates (#74604)
  • Feature: next/image: add support for images.qualities in next.config (#74588)
  • Chore: docs: add missing search: '' on remotePatterns (#74587)
  • Chore: docs: update version history of next/image (#73923) (#74570)
  • Chore: next/image: improve imgopt api bypass detection for unsupported images (#74569)

Credits

Huge thanks to @ and @ for helping!

... (truncated)

Commits

Updates github-markdown-css from 5.7.0 to 5.8.1

Release notes

Sourced from github-markdown-css's releases.

v5.8.1

  • Regenerate GitHub CSS f2dc5d9

sindresorhus/github-markdown-css@v5.8.0...v5.8.1

v5.8.0

  • Regenerate GitHub CSS 0b0d6ed

sindresorhus/github-markdown-css@v5.7.0...v5.8.0

Commits

Updates next from 15.1.2 to 15.1.6

Release notes

Sourced from next's releases.

v15.1.6

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • fix: don't memory-leak promises passed to waitUntil (#75041)
  • backport: fix prerender issue with intercepting routes + generateStaticParams (#75170)

Credits

Huge thanks to @​lubieowoce and @​ztanner for helping!

v15.1.5

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Fix missing revalidate with notFound() (#75009)
  • fix: when metadatabase is set we should not warn (#74840)
  • Fix @​vercel/og license SPDX expression (#74745)
  • fix: ts language server rule metadata should allow null (#74704)
  • fix: eslint rule of using img in metadata routes (#74864)
  • Fix presentation when onerror receives an event without error (#74643)
  • fix fetch lock not being consistently released #74623 (#75028)

Credits

Huge thanks to @​ijjk, @​huozhi, @​matmannion and @​ztanner for helping!

v15.1.4

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • backport: force module format for virtual client-proxy (#74608)
  • Fix prerender tags when notFound is called (#74607)
  • Use provided waitUntil for pending revalidates (#74604)
  • Feature: next/image: add support for images.qualities in next.config (#74588)
  • Chore: docs: add missing search: '' on remotePatterns (#74587)
  • Chore: docs: update version history of next/image (#73923) (#74570)
  • Chore: next/image: improve imgopt api bypass detection for unsupported images (#74569)

Credits

Huge thanks to @ and @ for helping!

... (truncated)

Commits

Updates pagefind from 1.2.0 to 1.3.0

Release notes

Sourced from pagefind's releases.

v1.3.0

Core Features & Improvements

  • Added --quiet and --silent flags when running the Pagefind CLI, which reduce the logging output to only warnings or only errors respectively.
  • Stablized the Pagefind Rust library.
    • Thanks to @​cdxker for leading this in #751 ❤️
    • This library interface has feature parity with the Node and Python indexing APIs, and is a great solution for integrating Pagefind indexing into any Rust-based tooling.

Default UI Features & Improvements

  • Added a data-pagefind-ui-meta attribute to the metadata tags on search results in the Default UI, allowing them to be targeted with CSS.
    • For example, a tag on a result containing Date: April 19, 2024 will now have data-pagefind-ui-meta="date".

Fixes & Tweaks

  • Fixed an issue where inline metadata would incorrectly render with html-escaped characters.
    • Specifically, tagging metadata inline with data-pagefind-meta="phrase:this &lt; that would index the literal &lt; rather than a < character.
    • This bug didn't occur when using data-pagefind-meta to capture the content of an element.
  • Fixed an issue where matches in compound words could (sometimes) be ranked lower than intended.
    • Specifically, for example, matching just the Cannon in CloudCannon may have ranked the word incorrectly.
  • Fixed an issue where fragment hashes would change between every Pagefind build.
    • Now, if an HTML page has not changed between two Pagefind indexes, the fragment filename will not change.
    • This saves you from having to re-upload all fragment files after every Pagefind build.
Changelog

Sourced from pagefind's changelog.

v1.3.0 (December 18, 2024)

Core Features & Improvements

  • Added --quiet and --silent flags when running the Pagefind CLI, which reduce the logging output to only warnings or only errors respectively.
  • Stablized the Pagefind Rust library.
    • Thanks to @​cdxker for leading this in #751 ❤️
    • This library interface has feature parity with the Node and Python indexing APIs, and is a great solution for integrating Pagefind indexing into any Rust-based tooling.

Default UI Features & Improvements

  • Added a data-pagefind-ui-meta attribute to the metadata tags on search results in the Default UI, allowing them to be targeted with CSS.
    • For example, a tag on a result containing Date: April 19, 2024 will now have data-pagefind-ui-meta="date".

Fixes & Tweaks

  • Fixed an issue where inline metadata would incorrectly render with html-escaped characters.
    • Specifically, tagging metadata inline with data-pagefind-meta="phrase:this &lt; that would index the literal &lt; rather than a < character.
    • This bug didn't occur when using data-pagefind-meta to capture the content of an element.
  • Fixed an issue where matches in compound words could (sometimes) be ranked lower than intended.
    • Specifically, for example, matching just the Cannon in CloudCannon may have ranked the word incorrectly.
  • Fixed an issue where fragment hashes would change between every Pagefind build.
    • Now, if an HTML page has not changed between two Pagefind indexes, the fragment filename will not change.
    • This saves you from having to re-upload all fragment files after every Pagefind build.
Commits
  • df0f721 Merge pull request #762 from CloudCannon/chore/changelog
  • 597d9a5 Changelog
  • a138dd1 Merge pull request #761 from CloudCannon/fix/stable-output
  • da3c0f9 Only test fragment stabilization
  • c933742 Stabilize filename hashes for fragments
  • 36358de Merge pull request #760 from CloudCannon/feat/ui-meta-attribute
  • c45609d Merge pull request #759 from CloudCannon/feat/quiet
  • ae0d9a1 Added data-pagefind-ui-meta attribute to the default UI as CSS target
  • 7899d3d Add --quiet and --silent configuration options when indexing
  • 74c4ed8 Merge pull request #758 from CloudCannon/feat/fix-meta-encoding
  • Additional commits viewable in compare view

Updates react-markdown from 9.0.1 to 9.0.3

Release notes

Sourced from react-markdown's releases.

9.0.3

(same as 9.0.2 but now with d.ts files)

Full Changelog: remarkjs/react-markdown@9.0.2...9.0.3

9.0.2

Types

Miscellaneous

Full Changelog: remarkjs/react-markdown@9.0.1...9.0.2

Commits

Updates swiper from 11.2.1 to 11.2.2

Release notes

Sourced from swiper's releases.

v11.2.2

Bug Fixes

  • cards: fix slides swap issue in loop mode (e012e34), closes #7823
  • core: fix slidePrev issue in free-mode (a3fee36), closes #7869
  • virtual: fix when Element not swiping in Safari (5abdbfd), closes #7679
Changelog

Sourced from swiper's changelog.

11.2.2 (2025-01-31)

Bug Fixes

  • cards: fix slides swap issue in loop mode (e012e34), closes #7823
  • core: fix slidePrev issue in free-mode (a3fee36), closes #7869
  • virtual: fix when Element not swiping in Safari (5abdbfd), closes #7679
Commits
  • 06532af 11.2.2
  • 5abdbfd fix(virtual): fix when Element not swiping in Safari
  • a3fee36 fix(core): fix slidePrev issue in free-mode
  • e012e34 fix(cards): fix slides swap issue in loop mode
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@next/third-parties](https://github.com/vercel/next.js/tree/HEAD/packages/third-parties) | `15.0.2` | `15.1.6` |
| [github-markdown-css](https://github.com/sindresorhus/github-markdown-css) | `5.7.0` | `5.8.1` |
| [next](https://github.com/vercel/next.js) | `15.1.2` | `15.1.6` |
| [pagefind](https://github.com/CloudCannon/pagefind) | `1.2.0` | `1.3.0` |
| [react-markdown](https://github.com/remarkjs/react-markdown) | `9.0.1` | `9.0.3` |
| [swiper](https://github.com/nolimits4web/Swiper) | `11.2.1` | `11.2.2` |


Updates `@next/third-parties` from 15.0.2 to 15.1.6
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.6/packages/third-parties)

Updates `github-markdown-css` from 5.7.0 to 5.8.1
- [Release notes](https://github.com/sindresorhus/github-markdown-css/releases)
- [Commits](sindresorhus/github-markdown-css@v5.7.0...v5.8.1)

Updates `next` from 15.1.2 to 15.1.6
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v15.1.2...v15.1.6)

Updates `pagefind` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/CloudCannon/pagefind/releases)
- [Changelog](https://github.com/CloudCannon/pagefind/blob/main/CHANGELOG.md)
- [Commits](CloudCannon/pagefind@v1.2.0...v1.3.0)

Updates `react-markdown` from 9.0.1 to 9.0.3
- [Release notes](https://github.com/remarkjs/react-markdown/releases)
- [Changelog](https://github.com/remarkjs/react-markdown/blob/main/changelog.md)
- [Commits](remarkjs/react-markdown@9.0.1...9.0.3)

Updates `swiper` from 11.2.1 to 11.2.2
- [Release notes](https://github.com/nolimits4web/Swiper/releases)
- [Changelog](https://github.com/nolimits4web/swiper/blob/master/CHANGELOG.md)
- [Commits](nolimits4web/swiper@v11.2.1...v11.2.2)

---
updated-dependencies:
- dependency-name: "@next/third-parties"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: github-markdown-css
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pagefind
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-markdown
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: swiper
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 1, 2025
@SpaNb4 SpaNb4 merged commit 0b235f5 into main Feb 2, 2025
3 checks passed
@SpaNb4 SpaNb4 deleted the dependabot/npm_and_yarn/production-dependencies-f80d0c17ca branch February 2, 2025 10:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants