An open index of dependabot pull requests across open source projects.

Bump the production-dependencies group across 1 directory with 5 updates

Closed
Number: #8
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 1
Created: May 12, 2025 at 02:33 PM UTC
(4 months ago)
Updated: May 14, 2025 at 09:12 PM UTC
(4 months ago)
Closed: May 14, 2025 at 09:12 PM UTC
(4 months ago)
Time to Close: 2 days
Labels:
dependencies javascript
Description:

Bumps the production-dependencies group with 5 updates in the / directory:

Package From To
bootstrap 5.3.5 5.3.6
msw 2.7.5 2.8.2
react-bootstrap 2.10.9 2.10.10
react-router 7.5.3 7.6.0
self-assert 0.7.2 1.0.2

Updates bootstrap from 5.3.5 to 5.3.6

Release notes

Sourced from bootstrap's releases.

v5.3.6

Highlights

  • Ported the docs from Hugo to Astro for our own sanity!
  • Added usage docs for Accordion JavaScript
  • Prevent .visually-hidden overflowing children to become focusable
  • Limit .card-group selectors to immediate children to fix some inheritance issues

Changes

New Contributors

... (truncated)

Commits

Updates msw from 2.7.5 to 2.8.2

Release notes

Sourced from msw's releases.

v2.8.2 (2025-05-09)

Bug Fixes

v2.8.1 (2025-05-09)

Bug Fixes

  • do not append .mjs to .d.ts core imports (#2496) (6ae6b2930da292a4fb6cdd00c572bf9b4aaa1383) @​kettanaito

v2.8.0 (2025-05-08)

Features

v2.7.6 (2025-05-05)

Bug Fixes

Commits
  • 9eec979 chore(release): v2.8.2
  • 6d3013c fix: catch postinstall errors (#2498)
  • b71d329 chore: deprecate node@18 internally (#2494)
  • 96384d6 chore(release): v2.8.1
  • 6ae6b29 fix: do not append .mjs to .d.ts core imports (#2496)
  • 59b98dd chore(release): v2.8.0
  • 3fce594 feat: support typescript 5.6 - 5.8 (#2493)
  • 17d553b feat: migrate to ESM internally, remain CJS-first (#2490)
  • 0cc656a feat(SetupServerApi): allow using custom interceptors (#2464)
  • 50ce6a4 feat(HttpResponse): support explicitly empty response body via null type ar...
  • Additional commits viewable in compare view

Updates react-bootstrap from 2.10.9 to 2.10.10

Release notes

Sourced from react-bootstrap's releases.

v2.10.10

2.10.10 (2025-05-11)

Bug Fixes

Changelog

Sourced from react-bootstrap's changelog.

2.10.10 (2025-05-11)

Bug Fixes

Commits

Updates react-router from 7.5.3 to 7.6.0

Release notes

Sourced from react-router's releases.

v7.6.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v760

Changelog

Sourced from react-router's changelog.

7.6.0

Minor Changes

  • Added a new react-router.config.ts routeDiscovery option to configure Lazy Route Discovery behavior. (#13451)

    • By default, Lazy Route Discovery is enabled and makes manifest requests to the /__manifest path:
      • routeDiscovery: { mode: "lazy", manifestPath: "/__manifest" }
    • You can modify the manifest path used:
      • routeDiscovery: { mode: "lazy", manifestPath: "/custom-manifest" }
    • Or you can disable this feature entirely and include all routes in the manifest on initial document load:
      • routeDiscovery: { mode: "initial" }
  • Add support for route component props in createRoutesStub. This allows you to unit test your route components using the props instead of the hooks: (#13528)

    let RoutesStub = createRoutesStub([
      {
        path: "/",
        Component({ loaderData }) {
          let data = loaderData as { message: string };
          return <pre data-testid="data">Message: {data.message}</pre>;
        },
        loader() {
          return { message: "hello" };
        },
      },
    ]);
    

    render(<RoutesStub />);

    await waitFor(() => screen.findByText("Message: hello"));

Patch Changes

  • Fix react-router module augmentation for NodeNext (#13498)

  • Don't bundle react-router in react-router/dom CJS export (#13497)

  • Fix bug where a submitting fetcher would get stuck in a loading state if a revalidating loader redirected (#12873)

  • Fix hydration error if a server loader returned undefined (#13496)

  • Fix initial load 404 scenarios in data mode (#13500)

  • Stabilize useRevalidator's revalidate function (#13542)

  • Preserve status code if a clientAction throws a data() result in framework mode (#13522)

... (truncated)

Commits
  • c29148e chore: Update version for release (#13561)
  • 3adc571 chore: Update version for release (pre) (#13545)
  • 0fe5d6d Fix middleware error bubbling scenarios (#13538)
  • 1678d41 feat(react-router): stabilize useRevalidator's revalidate (#13542)
  • 5af3eaa Add component props support to createRoutesStub (#13528)
  • 4e427a3 Short circuit dataStrategy post processing on aborted requests (#13521)
  • 7583dc7 Preserve status code on clientAction throw data() results (#13522)
  • 26ecf2f Fix fetcher state stuck on loading if a loader redirects (#12873)
  • 5a966cb Inline turbo-stream@2.4.1 and fix decode ordering of Map/Set instances (#13518)
  • eb59d5f feat(react-router): don't bundle react-router in react-router/dom export ...
  • Additional commits viewable in compare view

Updates self-assert from 0.7.2 to 1.0.2

Release notes

Sourced from self-assert's releases.

self-assert: v1.0.2

1.0.2 (2025-05-10)

Bug Fixes

  • permissions on release workflow (95caa28)
  • removed old changelog notes (8eab3cb)

Reverts

  • 1.0.2 changelog notes (c764eb2)
  • version 1.0.2 of self-assert (f712847)
Changelog

Sourced from self-assert's changelog.

1.0.2 (2025-05-10)

Bug Fixes

  • permissions on release workflow (95caa28)
  • removed old changelog notes (8eab3cb)

Reverts

  • 1.0.2 changelog notes (c764eb2)
  • version 1.0.2 of self-assert (f712847)
Commits
  • 5c81798 chore(main): release self-assert 1.0.2 (#75)
  • d62797d update .release-please-manifest.json, CHANGELOG.md and package.json
  • fb50da1 chore(main): release self-assert 1.0.2 (#73)
  • 95caa28 fix: permissions on release workflow
  • 973f0dd chore(main): release self-assert 1.0.2 (#72)
  • bc34e92 docs: update CHANGELOG.md
  • c764eb2 revert: 1.0.2 changelog notes
  • f712847 revert: version 1.0.2 of self-assert
  • 21f135e chore(main): release self-assert 1.0.2 (#71)
  • 8eab3cb fix: removed old changelog notes
  • Additional commits viewable 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
Pull Request Statistics
Commits:
0
Files Changed:
0
Additions:
+0
Deletions:
-0
Package Dependencies
Ecosystem:
npm
Version Change:
7.5.3 → 7.6.0
Update Type:
Minor
Package:
msw
Ecosystem:
npm
Version Change:
2.7.5 → 2.8.2
Update Type:
Minor
Package:
bootstrap
Ecosystem:
npm
Version Change:
5.3.5 → 5.3.6
Update Type:
Patch
Ecosystem:
npm
Version Change:
2.10.9 → 2.10.10
Update Type:
Patch
Package:
self-assert
Ecosystem:
npm
Version Change:
0.7.2 → 1.0.2
Update Type:
Major
Technical Details
ID: 278912
UUID: 3057195906
Node ID: PR_kwDOOaQaYM6V2bZw
Host: GitHub
Repository: self-assert/self-assert-react-demo