Skip to content

deps: bump @dr.pogodin/react-helmet from 3.1.1 to 3.2.2 in the npm-production group#105

Merged
mnaimfaizy merged 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-production-3aceacd713
May 23, 2026
Merged

deps: bump @dr.pogodin/react-helmet from 3.1.1 to 3.2.2 in the npm-production group#105
mnaimfaizy merged 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-production-3aceacd713

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 22, 2026

Bumps the npm-production group with 1 update: @dr.pogodin/react-helmet.

Updates @dr.pogodin/react-helmet from 3.1.1 to 3.2.2

Release notes

Sourced from @​dr.pogodin/react-helmet's releases.

v3.2.2

  • Same as v3.2.0 (which failed to publish to NPM because of outdated CI/CD configuration).

Sponsor

v3.2.0

Breaking Change

  • Relevant if you integrate React Helmet with your server-side rendering setup — the context property of [HelmetProvider] component is replaced by onServerState callback.

    Prior to this change:

    import { type HelmetDataContext, HelmetProvider } from '@dr.pogodin/react-helmet';
    async function yourServerSideRenderingFunction() {
    // ...
    const context: HelmetDataContext = {};
    const { prelude } = await prerenderToNodeStream(
    <HelmetProvider context={context}>
    { /* Your application tree. */ }
    </HelmetProvider>
    );
    // ...
    // For example, this is how you get the string representation of <meta> tags
    // to be injected into your document head.
    const metaElements = context.helmet.meta?.toString();
    }

    After this change:

    import { type HelmetServerState, HelmetProvider } from '@dr.pogodin/react-helmet';
    async function yourServerSideRenderingFunction() {
    // ...
    let state: HelmetServerState | undefined;
    const { prelude } = await prerenderToNodeStream(
    <HelmetProvider
    onServerState={(s) => {
    state = s;
    }}
    >
    { /* Your application tree. */ }
    </HelmetProvider>
    );
    if (!state) throw Error('SSR failed');
    // ...

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by CircleCI, a new releaser for @​dr.pogodin/react-helmet since your current version.


Dependabot compatibility score

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 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 npm-production group with 1 update: [@dr.pogodin/react-helmet](https://github.com/birdofpreyru/react-helmet).


Updates `@dr.pogodin/react-helmet` from 3.1.1 to 3.2.2
- [Release notes](https://github.com/birdofpreyru/react-helmet/releases)
- [Changelog](https://github.com/birdofpreyru/react-helmet/blob/master/CHANGELOG.md)
- [Commits](birdofpreyru/react-helmet@v3.1.1...v3.2.2)

---
updated-dependencies:
- dependency-name: "@dr.pogodin/react-helmet"
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Dependencies security Security labels May 22, 2026
@dependabot dependabot Bot requested a review from mnaimfaizy as a code owner May 22, 2026 06:20
@dependabot dependabot Bot added dependencies Dependencies security Security labels May 22, 2026
@mnaimfaizy mnaimfaizy merged commit 226390a into main May 23, 2026
9 checks passed
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/npm-production-3aceacd713 branch May 23, 2026 06:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependencies security Security

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant