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 #411

Merged
merged 1 commit into from
Oct 21, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 21, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@auth/core (source) ^0.37.0 -> ^0.37.2 age adoption passing confidence
@biomejs/biome (source) 1.9.3 -> 1.9.4 age adoption passing confidence
@cloudflare/workers-types ^4.20241011.0 -> ^4.20241018.0 age adoption passing confidence
@eslint/js (source) ^9.12.0 -> ^9.13.0 age adoption passing confidence
@fastify/static ^8.0.1 -> ^8.0.2 age adoption passing confidence
@mantine/core (source) ^7.13.2 -> ^7.13.3 age adoption passing confidence
@mantine/hooks (source) ^7.13.2 -> ^7.13.3 age adoption passing confidence
@prisma/client (source) ^5.21.0 -> ^5.21.1 age adoption passing confidence
@sentry/vite-plugin (source) ^2.22.5 -> ^2.22.6 age adoption passing confidence
@typescript-eslint/parser (source) ^8.9.0 -> ^8.10.0 age adoption passing confidence
@typescript-eslint/utils (source) ^8.9.0 -> ^8.10.0 age adoption passing confidence
@vitejs/plugin-react (source) ^4.3.2 -> ^4.3.3 age adoption passing confidence
better-sqlite3 ^11.3.0 -> ^11.4.0 age adoption passing confidence
drizzle-orm (source) ^0.35.0 -> ^0.35.2 age adoption passing confidence
eslint (source) ^9.12.0 -> ^9.13.0 age adoption passing confidence
eslint-plugin-vue (source) ^9.29.0 -> ^9.29.1 age adoption passing confidence
execa ^9.4.0 -> ^9.4.1 age adoption passing confidence
lucia (source) ^3.2.1 -> ^3.2.2 age adoption passing confidence
npm-run-all2 ^6.2.3 -> ^6.2.4 age adoption passing confidence
prisma (source) ^5.21.0 -> ^5.21.1 age adoption passing confidence
puppeteer (source) ^23.5.3 -> ^23.6.0 age adoption passing confidence
turbo (source) ^2.1.3 -> ^2.2.1 age adoption passing confidence
typescript-eslint (source) ^8.9.0 -> ^8.10.0 age adoption passing confidence
vike-cloudflare ^0.1.2 -> ^0.1.3 age adoption passing confidence
wrangler (source) ^3.80.4 -> ^3.81.0 age adoption passing confidence

Release Notes

nextauthjs/next-auth (@​auth/core)

v0.37.2

Compare Source

Bugfixes

v0.37.1

Compare Source

Bugfixes

  • providers: conform Entra ID when responding with the wrong issuer (#​11980) (e981e4d)
biomejs/biome (@​biomejs/biome)

v1.9.4

Compare Source

Analyzer
Bug fixes
CLI
Enhancements
  • The --summary reporter now reports parsing diagnostics too. Contributed by @​ematipico

  • Improved performance of GritQL queries by roughly 25-30%. Contributed by @​arendjr

Configuration
Bug fixes
  • Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by @​ematipico
Editors
Formatter
Bug fixes
  • Fix #​4121. Respect line width when printing multiline strings. Contributed by @​ah-yu
JavaScript APIs
Linter
New features
Bug Fixes
  • Biome no longer crashes when it encounters a string that contain a multibyte character (#​4181).

    This fixes a regression introduced in Biome 1.9.3
    The regression affected the following linter rules:

    • nursery/useSortedClasses
    • nursery/useTrimStartEnd
    • style/useTemplate
    • suspicious/noMisleadingCharacterClass

    Contributed by @​Conaclos

  • Fix #​4190, where the rule noMissingVarFunction wrongly reported a variable as missing when used inside a var() function that was a newline. Contributed by @​ematipico

  • Fix #​4041. Now the rule useSortedClasses won't be triggered if className is composed only by inlined variables. Contributed by @​ematipico

  • useImportType and useExportType now report useless inline type qualifiers (#​4178).

    The following fix is now proposed:

    - import type { type A, B } from "";
    + import type { A, B } from "";
    
    - export type { type C, D };
    + export type { C, D };

    Contributed by @​Conaclos

  • useExportType now reports ungrouped export from.

    The following fix is now proposed:

    - export { type A, type B } from "";
    + export type { A, B } from "";

    Contributed by @​Conaclos

  • noVoidTypeReturn now accepts void expressions in return position (#​4173).

    The following code is now accepted:

    function f(): void {
      return void 0;
    }

    Contributed by @​Conaclos

  • noUselessFragments now correctly handles fragments containing HTML escapes (e.g.  ) inside expression escapes { ... } (#​4059).

    The following code is no longer reported:

    function Component() {
      return (
        <div key={index}>{line || <>&nbsp;</>}</div>
      )
    }

    Contributed by @​fireairforce

  • noUnusedFunctionParameters and noUnusedVariables no longer reports a parameter as unused when another parameter has a constructor type with the same parameter name (#​4227).

    In the following code, the name parameter is no longer reported as unused.

    export class Foo {
      bar(name: string, _class: new (name: string) => any) {
        return name
      }
    }

    Contributed by @​Conaclos

  • noUndeclaredDependencies now accepts dependency names with dots. Contributed by @​Conaclos

  • useFilenamingConvention now correctly handles renamed exports (#​4254).

    The rule allows the filename to be named as one of the exports of the module.
    For instance, the file containing the following export can be named Button.

    class Button {}
    export { Button }

    The rule now correctly handles the renaming of an export.
    For example, the file containing the following export can only be named Button.
    Previously the rule expected the file to be named A.

    class A {}
    export { A as Button }

    Contributed by @​Conaclos

  • useConsistentMemberAccessibility now ignore private class members such as #property (#​4276). Contributed by @​Conaclos

  • noUnknownFunction correctly handles calc-size function (#​4212).

    The following code calc-size is no longer reported as unknown:

    .a { height: calc-size(0px); }

    Contributed by @​fireairforce

  • useNamingConvention now allows configuring conventions for readonly index signatures.

Contributed by @​sepruko

  • noDuplicateCustomProperties now correctly handles custom properties and ignores non-custom properties.
    Previously, the rule incorrectly reported duplicates for all properties, including non-custom ones. Contributed by @​togami2864
Parser
Bug Fixes
  • The CSS parser now accepts more emoji in identifiers (#​3627).

    Browsers accept more emoji than the standard allows.
    Biome now accepts these additional emojis.

    The following code is now correctly parsed:

    p {
      ---color: red;
      color: var(--✨-color);
    }

    Contributed by @​Conaclos

  • Add support for parsing typescript's resolution-mode in Import Types(#​2115)

    export type Fs = typeof import('fs', { with: { 'resolution-mode': 'import' } });
    export type TypeFromRequire =
      import("pkg", { with: { "resolution-mode": "require" } }).TypeFromRequire;
    export type TypeFromImport =
      import("pkg", { with: { "resolution-mode": "import" } }).TypeFromImport;

    Contributed by @​fireairforce

cloudflare/workerd (@​cloudflare/workers-types)

v4.20241018.0

Compare Source

eslint/eslint (@​eslint/js)

v9.13.0

Compare Source

Features

Bug Fixes

Documentation

  • abdbfa8 docs: mark LintMessage#nodeType as deprecated (#​19019) (Nitin Kumar)
  • 19e68d3 docs: update deprecated rules type definitions (#​19018) (Nitin Kumar)
  • 7dd402d docs: Update examples of passing multiple values to a CLI option (#​19006) (Milos Djermanovic)
  • 5dcbc51 docs: Add example with side-effect imports to no-restricted-imports (#​18997) (Milos Djermanovic)
  • 1ee87ca docs: Update README (GitHub Actions Bot)
  • 2c3dbdc docs: Use prerendered sponsors for README (#​18988) (Milos Djermanovic)

Chores

fastify/fastify-static (@​fastify/static)

v8.0.2

Compare Source

What's Changed

Full Changelog: fastify/fastify-static@v8.0.1...v8.0.2

mantinedev/mantine (@​mantine/core)

v7.13.3

Compare Source

What's Changed

  • [@mantine/core] Fix cqw, cqh, cqi, cqb, cqmax and cqmin size units not being handled correctly in style props
  • [@mantine/dates] DateTimePicker: Remove defaultValue and value props from timeInputProps types to avoid confusion (#​6959)
  • [@mantine/dropzone] Set data-disabled attribute on the root element if disabled prop is set (#​6946)
  • [@mantine/core] Modal: Fix default Modal.Root transition being different from Modal component (#​6967)
  • [@mantine/core] ColorInput: Fix popoverProps={{ opned: true }} not working (#​6968)
  • [@mantine/charts] Fix valueFormatter prop not working correctly with orientation="vertical" in BarChart, AreaChart and LineChart components (#​6979)
  • [@mantine/core] Popover: Fix onOpen not being called with controlled opened state (#​6981)
  • [@mantine/core] NumberInput: Fix incorrect min prop handling for large numbers (#​6985)
  • [@mantine/dropzone] Add HEIF image mime type (#​6977)
  • [@mantine/core] PasswordInput: Fix cursor shifting when the visibility button is clicked on touch devices (#​6971)

New Contributors

Full Changelog: mantinedev/mantine@7.13.2...7.13.3

prisma/prisma (@​prisma/client)

v5.21.1

Compare Source

  • Fixed a bug where migrations were not using shadow database correctly in some edge cases
getsentry/sentry-javascript-bundler-plugins (@​sentry/vite-plugin)

v2.22.6

Compare Source

  • fix(core): Use sha256 instead of md5 to generate uuids from string (#​619)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.10.0

Compare Source

🚀 Features
❤️ Thank You
  • Josh Goldberg ✨

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

typescript-eslint/typescript-eslint (@​typescript-eslint/utils)

v8.10.0

Compare Source

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

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

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.3

Compare Source

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @&#8203;babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@&#8203;babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})
WiseLibs/better-sqlite3 (better-sqlite3)

v11.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v11.3.0...v11.4.0

drizzle-team/drizzle-orm (drizzle-orm)

v0.35.2

Compare Source

  • Fix issues with importing in several environments after updating the Drizzle driver implementation

We've added approximately 240 tests to check the ESM and CJS builds for all the drivers we have. You can check them here

v0.35.1

Compare Source

  • Updated internal versions for the drizzle-kit and drizzle-orm packages. Changes were introduced in the last minor release, and you are required to upgrade both packages to ensure they work as expected
eslint/eslint (eslint)

v9.13.0

Compare Source

vuejs/eslint-plugin-vue (eslint-plugin-vue)

v9.29.1

Compare Source

sindresorhus/execa (execa)

v9.4.1

Compare Source

Bug fixes
bcomnes/npm-run-all2 (npm-run-all2)

v6.2.4

Compare Source

Merged
  • Switch to JS-based which command #154
Fixed
  • Switch to JS-based which command #153
puppeteer/puppeteer (puppeteer)

v23.6.0: puppeteer: v23.6.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 23.5.3 to 23.6.0
vercel/turborepo (turbo)

v2.2.1

Compare Source

v2.2.0: Turborepo v2.2.0

Compare Source

What's Changed

Docs
@​turbo/repository
Examples
Changelog

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.

@magne4000 magne4000 merged commit 9487662 into main Oct 21, 2024
12 checks passed
@magne4000 magne4000 deleted the renovate/all-minor-patch branch October 21, 2024 08:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant