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

build(deps): bump deps in /docs #4832

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 19, 2024

Bumps socket.io to 4.7.1 and updates ancestor dependencies socket.io, gatsby, gatsby-plugin-canonical-urls, gatsby-plugin-catch-links, gatsby-plugin-emotion, gatsby-plugin-manifest, gatsby-plugin-mdx, gatsby-plugin-offline, gatsby-plugin-react-helmet, gatsby-plugin-sharp, gatsby-plugin-sitemap, gatsby-remark-autolink-headers, gatsby-remark-copy-linked-files, gatsby-remark-images, gatsby-remark-responsive-iframe, gatsby-source-filesystem, gatsby-transformer-remark, gatsby-transformer-sharp and gatsby-transformer-yaml. These dependencies need to be updated together.

Updates socket.io from 4.5.4 to 4.7.1

Release notes

Sourced from socket.io's releases.

4.7.1

The client bundle contains a few fixes regarding the WebTransport support.

Links

4.7.0

Bug Fixes

  • remove the Partial modifier from the socket.data type (#4740) (e5c62ca)

Features

Support for WebTransport

The Socket.IO server can now use WebTransport as the underlying transport.

WebTransport is a web API that uses the HTTP/3 protocol as a bidirectional transport. It's intended for two-way communications between a web client and an HTTP/3 server.

References:

Until WebTransport support lands in Node.js, you can use the @fails-components/webtransport package:

import { readFileSync } from "fs";
import { createServer } from "https";
import { Server } from "socket.io";
import { Http3Server } from "@fails-components/webtransport";
// WARNING: the total length of the validity period MUST NOT exceed two weeks (https://w3c.github.io/webtransport/#custom-certificate-requirements)
const cert = readFileSync("/path/to/my/cert.pem");
const key = readFileSync("/path/to/my/key.pem");
const httpsServer = createServer({
key,
cert
});
httpsServer.listen(3000);
const io = new Server(httpsServer, {
</tr></table>

... (truncated)

Changelog

Sourced from socket.io's changelog.

4.7.1 (2023-06-28)

The client bundle contains a few fixes regarding the WebTransport support.

Dependencies

4.7.0 (2023-06-22)

Bug Fixes

  • remove the Partial modifier from the socket.data type (#4740) (e5c62ca)

Features

Support for WebTransport

The Socket.IO server can now use WebTransport as the underlying transport.

WebTransport is a web API that uses the HTTP/3 protocol as a bidirectional transport. It's intended for two-way communications between a web client and an HTTP/3 server.

References:

Until WebTransport support lands in Node.js, you can use the @fails-components/webtransport package:

import { readFileSync } from "fs";
import { createServer } from "https";
import { Server } from "socket.io";
import { Http3Server } from "@fails-components/webtransport";
// WARNING: the total length of the validity period MUST NOT exceed two weeks (https://w3c.github.io/webtransport/#custom-certificate-requirements)
const cert = readFileSync("/path/to/my/cert.pem");
const key = readFileSync("/path/to/my/key.pem");
const httpsServer = createServer({
key,
cert
});
</tr></table>

... (truncated)

Commits
  • 2f6cc2f chore(release): 4.7.1
  • 00d8ee5 chore(release): 4.7.0
  • 2dd5fa9 ci: add Node.js 20 in the test matrix
  • a5dff0a docs(examples): increase httpd ProxyTimeout value (2)
  • 3035c25 docs(examples): increase httpd ProxyTimeout value
  • 63f181c feat: serve client bundles with CORS headers
  • a250e28 chore: bump engine.io to version 6.5.0
  • e5c62ca fix: remove the Partial modifier from the socket.data type (#4740)
  • 01d3762 docs(changelog): update the version range of the engine.io dependency
  • faf914c chore(release): 4.6.2
  • Additional commits viewable in compare view

Updates gatsby from 4.25.7 to 5.13.6

Release notes

Sourced from gatsby's releases.

v5.13.0

Welcome to [email protected] release (December 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.12.0

Welcome to [email protected] release (August 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.11.0

Welcome to [email protected] release (June 2023 #1)

Key highlights of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.10.0

Welcome to [email protected] release (May 2023 #1)

This release focused on bug fixes and perf improvements. Check out notable bugfixes and improvements.

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.9.0

Welcome to [email protected] release (April 2023 #1)

... (truncated)

Commits

Updates gatsby-plugin-canonical-urls from 4.25.0 to 5.13.1

Release notes

Sourced from gatsby-plugin-canonical-urls's releases.

v5.13.0

Welcome to [email protected] release (December 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.12.0

Welcome to [email protected] release (August 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.11.0

Welcome to [email protected] release (June 2023 #1)

Key highlights of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.10.0

Welcome to [email protected] release (May 2023 #1)

This release focused on bug fixes and perf improvements. Check out notable bugfixes and improvements.

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.9.0

Welcome to [email protected] release (April 2023 #1)

... (truncated)

Changelog

Sourced from gatsby-plugin-canonical-urls's changelog.

5.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-canonical-urls

5.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.12.0 (2023-08-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.11.0 (2023-06-15)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.10.0 (2023-05-16)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.9.0 (2023-04-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.8.0 (2023-03-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.7.0 (2023-02-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.6.0 (2023-02-07)

🧾 Release notes

... (truncated)

Commits

Updates gatsby-plugin-catch-links from 4.21.0 to 5.13.1

Release notes

Sourced from gatsby-plugin-catch-links's releases.

v5.13.0

Welcome to [email protected] release (December 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.12.0

Welcome to [email protected] release (August 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.11.0

Welcome to [email protected] release (June 2023 #1)

Key highlights of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.10.0

Welcome to [email protected] release (May 2023 #1)

This release focused on bug fixes and perf improvements. Check out notable bugfixes and improvements.

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.9.0

Welcome to [email protected] release (April 2023 #1)

... (truncated)

Changelog

Sourced from gatsby-plugin-catch-links's changelog.

5.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-catch-links

5.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.12.0 (2023-08-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.11.0 (2023-06-15)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.10.0 (2023-05-16)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.9.0 (2023-04-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.8.0 (2023-03-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.7.0 (2023-02-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.6.0 (2023-02-07)

🧾 Release notes

... (truncated)

Commits

Updates gatsby-plugin-emotion from 7.24.0 to 8.13.1

Changelog

Sourced from gatsby-plugin-emotion's changelog.

8.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-emotion

8.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-emotion

8.12.0 (2023-08-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-emotion

8.11.0 (2023-06-15)

🧾 Release notes

Bug Fixes

  • update dependency @​emotion/babel-preset-css-prop to ^11.11.0 for gatsby-plugin-emotion #38173 (8a76a20)

8.10.0 (2023-05-16)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-emotion

8.9.0 (2023-04-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-emotion

8.8.0 (2023-03-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-emotion

8.7.0 (2023-02-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-emotion

8.6.0 (2023-02-07)

... (truncated)

Commits
  • b24134d chore(release): Publish
  • 18ffcfa chore(release): Publish
  • db248ab chore(changelogs): update changelogs (#38526)
  • e6e2fb4 chore(release): Publish next pre-minor
  • fd4d702 chore(changelogs): update changelogs (#38248)
  • 0991178 chore(release): Publish next pre-minor
  • ebe9bc6 chore(release): Publish next
  • 8a76a20 fix(deps): update dependency @​emotion/babel-preset-css-prop to ^11.11.0 for g...
  • 57a4af5 chore(changelogs): update changelogs (#38096)
  • 99664bc chore(release): Publish next pre-minor
  • Additional commits viewable in compare view

Updates gatsby-plugin-manifest from 4.25.0 to 5.13.1

Release notes

Sourced from gatsby-plugin-manifest's releases.

v5.13.0

Welcome to [email protected] release (December 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.12.0

Welcome to [email protected] release (August 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.11.0

Welcome to [email protected] release (June 2023 #1)

Key highlights of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.10.0

Welcome to [email protected] release (May 2023 #1)

This release focused on bug fixes and perf improvements. Check out notable bugfixes and improvements.

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.9.0

Welcome to [email protected] release (April 2023 #1)

... (truncated)

Changelog

Sourced from gatsby-plugin-manifest's changelog.

5.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-manifest

5.13.0 (2023-12-18)

🧾 Release notes

Chores

5.12.3 (2023-10-26)

Note: Version bump only for package gatsby-plugin-manifest

5.12.2 (2023-10-20)

Note: Version bump only for package gatsby-plugin-manifest

5.12.1 (2023-10-09)

Chores

5.12.0 (2023-08-24)

🧾 Release notes

Bug Fixes

5.11.0 (2023-06-15)

🧾 Release notes

Chores

5.10.0 (2023-05-16)

🧾 Release notes

Bug Fixes

... (truncated)

Commits

Updates gatsby-plugin-mdx from 3.15.2 to 5.13.1

Release notes

Sourced from gatsby-plugin-mdx's releases.

v5.13.0

Welcome to [email protected] release (December 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.12.0

Welcome to [email protected] release (August 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.11.0

Welcome to [email protected] release (June 2023 #1)

Key highlights of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.10.0

Welcome to [email protected] release (May 2023 #1)

This release focused on bug fixes and perf improvements. Check out notable bugfixes and improvements.

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.9.0

Welcome to [email protected] release (April 2023 #1)

... (truncated)

Changelog

Sourced from gatsby-plugin-mdx's changelog.

5.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-mdx

5.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-mdx

5.12.3 (2023-10-26)

Note: Version bump only for package gatsby-plugin-mdx

5.12.2 (2023-10-20)

Note: Version bump only for package gatsby-plugin-mdx

5.12.1 (2023-10-09)

Note: Version bump only for package gatsby-plugin-mdx

5.12.0 (2023-08-24)

🧾 Release notes

Bug Fixes

Chores

  • update dependency webpack to ^5.88.1 for gatsby-plugin-mdx #38306 (31df9ef)

5.11.0 (2023-06-15)

🧾 Release notes

Bug Fixes

5.10.0 (2023-05-16)

🧾 Release notes

Bug Fixes

... (truncated)

Commits

Updates gatsby-plugin-offline from 5.24.0 to 6.13.2

Changelog

Sourced from gatsby-plugin-offline's changelog.

6.13.2 (2024-04-10)

Bug Fixes

6.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-offline

6.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-offline

6.12.3 (2023-10-26)

Note: Version bump only for package gatsby-plugin-offline

6.12.2 (2023-10-20)

Note: Version bump only for package gatsby-plugin-offline

6.12.1 (2023-10-09)

Note: Version bump only for package gatsby-plugin-offline

6.12.0 (2023-08-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-offline

6.11.0 (2023-06-15)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-offline

6.10.0 (2023-05-16)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-offline

6.9.0 (2023-04-18)

🧾 Release notes

... (truncated)

Commits

Updates gatsby-plugin-react-helmet from 5.21.0 to 6.13.1

Changelog

Sourced from gatsby-plugin-react-helmet's changelog.

6.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-react-helmet

6.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.12.0 (2023-08-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.11.0 (2023-06-15)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.10.0 (2023-05-16)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

@dependabot dependabot bot added dependencies Relates to an upstream dependency javascript PR that update Javascript code labels Jun 19, 2024
@ldez ldez changed the title build(deps): bump socket.io, gatsby, gatsby-plugin-canonical-urls, gatsby-plugin-catch-links, gatsby-plugin-emotion, gatsby-plugin-manifest, gatsby-plugin-mdx, gatsby-plugin-offline, gatsby-plugin-react-helmet, gatsby-plugin-sharp, gatsby-plugin-sitemap, gatsby-remark-autolink-headers, gatsby-remark-copy-linked-files, gatsby-remark-images, gatsby-remark-responsive-iframe, gatsby-source-filesystem, gatsby-transformer-remark, gatsby-transformer-sharp and gatsby-transformer-yaml in /docs build(deps): bump deps in /docs Jun 19, 2024
@ldez ldez added the blocked Need's direct action from maintainer label Jun 19, 2024
@golangci golangci deleted a comment from Sintayew4 Jun 20, 2024
…tsby-plugin-catch-links, gatsby-plugin-emotion, gatsby-plugin-manifest, gatsby-plugin-mdx, gatsby-plugin-offline, gatsby-plugin-react-helmet, gatsby-plugin-sharp, gatsby-plugin-sitemap, gatsby-remark-autolink-headers, gatsby-remark-copy-linked-files, gatsby-remark-images, gatsby-remark-responsive-iframe, gatsby-source-filesystem, gatsby-transformer-remark, gatsby-transformer-sharp and gatsby-transformer-yaml

Bumps [socket.io](https://github.com/socketio/socket.io) to 4.7.1 and updates ancestor dependencies [socket.io](https://github.com/socketio/socket.io), [gatsby](https://github.com/gatsbyjs/gatsby), [gatsby-plugin-canonical-urls](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-canonical-urls), [gatsby-plugin-catch-links](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-catch-links), [gatsby-plugin-emotion](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-emotion), [gatsby-plugin-manifest](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-manifest), [gatsby-plugin-mdx](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-mdx), [gatsby-plugin-offline](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-offline), [gatsby-plugin-react-helmet](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-react-helmet), [gatsby-plugin-sharp](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-sharp), [gatsby-plugin-sitemap](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-sitemap), [gatsby-remark-autolink-headers](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-remark-autolink-headers), [gatsby-remark-copy-linked-files](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-remark-copy-linked-files), [gatsby-remark-images](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-remark-images), [gatsby-remark-responsive-iframe](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-remark-responsive-iframe), [gatsby-source-filesystem](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-source-filesystem), [gatsby-transformer-remark](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-transformer-remark), [gatsby-transformer-sharp](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-transformer-sharp) and [gatsby-transformer-yaml](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-transformer-yaml). These dependencies need to be updated together.


Updates `socket.io` from 4.5.4 to 4.7.1
- [Release notes](https://github.com/socketio/socket.io/releases)
- [Changelog](https://github.com/socketio/socket.io/blob/main/CHANGELOG.md)
- [Commits](socketio/socket.io@4.5.4...4.7.1)

Updates `gatsby` from 4.25.7 to 5.13.6
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.13.6)

Updates `gatsby-plugin-canonical-urls` from 4.25.0 to 5.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-canonical-urls/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-canonical-urls)

Updates `gatsby-plugin-catch-links` from 4.21.0 to 5.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-catch-links/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-catch-links)

Updates `gatsby-plugin-emotion` from 7.24.0 to 8.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-emotion/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-emotion)

Updates `gatsby-plugin-manifest` from 4.25.0 to 5.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-manifest/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-manifest)

Updates `gatsby-plugin-mdx` from 3.15.2 to 5.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-mdx/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-mdx)

Updates `gatsby-plugin-offline` from 5.24.0 to 6.13.2
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-offline/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-offline)

Updates `gatsby-plugin-react-helmet` from 5.21.0 to 6.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-react-helmet/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-react-helmet)

Updates `gatsby-plugin-sharp` from 4.25.1 to 5.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-sharp/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-sharp)

Updates `gatsby-plugin-sitemap` from 5.24.0 to 6.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-sitemap/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-sitemap)

Updates `gatsby-remark-autolink-headers` from 5.24.0 to 6.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-remark-autolink-headers/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-remark-autolink-headers)

Updates `gatsby-remark-copy-linked-files` from 5.24.0 to 6.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-remark-copy-linked-files/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-remark-copy-linked-files)

Updates `gatsby-remark-images` from 6.25.0 to 7.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-remark-images/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-remark-images)

Updates `gatsby-remark-responsive-iframe` from 5.25.0 to 6.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-remark-responsive-iframe/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-remark-responsive-iframe)

Updates `gatsby-source-filesystem` from 4.22.0 to 5.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-source-filesystem/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-source-filesystem)

Updates `gatsby-transformer-remark` from 5.25.1 to 6.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-transformer-remark/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-transformer-remark)

Updates `gatsby-transformer-sharp` from 4.21.0 to 5.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-transformer-sharp/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-transformer-sharp)

Updates `gatsby-transformer-yaml` from 4.25.0 to 5.13.1
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-transformer-yaml/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-transformer-yaml)

---
updated-dependencies:
- dependency-name: socket.io
  dependency-type: indirect
- dependency-name: gatsby
  dependency-type: direct:production
- dependency-name: gatsby-plugin-canonical-urls
  dependency-type: direct:production
- dependency-name: gatsby-plugin-catch-links
  dependency-type: direct:production
- dependency-name: gatsby-plugin-emotion
  dependency-type: direct:production
- dependency-name: gatsby-plugin-manifest
  dependency-type: direct:production
- dependency-name: gatsby-plugin-mdx
  dependency-type: direct:production
- dependency-name: gatsby-plugin-offline
  dependency-type: direct:production
- dependency-name: gatsby-plugin-react-helmet
  dependency-type: direct:production
- dependency-name: gatsby-plugin-sharp
  dependency-type: direct:production
- dependency-name: gatsby-plugin-sitemap
  dependency-type: direct:production
- dependency-name: gatsby-remark-autolink-headers
  dependency-type: direct:production
- dependency-name: gatsby-remark-copy-linked-files
  dependency-type: direct:production
- dependency-name: gatsby-remark-images
  dependency-type: direct:production
- dependency-name: gatsby-remark-responsive-iframe
  dependency-type: direct:production
- dependency-name: gatsby-source-filesystem
  dependency-type: direct:production
- dependency-name: gatsby-transformer-remark
  dependency-type: direct:production
- dependency-name: gatsby-transformer-sharp
  dependency-type: direct:production
- dependency-name: gatsby-transformer-yaml
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/docs/multi-5ce2efafe0 branch from 9dff82a to 197fc3a Compare June 24, 2024 22:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
blocked Need's direct action from maintainer dependencies Relates to an upstream dependency javascript PR that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant