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

fix(deps): update all non-major dependencies #175

Merged
merged 1 commit into from
Aug 20, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 29, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@remix-run/css-bundle (source) 2.10.3 -> 2.11.2 age adoption passing confidence
@remix-run/dev (source) 2.10.3 -> 2.11.2 age adoption passing confidence
@remix-run/eslint-config (source) 2.10.3 -> 2.11.2 age adoption passing confidence
@remix-run/express (source) 2.10.3 -> 2.11.2 age adoption passing confidence
@remix-run/node (source) 2.10.3 -> 2.11.2 age adoption passing confidence
@remix-run/react (source) 2.10.3 -> 2.11.2 age adoption passing confidence
@remix-run/serve (source) 2.10.3 -> 2.11.2 age adoption passing confidence
@remix-run/server-runtime (source) 2.10.3 -> 2.11.2 age adoption passing confidence
@swc/core (source) 1.7.0 -> 1.7.11 age adoption passing confidence
@vercel/remix (source) 2.10.2 -> 2.11.2 age adoption passing confidence
esbuild 0.23.0 -> 0.23.1 age adoption passing confidence
eslint (source) 9.7.0 -> 9.9.0 age adoption passing confidence
globals 15.8.0 -> 15.9.0 age adoption passing confidence
lucide-react (source) ^0.412.0 -> ^0.428.0 age adoption passing confidence
pnpm (source) 9.5.0 -> 9.7.1 age adoption passing confidence

Release Notes

remix-run/remix (@​remix-run/css-bundle)

v2.11.2

Compare Source

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.

v2.11.1

Compare Source

v2.11.0

Compare Source

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.

remix-run/remix (@​remix-run/dev)

v2.11.2

Compare Source

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

v2.11.1

Compare Source

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

v2.11.0

Compare Source

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
remix-run/remix (@​remix-run/eslint-config)

v2.11.2

Compare Source

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.

v2.11.1

Compare Source

v2.11.0

Compare Source

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.

remix-run/remix (@​remix-run/express)

v2.11.2

Compare Source

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

v2.11.1

Compare Source

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

v2.11.0

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/node@2.11.0
remix-run/remix (@​remix-run/node)

v2.11.2

Compare Source

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

v2.11.1

Compare Source

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

v2.11.0

Compare Source

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
remix-run/remix (@​remix-run/react)

v2.11.2

Compare Source

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

v2.11.1

Compare Source

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

v2.11.0

Compare Source

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
  • Single Fetch: Ensure calls don't include any trailing slash from the pathname (i.e., /path/.data) (#​9792)
  • Single Fetch: Add undefined to the useRouteLoaderData type override (#​9796)
  • Change initial hydration route mismatch from a URL check to a matches check to be resistant to URL inconsistencies (#​9695)
  • Updated dependencies:
    • @remix-run/server-runtime@2.11.0
remix-run/remix (@​remix-run/serve)

v2.11.2

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/node@2.11.2
    • @remix-run/express@2.11.2

v2.11.1

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/node@2.11.1
    • @remix-run/express@2.11.1

v2.11.0

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/node@2.11.0
    • @remix-run/express@2.11.0
remix-run/remix (@​remix-run/server-runtime)

v2.11.2

Compare Source

Patch Changes
  • Single Fetch: Fix redirects when a basename is present (#​9848)
  • 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

v2.11.1

Compare Source

Patch Changes

v2.11.0

Compare Source

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
  • Change initial hydration route mismatch from a URL check to a matches check to be resistant to URL inconsistencies (#​9695)
swc-project/swc (@​swc/core)

v1.7.11

Compare Source

Bug Fixes
Features
  • (es/typescript) Add native_class_properties to skip reordering of class properties inits (#​9421) (d2929d1)

  • (estree/compat) Remove dependency on rayon (#​9393) (34d1b27)

  • (html/minifier) Support using custom css minifier (#​9425) (970cc81)

Miscellaneous Tasks

v1.7.10

Compare Source

Bug Fixes
  • (es/typescript) Strip optional mark and definite mark (#​9411) (8c161a0)

  • (es/typescript) Strip exported default overload function declaration (#​9412) (b395f48)

  • (es/typescript) Strip this param in getter/setter (#​9414) (442fb7b)

  • (es/typescript) Update ts-strip type definition (#​9415) (165c8fa)

v1.7.9

Compare Source

Bug Fixes

v1.7.6

Compare Source

Bug Fixes
  • (es/codegen) Print the missing abstract in class expression (#​9372) (c2e3021)

  • (es/decorators) Use correct class name reference (#​9375) (badd6a9)

  • (es/typescript) Strip declare export in strip-only mode (#​9374) (c53cce4)

v1.7.5

Compare Source

Bug Fixes
Miscellaneous Tasks

v1.7.4

Compare Source

Bug Fixes
Documentation
Miscellaneous Tasks

v1.7.3

Compare Source

Bug Fixes

v1.7.2

Compare Source

Bug Fixes
Documentation
  • (bindings/wasm) Document supported TypeScript version (#​9334) (66f31c0)

v1.7.1

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Performance
Refactor
Build

v1.7.0

Compare Source

Bug Fixes
Documentation
  • (allocator) Mention oxc_allocator (be99ce0)

  • (contributing) Fix deno installation url (#​9249) (ff5bbda)

  • (es/minifier) Add contributing section (e22f3ba)

Features
Miscellaneous Tasks
Performance
Refactor
Testing
Pers

v1.6.13

Compare Source

Bug Fixes
Features
Testing

v1.6.12

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Jul 29, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
remix-gospel-stack-nextjs-app ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 20, 2024 1:41am

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f5d3bac to fd1451c Compare July 29, 2024 22:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fd1451c to c13fc5a Compare July 30, 2024 19:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c13fc5a to bf64382 Compare July 31, 2024 11:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bf64382 to 9dafa7b Compare August 1, 2024 19:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9dafa7b to 5c236c4 Compare August 3, 2024 18:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5c236c4 to d32137e Compare August 4, 2024 11:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d32137e to fb6c3cf Compare August 4, 2024 17:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fb6c3cf to 2e9f57e Compare August 4, 2024 22:36
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Aug 4, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2e9f57e to 11d99e0 Compare August 5, 2024 07:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 11d99e0 to 5ca6bc1 Compare August 5, 2024 11:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5ca6bc1 to 3b95622 Compare August 7, 2024 07:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3b95622 to b3eec51 Compare August 9, 2024 02:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b3eec51 to 8dba0e6 Compare August 10, 2024 00:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8dba0e6 to 69fbc63 Compare August 11, 2024 15:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 884949d to 82200a6 Compare August 20, 2024 01:40
@PhilDL PhilDL merged commit d8ddb0f into main Aug 20, 2024
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant