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

chore(deps): update all non-major dependencies #198

Merged
merged 1 commit into from
Nov 22, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@eslint/eslintrc 3.1.0 -> 3.2.0 age adoption passing confidence
@remix-run/css-bundle (source) 2.13.1 -> 2.14.0 age adoption passing confidence
@remix-run/dev (source) 2.13.1 -> 2.14.0 age adoption passing confidence
@remix-run/node (source) 2.13.1 -> 2.14.0 age adoption passing confidence
@remix-run/react (source) 2.13.1 -> 2.14.0 age adoption passing confidence
@remix-run/serve (source) 2.13.1 -> 2.14.0 age adoption passing confidence
@remix-run/server-runtime (source) 2.13.1 -> 2.14.0 age adoption passing confidence
@vercel/remix (source) 2.13.1 -> 2.14.0 age adoption passing confidence
eslint (source) 9.14.0 -> 9.15.0 age adoption passing confidence
eslint-plugin-import-x 4.4.0 -> 4.4.2 age adoption passing confidence
lucide-react (source) ^0.454.0 -> ^0.460.0 age adoption passing confidence
pnpm (source) 9.12.3 -> 9.13.2 age adoption passing confidence
typescript-eslint (source) 8.13.0 -> 8.15.0 age adoption passing confidence

Release Notes

eslint/eslintrc (@​eslint/eslintrc)

v3.2.0

Compare Source

Features
  • merge rule.meta.defaultOptions before validation (#​166) (d02f914)
remix-run/remix (@​remix-run/css-bundle)

v2.14.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.14.0.

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

v2.14.0

Compare Source

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)

    • Add @deprecated annotations to json/defer utilities
Patch Changes
remix-run/remix (@​remix-run/node)

v2.14.0

Compare Source

Patch Changes
remix-run/remix (@​remix-run/react)

v2.14.0

Compare Source

Patch Changes
remix-run/remix (@​remix-run/serve)

v2.14.0

Compare Source

Patch Changes
remix-run/remix (@​remix-run/server-runtime)

v2.14.0

Compare Source

Minor Changes
  • Deprecate SerializeFrom in favor of generics because it will be removed in React Router v7 (#​10173)
Patch Changes
  • Update externally-accessed resource routes warning to cover null usage as well (#​10145)
vercel/remix (@​vercel/remix)

v2.14.0

Date: 2024-11-08

Minor Changes
  • Deprecate SerializeFrom in favor of generics because it will be removed in React Router v7 (#​10173)

  • Add deprecation warning to @remix-run/eslint-config (#​10174)

  • 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)

    • Add @deprecated annotations to json/defer utilities
Patch Changes
  • Fix defaultShouldRevalidate value when using single fetch (#​10139)
  • Update externally-accessed resource routes warning to cover null usage as well (#​10145)
Updated Dependencies
Changes by Package

Full Changelog: v2.13.1...v2.14.0

eslint/eslint (eslint)

v9.15.0

Compare Source

un-ts/eslint-plugin-import-x (eslint-plugin-import-x)

v4.4.2

Compare Source

Patch Changes
lucide-icons/lucide (lucide-react)

v0.460.0: New icons 0.460.0

Compare Source

New icons 🎨

v0.459.0: New icons 0.459.0

Compare Source

New icons 🎨

v0.458.0: New icons 0.458.0

Compare Source

New icons 🎨

Modified Icons 🔨

Other Changes

Full Changelog: lucide-icons/lucide@0.457.0...0.458.0

v0.457.0: New icons 0.457.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.456.0: Choosing import name style 0.456.0

Compare Source

What's Changed

Adjustable icon naming imports

Customize import name styles for lucide-react, lucide-vue, lucide-react-native, lucide-preact, to manage autocompletion in your IDE.

  1. Turn off autocomplete in your IDE:
    Add the following to your settings.json
{
  "typescript.preferences.autoImportFileExcludePatterns": [
    "lucide-react",
    "lucide-preact",
    "lucide-react-native",
    "lucide-vue-next"
  ]
}
  1. Create a custom module declaration file:

It allows you to choose the import name style.

For React:

declare module "lucide-react" {
  // Prefixed import names
  export * from "lucide-react/dist/lucide-react.prefixed";
  // or
  // Suffixed import names
  export * from "lucide-react/dist/lucide-react.suffixed";
}

For Vue:

declare module "lucide-vue-next" {
  // Prefixed import names
  export * from "lucide-vue-next/dist/lucide-vue-next.prefixed";
  // or
  // Suffixed import names
  export * from "lucide-vue-next/dist/lucide-vue-next.suffixed";
}

v0.455.0: New icons 0.455.0

Compare Source

New icons 🎨

Modified Icons 🔨

pnpm/pnpm (pnpm)

v9.13.2: pnpm 9.13.2

Compare Source

Patch Changes

  • Detection of circular peer dependencies should not crash with aliased dependencies #​8759. Fixes a regression introduced in the previous version.
  • Fix race condition of symlink creations caused by multiple parallel dlx processes.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

Silver Sponsors

Leniolabs_ Vercel
Depot moonrepo
devowl.io Cerbos
vlt Vite

v9.13.1: pnpm 9.13.1

Compare Source

Patch Changes

  • Fixed some edge cases where resolving circular peer dependencies caused a dead lock #​8720.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

Silver Sponsors

Leniolabs_ Vercel
Depot moonrepo
devowl.io Cerbos
vlt Vite

v9.13.0: pnpm 9.13

Compare Source

Minor Changes

  • The self-update now accepts a version specifier to install a specific version of pnpm. E.g.:

    pnpm self-update 9.5.0
    

    or

    pnpm self-update next-10
    

Patch Changes

  • Fix Cannot read properties of undefined (reading 'name') that is printed while trying to render the missing peer dependencies warning message #​8538.

Platinum Sponsors

Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

Silver Sponsors

Leniolabs_ Vercel
Depot moonrepo
devowl.io Cerbos
vlt Vite
typescript-eslint/typescript-eslint (typescript-eslint)

v8.15.0

Compare Source

🚀 Features
  • typescript-eslint: allow infinitely deep array nesting in config function and extends (#​10333)
  • eslint-plugin: new rule no-unsafe-type-assertion (#​10051)
  • eslint-plugin: added related-getter-setter-pairs rule (#​10192)
🩹 Fixes
  • add missing peer dependencies (#​9744)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.14.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.


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 is behind base branch, 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 Nov 18, 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 Nov 21, 2024 8:05pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ebe91fb to 639aa49 Compare November 18, 2024 11:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 639aa49 to a2dd6f9 Compare November 18, 2024 13:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a2dd6f9 to 01821b1 Compare November 18, 2024 20:07
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Nov 18, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 01821b1 to 98b0ebd Compare November 21, 2024 20:04
@PhilDL PhilDL merged commit 2ff876a into main Nov 22, 2024
8 checks passed
@PhilDL PhilDL deleted the renovate/all-minor-patch branch November 22, 2024 18:17
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