nasa-gcn / gcn.nasa.gov

General Coordinates Network (GCN) web site
https://gcn.nasa.gov
Other
179 stars 43 forks source link

Bump the remix group with 6 updates #2571

Closed dependabot[bot] closed 4 days ago

dependabot[bot] commented 1 week ago

Bumps the remix group with 6 updates:

Package From To
@remix-run/architect 2.10.3 2.11.2
@remix-run/css-bundle 2.10.3 2.11.2
@remix-run/node 2.10.3 2.11.2
@remix-run/react 2.10.3 2.11.2
@remix-run/dev 2.10.3 2.11.2
@remix-run/eslint-config 2.10.3 2.11.2

Updates @remix-run/architect from 2.10.3 to 2.11.2

Release notes

Sourced from @​remix-run/architect's releases.

v2.11.2

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

v2.11.1

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

v2.11.0

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

Changelog

Sourced from @​remix-run/architect's changelog.

2.11.2

Patch Changes

  • Updated dependencies:
    • @remix-run/node@2.11.2

2.11.1

Patch Changes

  • Updated dependencies:
    • @remix-run/node@2.11.1

2.11.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@2.11.0
Commits


Updates @remix-run/css-bundle from 2.10.3 to 2.11.2

Release notes

Sourced from @​remix-run/css-bundle's releases.

v2.11.2

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

v2.11.1

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

v2.11.0

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

Changelog

Sourced from @​remix-run/css-bundle's changelog.

2.11.2

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.11.2.

2.11.1

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.11.1.

2.11.0

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.11.0.

Commits


Updates @remix-run/node from 2.10.3 to 2.11.2

Release notes

Sourced from @​remix-run/node's releases.

v2.11.2

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

v2.11.1

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

v2.11.0

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

Changelog

Sourced from @​remix-run/node's changelog.

2.11.2

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.11.2

2.11.1

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.11.1

2.11.0

Minor Changes

  • Single Fetch: Add a new unstable_data() API as a replacement for json/defer when custom status/headers are needed (#9769)
  • Add a new replace(url, init?) alternative to redirect(url, init?) that performs a history.replaceState instead of a history.pushState on client-side navigation redirects (#9764)

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.11.0
Commits


Updates @remix-run/react from 2.10.3 to 2.11.2

Release notes

Sourced from @​remix-run/react's releases.

v2.11.2

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

v2.11.1

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

v2.11.0

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

Changelog

Sourced from @​remix-run/react's changelog.

2.11.2

Patch Changes

  • Fog of War: Simplify implementation now that React Router handles slug/splat edge cases and tracks previously discovered routes (see remix-run/react-router#11883) (#9860)
    • This changes the return signature of the internal __manifest endpoint since we no longer need the notFoundPaths field
  • Fog of War: Update to use renamed unstable_patchRoutesOnNavigation function in RR (see remix-run/react-router#11888) (#9860)
  • Single Fetch: Update turbo-stream to v2.3.0 (#9856)
    • Stabilize object key order for serialized payloads
    • Remove memory limitations payloads sizes
  • Updated dependencies:
    • @remix-run/server-runtime@2.11.2

2.11.1

Patch Changes

  • Revert #9695, stop infinite reload (a7cffe57)
  • Updated dependencies:
    • @remix-run/server-runtime@2.11.1

2.11.0

Minor Changes

  • Single Fetch: Add a new unstable_data() API as a replacement for json/defer when custom status/headers are needed (#9769)

  • Add a new replace(url, init?) alternative to redirect(url, init?) that performs a history.replaceState instead of a history.pushState on client-side navigation redirects (#9764)

  • Rename future.unstable_fogOfWar to future.unstable_lazyRouteDiscovery for clarity (#9763)

  • Single Fetch: Remove responseStub in favor of headers (#9769)

    • Background

      • The original Single Fetch approach was based on an assumption that an eventual middleware implementation would require something like ResponseStub so users could mutate status/headers in middleware before/after handlers as well as during handlers
      • We wanted to align how headers got merged between document and data requests
      • So we made document requests also use ResponseStub and removed the usage of headers in Single Fetch
      • The realization/alignment between Michael and Ryan on the recent roadmap planning made us realize that the original assumption was incorrect
      • middleware won't need a stub - users can just mutate the Response they get from await next() directly
      • With that gone, and still wanting to align how headers get merged, it makes more sense to stick with the current headers API and apply that to Single Fetch and avoid introducing a totally new thing in RepsonseStub (that always felt a bit awkward to work with anyway)
    • With this change:

      • You are encouraged to stop returning Response instances in favor of returning raw data from loaders and actions:
        • return json({ data: whatever });
        • return { data: whatever };
      • In most cases, you can remove your json() and defer() calls in favor of returning raw data if they weren't setting custom status/headers
        • We will be removing both json and defer in the next major version, but both should still work in Single Fetch in v2 to allow for incremental adoption of the new behavior
      • If you need custom status/headers:
        • We've added a new unstable_data({...}, responseInit) utility that will let you send back status/headers alongside your raw data without having to encode it into a Response
      • The headers() function will let you control header merging for both document and data requests

Patch Changes

... (truncated)

Commits


Updates @remix-run/dev from 2.10.3 to 2.11.2

Release notes

Sourced from @​remix-run/dev's releases.

v2.11.2

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

v2.11.1

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

v2.11.0

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

Changelog

Sourced from @​remix-run/dev's changelog.

2.11.2

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.11.2
    • @remix-run/node@2.11.2

2.11.1

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.11.1
    • @remix-run/node@2.11.1

2.11.0

Minor Changes

  • Rename future.unstable_fogOfWar to future.unstable_lazyRouteDiscovery for clarity (#9763)

Patch Changes

  • Handle absolute Vite base URLs (#9700)
  • Updated dependencies:
    • @remix-run/node@2.11.0
    • @remix-run/server-runtime@2.11.0
Commits


Updates @remix-run/eslint-config from 2.10.3 to 2.11.2

Release notes

Sourced from @​remix-run/eslint-config's releases.

v2.11.2

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

v2.11.1

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

v2.11.0

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

Changelog

Sourced from @​remix-run/eslint-config's changelog.

2.11.2

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.11.2.

2.11.1

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.11.1.

2.11.0

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.11.0.

Commits


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
lpsinger commented 1 week ago

Blocked by #2564.

dependabot[bot] commented 4 days ago

Superseded by #2575.