[go: up one dir, main page]

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 the remix group with 4 updates #421

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

Conversation

dependabot[bot]
Copy link
Contributor
@dependabot dependabot bot commented on behalf of github Nov 25, 2024

Bumps the remix group with 4 updates: @remix-run/node, @remix-run/react, @remix-run/serve and @remix-run/dev.

Updates @remix-run/node from 2.13.1 to 2.15.0

Release notes

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

v2.15.0

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

v2.14.0

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

Changelog

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

2.15.0

Patch Changes

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

2.14.0

Patch Changes

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

Updates @remix-run/react from 2.13.1 to 2.15.0

Release notes

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

v2.15.0

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

v2.14.0

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

Changelog

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

2.15.0

Patch Changes

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

2.14.0

Patch Changes

  • Fix defaultShouldRevalidate value when using single fetch (#10139)
  • Updated dependencies:
    • @remix-run/server-runtime@2.14.0
Commits

Updates @remix-run/serve from 2.13.1 to 2.15.0

Release notes

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

v2.15.0

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

v2.14.0

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

Changelog

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

2.15.0

Patch Changes

  • Updated dependencies:
    • @remix-run/express@2.15.0
    • @remix-run/node@2.15.0

2.14.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@2.14.0
    • @remix-run/express@2.14.0
Commits

Updates @remix-run/dev from 2.13.1 to 2.15.0

Release notes

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

v2.15.0

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

v2.14.0

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

Changelog

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

2.15.0

Patch Changes

  • Stabilize the future.v3_routeConfig future flag, replacing future.unstable_routeConfig. This enables support for routes.ts to assist with the migration to React Router v7. (#10236)

    Note that if you had already enabled the future.unstable_routeConfig flag, your route config in app/routes.ts is no longer defined via the routes export and must now be defined via the default export.

    import { type RouteConfig } from "@remix-run/route-config";
    -export const routes: RouteConfig = [];
    +export default [] satisfies RouteConfig;

  • Updated dependencies:

    • @remix-run/node@2.15.0
    • @remix-run/server-runtime@2.15.0

2.14.0

Minor Changes

  • Add support for routes.ts behind future.unstable_routeConfig flag to assist with the migration to React Router v7. (#10107)

    Config-based routing is the new default in React Router v7, configured via the routes.ts file in the app directory. Support for routes.ts and its related APIs in Remix are designed as a migration path to help minimize the number of changes required when moving your Remix project over to React Router v7. While some new packages have been introduced within the @remix-run scope, these new packages only exist to keep the code in routes.ts as similar as possible to the equivalent code for React Router v7.

    When the unstable_routeConfig future flag is enabled, Remix's built-in file system routing will be disabled and your project will opted into React Router v7's config-based routing.

    To enable the flag, in your vite.config.ts file:

    remix({
      future: {
        unstable_routeConfig: true,
      },
    });

    A minimal routes.ts file to support Remix's built-in file system routing looks like this:

    // app/routes.ts
    import { flatRoutes } from "@remix-run/fs-routes";
    import type { RouteConfig } from "@remix-run/route-config";
    export const routes: RouteConfig = flatRoutes();

  • Log deprecation warnings for v3 future flags (#10126)

... (truncated)

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 <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 remix group with 4 updates: [@remix-run/node](https://github.com/remix-run/remix/tree/HEAD/packages/remix-node), [@remix-run/react](https://github.com/remix-run/remix/tree/HEAD/packages/remix-react), [@remix-run/serve](https://github.com/remix-run/remix/tree/HEAD/packages/remix-serve) and [@remix-run/dev](https://github.com/remix-run/remix/tree/HEAD/packages/remix-dev).


Updates `@remix-run/node` from 2.13.1 to 2.15.0
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-node/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/node@2.15.0/packages/remix-node)

Updates `@remix-run/react` from 2.13.1 to 2.15.0
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-react/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/react@2.15.0/packages/remix-react)

Updates `@remix-run/serve` from 2.13.1 to 2.15.0
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-serve/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/serve@2.15.0/packages/remix-serve)

Updates `@remix-run/dev` from 2.13.1 to 2.15.0
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-dev/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/dev@2.15.0/packages/remix-dev)

---
updated-dependencies:
- dependency-name: "@remix-run/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: remix
- dependency-name: "@remix-run/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: remix
- dependency-name: "@remix-run/serve"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: remix
- dependency-name: "@remix-run/dev"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: remix
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 25, 2024
Copy link
vercel bot commented Nov 25, 2024

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

Name Status Preview Comments Updated (UTC)
content-collections ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 25, 2024 5:48pm

Copy link
changeset-bot bot commented Nov 25, 2024

⚠️ No Changeset found

Latest commit: 200d423

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
pkg-pr-new bot commented Nov 25, 2024

Open in Stackblitz

content-collections

npm i https://pkg.pr.new/sdorra/content-collections@421

@content-collections/cli

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/cli@421

@content-collections/installer

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/installer@421

@content-collections/core

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/core@421

@content-collections/integrations

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/integrations@421

@content-collections/markdown

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/markdown@421

@content-collections/mdx

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/mdx@421

@content-collections/next

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/next@421

@content-collections/remix-vite

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/remix-vite@421

@content-collections/solid-start

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/solid-start@421

@content-collections/vite

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/vite@421

commit: 200d423

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants