Skip to content

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

Merged
renovate[bot] merged 1 commit intomasterfrom
renovate/all-minor-patch
Feb 7, 2026
Merged

chore(deps): update all non-major dependencies#73
renovate[bot] merged 1 commit intomasterfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 28, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) ^2.3.13^2.3.14 age confidence
@cloudflare/workers-types ^4.20241018.0^4.20260207.0 age confidence
@scalar/hono-api-reference (source) ^0.9.39^0.9.40 age confidence
@​upstash/ratelimit ^2.0.3^2.0.8 age confidence
@upstash/redis ^1.34.3^1.36.2 age confidence
bun-types (source) ^1.1.31^1.3.8 age confidence
hono (source) ^4.6.5^4.11.8 age confidence
husky ^9.1.6^9.1.7 age confidence
prettier (source) ^3.3.3^3.8.1 age confidence
typescript (source) ^5.6.3^5.9.3 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v2.3.14

Compare Source

Patch Changes
  • #​8921 29e2435 Thanks @​siketyan! - Fixed #​8759: The useConsistentTypeDefinitions rule no longer converts empty object type declarations into interfaces, as it will conflict with the noEmptyInterface rule and can cause an infinite loop when both rules are enabled.

  • #​8928 ccaeac4 Thanks @​taga3s! - Added the nursery rule useGlobalThis. This rule enforces using globalThis over window, self and global.

  • #​8602 9a18daa Thanks @​dyc3! - Added the new nursery rule noVueArrowFuncInWatch. This rule forbids using arrow functions in watchers in Vue components, because arrow functions do not give access to the component instance (via this), while regular functions do.

  • #​8905 9b1eea8 Thanks @​ryan-m-walker! - Fixed #​8428: Improved parsing recovery when encountering qualified rules inside CSS @page at-rule blocks.

  • #​8900 f788cff Thanks @​mdevils! - Fixed #​8802: useExhaustiveDependencies now correctly suggests dependencies without including callback-scoped variables or method names.

    When accessing object properties with a callback-scoped variable, only the object path is suggested:

    // Now correctly suggests `props.value` instead of `props.value[day]`
    useMemo(() => {
      return WeekdayValues.filter((day) => props.value[day]);
    }, [props.value]);

    When calling methods on objects, only the object is suggested as a dependency:

    // Now correctly suggests `props.data` instead of `props.data.forEach`
    useMemo(() => {
      props.data.forEach((item) => console.log(item));
    }, [props.data]);
  • #​8913 e1e20ea Thanks @​dyc3! - Fixed #​8363: HTML parser no longer crashes when encountering a < character followed by a digit in text content (e.g., <12 months). The parser now correctly emits an "Unescaped < bracket character" error instead of treating <12 as a tag name and crashing.

  • #​8910 2fb63a4 Thanks @​dyc3! - Fixed #​8774: Type aliases with generic parameters that have extends constraints now properly indent comments after the equals sign.

    Previously, comments after the = in type aliases with extends constraints were not indented:

    -type A<B, C extends D> = // Some comment
    -undefined;
    +type A<B, C extends D> =
    +    // Some comment
    +    undefined;
  • #​8916 ea4bd04 Thanks @​ryan-m-walker! - Fixed #​4013, where comments in member chains caused unnecessary line breaks.

    // Before
    aFunction.b().c.d();
    
    // After
    aFunction.b().c.d();
  • #​8945 fa66fe3 Thanks @​fireairforce! - Fixed #​8354: Don't remove quotes when type memeber is new.

    // Input:
    type X = {
      "new"(): string;
      "foo"(): string;
    };
    
    // Format Output:
    type X = {
      "new()": string;
      foo(): string;
    };
  • #​8927 0ef3da5 Thanks @​littleKitchen! - Fixed #​8907: useExhaustiveDependencies now correctly recognizes stable hook results (like useState setters and useRef values) when declared with let.

  • #​8931 4561751 Thanks @​koshin01! - Added the new nursery rule noRedundantDefaultExport, which flags redundant default exports where the default export references the same identifier as a named export.

  • #​8900 f788cff Thanks @​mdevils! - Fixed #​8883: useExhaustiveDependencies no longer produces false positives when props are destructured in the function body of arrow function components without parentheses around the parameter.

    type Props = { msg: string };
    
    // Arrow function without parentheses around `props`
    const Component: React.FC<Props> = (props) => {
      const { msg } = props;
      // Previously, this incorrectly reported `msg` as unnecessary
      useEffect(() => console.log(msg), [msg]);
    };
  • #​8861 3531687 Thanks @​dyc3! - Added the noDeprecatedMediaType CSS rule to flag deprecated media types like tv and handheld.

  • #​8775 7ea71cd Thanks @​igas! - Fixed the noUnnecessararyConditions rule to prevent trigger for optional fallback patterns.

  • #​8860 95f1eea Thanks @​dyc3! - Added the nursery rule noHexColors, which flags the use of hexadecimal color codes in CSS and suggests using named colors or RGB/RGBA/HSL/HSLA formats instead.

  • #​8786 d876a38 Thanks @​Bertie690! - Added the nursery rule useConsistentMethodSignatures.
    Inspired by the similarly named version from typescript-eslint, this rule aims to enforce a consistent style for methods used inside object types and interfaces.

Examples

Invalid code with style set to "property" (the default):

interface Foo {
  method(a: string): void;
}

Invalid code with style set to "method":

type Bar = {
  prop: (a: string) => void;
}
  • #​8864 5e97119 Thanks @​dyc3! - Improved the summary provided by biome migrate eslint to be clearer on why rules were not migrated. Biome now specifies a reason when a rule is not migrated, such as being incompatible with the formatter or not implemented yet. This helps users make more informed decisions when migrating their ESLint configurations to Biome.

  • #​8924 99b4cd1 Thanks @​tmohammad78! - Fixed #​8920: noUnknownFunction now knows about sibling-count, and sibling-index css functions

  • #​8900 f788cff Thanks @​mdevils! - Fixed #​8885: useExhaustiveDependencies no longer incorrectly reports variables as unnecessary dependencies when they are derived from expressions containing post/pre-increment operators (++/--) or compound assignment operators (+=, -=, etc.).

    let renderCount = 0;
    
    export const MyComponent = () => {
      // `count` is now correctly recognized as a required dependency
      // because `renderCount++` can produce different values between renders
      const count = renderCount++;
    
      useEffect(() => {
        console.log(count);
      }, [count]); // no longer reports `count` as unnecessary
    };
  • #​8619 d78e01d Thanks @​Netail! - Added the nursery rule useInputName. Require mutation arguments to be called “input”, and the input type to be called Mutation name + “Input”.

    Invalid:

    type Mutation {
      SetMessage(message: String): String
    }
  • #​8922 871b45e Thanks @​siketyan! - Fixed #​8829: Revamped the noGlobalDirnameFilename rule to catch many false negatives that have not been reported.

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

v4.20260207.0

Compare Source

v4.20260206.0

Compare Source

v4.20260205.0

Compare Source

v4.20260203.0

Compare Source

v4.20260131.0

Compare Source

v4.20260130.0

Compare Source

v4.20260129.0

Compare Source

v4.20260128.0

Compare Source

v4.20260127.0

Compare Source

v4.20260124.0

Compare Source

v4.20260123.0

Compare Source

v4.20260122.0

Compare Source

v4.20260120.0

Compare Source

v4.20260118.0

Compare Source

v4.20260117.0

Compare Source

v4.20260116.0

Compare Source

v4.20260115.0

Compare Source

v4.20260114.0

Compare Source

v4.20260113.0

Compare Source

v4.20260111.0

Compare Source

v4.20260109.0

Compare Source

v4.20260108.0

Compare Source

v4.20260107.1

Compare Source

v4.20260103.0

Compare Source

v4.20260101.0

Compare Source

v4.20251231.0

Compare Source

v4.20251230.0

Compare Source

v4.20251229.0

Compare Source

v4.20251228.0

Compare Source

v4.20251225.0

Compare Source

v4.20251224.0

Compare Source

v4.20251223.0

Compare Source

v4.20251221.0

Compare Source

v4.20251220.0

Compare Source

v4.20251219.0

Compare Source

v4.20251218.0

Compare Source

v4.20251217.0

Compare Source

v4.20251216.0

Compare Source

v4.20251213.0

Compare Source

v4.20251212.0

Compare Source

v4.20251211.0

Compare Source

v4.20251210.0

Compare Source

v4.20251209.0

Compare Source

v4.20251205.0

Compare Source

v4.20251202.0

Compare Source

v4.20251128.0

Compare Source

v4.20251127.0

Compare Source

v4.20251126.0

Compare Source

v4.20251125.0

Compare Source

v4.20251121.0

Compare Source

v4.20251120.0

Compare Source

v4.20251119.0

Compare Source

v4.20251118.0

Compare Source

v4.20251117.0

Compare Source

v4.20251115.0

Compare Source

v4.20251113.0

Compare Source

v4.20251111.0

Compare Source

v4.20251109.0

Compare Source

v4.20251107.0

Compare Source

v4.20251106.1

Compare Source

v4.20251014.0

Compare Source

v4.20251011.0

Compare Source

v4.20251008.0

Compare Source

v4.20251004.0

Compare Source

v4.20251003.0

Compare Source

v4.20251001.0

Compare Source

v4.20250927.0

Compare Source

v4.20250926.0

Compare Source

v4.20250924.0

Compare Source

v4.20250923.0

Compare Source

v4.20250922.0

Compare Source

v4.20250921.0

Compare Source

v4.20250920.0

Compare Source

v4.20250919.0

Compare Source

v4.20250918.0

Compare Source

v4.20250917.0

Compare Source

v4.20250913.0

Compare Source

v4.20250912.0

Compare Source

v4.20250911.0

Compare Source

v4.20250910.0

Compare Source

v4.20250909.0

Compare Source

v4.20250906.0

Compare Source

v4.20250905.0

Compare Source

v4.20250904.0

Compare Source

v4.20250903.0

Compare Source

v4.20250902.0

Compare Source

v4.20250831.0

Compare Source

v4.20250830.0

Compare Source

v4.20250829.0

Compare Source

v4.20250828.1

Compare Source

v4.20250828.0

Compare Source

v4.20250826.0

Compare Source

v4.20250823.0

Compare Source

v4.20250822.0

Compare Source

v4.20250821.0

Compare Source

v4.20250820.0

Compare Source

v4.20250819.0

Compare Source

v4.20250816.0

Compare Source

v4.20250813.0

Compare Source

v4.20250812.0

Compare Source

v4.20250810.0

Compare Source

v4.20250809.0

Compare Source

v4.20250807.0

Compare Source

v4.20250806.0

Compare Source

v4.20250805.0

Compare Source

v4.20250803.0

Compare Source

v4.20250802.0

Compare Source

v4.20250801.0

Compare Source

v4.20250731.0

Compare Source

v4.20250730.0

Compare Source

v4.20250726.0

Compare Source

v4.20250725.0

Compare Source

v4.20250724.0

Compare Source

v4.20250723.0

Compare Source

v4.20250722.0

Compare Source

v4.20250719.0

Compare Source

v4.20250718.0

Compare Source

v4.20250715.0

Compare Source

v4.20250712.0

Compare Source

v4.20250711.0

Compare Source

v4.20250710.0

Compare Source

v4.20250709.0

Compare Source

v4.20250708.0

Compare Source

v4.20250705.0

Compare Source

v4.20250704.0

Compare Source

v4.20250703.0

Compare Source

v4.20250702.0

Compare Source

v4.20250701.0

Compare Source

v4.20250628.0

Compare Source

[v4.20250627.0](https://redirect.github.com/cloudflare/workerd/compare/1f7f87d180d79958fc56f1cdfe8db055daece867...742ce251

@vercel
Copy link

vercel bot commented Oct 28, 2024

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
jiosaavn-api Ready Ready Preview, Comment Feb 7, 2026 9:43am
jiosaavn-api-ts Error Error Feb 7, 2026 9:43am
jiosaavn-private Error Error Feb 7, 2026 9:43am

@vercel
Copy link

vercel bot commented Oct 28, 2024

Deployment failed with the following error:

Resource is limited - try again in 11 minutes (more than 100, code: "api-deployments-free-per-day").

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a4c60b5 to 2adee8f Compare October 29, 2024 01:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2adee8f to d805d48 Compare October 29, 2024 08:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d805d48 to caf619d Compare October 29, 2024 16:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from caf619d to 6521774 Compare October 29, 2024 19:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6521774 to 5ed2bb4 Compare October 30, 2024 16:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5ed2bb4 to 98826cd Compare October 30, 2024 21:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 98826cd to 659bf53 Compare October 31, 2024 11:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 659bf53 to 70adab2 Compare October 31, 2024 20:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a20c867 to f782864 Compare February 3, 2026 17:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f782864 to c066960 Compare February 3, 2026 22:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c066960 to c7064d6 Compare February 5, 2026 01:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c7064d6 to 750cc37 Compare February 6, 2026 09:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 750cc37 to 999c000 Compare February 7, 2026 01:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3bab76d to 934af38 Compare February 7, 2026 08:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 934af38 to dcaddc8 Compare February 7, 2026 08:52
@renovate renovate bot merged commit 9613e96 into master Feb 7, 2026
4 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch February 7, 2026 12:36
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.

0 participants