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

Merged
merged 1 commit into from
Jul 28, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 24, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@biomejs/biome (source) 1.5.3 -> 1.8.3 age adoption passing confidence
@citation-js/core (source) 0.7.6 -> 0.7.14 age adoption passing confidence
@citation-js/plugin-bibtex (source) 0.7.8 -> 0.7.14 age adoption passing confidence
@citation-js/plugin-csl (source) 0.7.6 -> 0.7.14 age adoption passing confidence
@citation-js/plugin-doi (source) 0.7.8 -> 0.7.14 age adoption passing confidence
@iconify/json (source) 2.2.184 -> 2.2.231 age adoption passing confidence
@lucia-auth/adapter-postgresql (source) 3.1.0 -> 3.1.2 age adoption passing confidence
@melt-ui/svelte 0.74.1 -> 0.83.0 age adoption passing confidence
@playwright/test (source) 1.41.2 -> 1.45.3 age adoption passing confidence
@react-email/components (source) 0.0.14 -> 0.0.22 age adoption passing confidence
@react-email/render (source) 0.0.12 -> 0.0.17 age adoption passing confidence
@sveltejs/adapter-vercel (source) 5.1.0 -> 5.4.1 age adoption passing confidence
@sveltejs/kit (source) 2.5.0 -> 2.5.18 age adoption passing confidence
@sveltejs/vite-plugin-svelte (source) 3.0.2 -> 3.1.1 age adoption passing confidence
@t3-oss/env-core (source) 0.9.2 -> 0.11.0 age adoption passing confidence
@types/nodemailer (source) 6.4.14 -> 6.4.15 age adoption passing confidence
@types/react (source) 18.2.56 -> 18.3.3 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.0.2 -> 7.17.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.0.2 -> 7.17.0 age adoption passing confidence
@upstash/redis 1.28.4 -> 1.33.0 age adoption passing confidence
arctic 1.2.0 -> 1.9.2 age adoption passing confidence
autoprefixer 10.4.17 -> 10.4.19 age adoption passing confidence
bits-ui 0.18.1 -> 0.21.12 age adoption passing confidence
cmdk-sv 0.0.13 -> 0.0.18 age adoption passing confidence
dotenv-cli 7.3.0 -> 7.4.2 age adoption passing confidence
drizzle-kit 0.20.14 -> 0.23.0 age adoption passing confidence
drizzle-orm (source) 0.29.3 -> 0.32.1 age adoption passing confidence
eslint (source) 8.56.0 -> 8.57.0 age adoption passing confidence
eslint-plugin-svelte (source) 2.35.1 -> 2.43.0 age adoption passing confidence
lucia (source) 3.0.1 -> 3.2.0 age adoption passing confidence
nanoid 5.0.5 -> 5.0.7 age adoption passing confidence
nodemailer (source) 6.9.9 -> 6.9.14 age adoption passing confidence
oslo 1.1.2 -> 1.2.1 age adoption passing confidence
pg (source) 8.11.3 -> 8.12.0 age adoption passing confidence
postcss (source) 8.4.35 -> 8.4.40 age adoption passing confidence
postgres 3.4.3 -> 3.4.4 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence
prettier-plugin-svelte 3.2.1 -> 3.2.6 age adoption passing confidence
react (source) 18.2.0 -> 18.3.1 age adoption passing confidence
react-email (source) 2.0.0 -> 2.1.6 age adoption passing confidence
svelte (source) 4.2.11 -> 4.2.18 age adoption passing confidence
svelte-check 3.6.4 -> 3.8.4 age adoption passing confidence
sveltekit-search-params (source) 2.1.1 -> 2.1.2 age adoption passing confidence
sveltekit-superforms (source) 2.4.0 -> 2.16.1 age adoption passing confidence
tailwind-merge 2.2.1 -> 2.4.0 age adoption passing confidence
tailwind-variants 0.2.0 -> 0.2.1 age adoption passing confidence
tailwindcss (source) 3.4.1 -> 3.4.7 age adoption passing confidence
tslib (source) 2.6.2 -> 2.6.3 age adoption passing confidence
tsx (source) 4.7.1 -> 4.16.2 age adoption passing confidence
typescript (source) 5.3.3 -> 5.5.4 age adoption passing confidence
unplugin-icons 0.18.5 -> 0.19.0 age adoption passing confidence
zod (source) 3.22.4 -> 3.23.8 age adoption passing confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v1.8.3

Compare Source

CLI
Bug fixes
  • Fix #​3104 by suppressing node warnings when using biome migrate. Contributed by @​SuperchupuDev

  • Force colors to be off when using the GitHub reporter to properly create annotations in GitHub actions (#​3148). Contributed by @​Sec-ant

Parser
Bug fixes
Formatter
Bug fixes
Linter
New features
Bug fixes
  • useConsistentArrayType and useShorthandArrayType now ignore Array in the extends and implements clauses. Fix #​3247. Contributed by @​Conaclos
  • Fixes #​3066 by taking into account the dependencies declared in the package.json. Contributed by @​ematipico
  • The code action of the useArrowFunction rule now preserves a trailing comma when there is only a single type parameter in the arrow function and JSX is enabled. Fixes #​3292. Contributed by @​Sec-ant
Enhancements
  • Enhance tailwind sorting lint rule #​1274 with variant support.

    Every preconfigured variant is assigned a weight that concurs on establishing the output sorting order.
    Since nesting variants on the same utility class is possible, the resulting weight is the Bitwise XOR of all the variants weight for that class.
    Dynamic variants (e.g. has-[.custom-class], group-[:checked]) are also supported and they take the weight of their base variant name the custom value attached (e.g. has-[.custom-class] takes has weight).
    Arbitrary variants (e.g. [&nth-child(2)]) don't have a weight assigned and they are placed after every known variant.
    Classes with the same amount of arbitrary variants follow lexicographical order. The class that has the highest number of nested arbitrary variants is placed last.
    Screen variants (e.g. sm:, max-md:, min-lg:) are not supported yet.

    Contributed by @​lutaok

v1.8.2

Compare Source

CLI
Bug fixes
  • Fix #​3201 by correctly injecting the source code of the file when printing the diagnostics. Contributed by @​ematipico
  • Fix #​3179 where comma separators are not correctly removed after running biome migrate and thus choke the parser. Contributed by @​Sec-ant
  • Fix #​3232 by correctly using the colors set by the user. Contributed by @​ematipico
Enhancement
  • Reword the reporter message No fixes needed to No fixes applied.

    The former message is misleading when there're still errors or warnings in the files that should be taken care of manually. For example:

    Checked 2 files in <TIME>. No fixes needed.
    Found 2 errors.
    

    The new message suits better in these cases.

    Contributed by @​Sec-ant

Configuration
Bug fixes
  • Don't conceal previous overrides (#​3176).

    Previously, each override inherited the unset configuration of the base configuration.
    This means that setting a configuration in an override can be concealed by a subsequent override that inherits of the value from the base configuration.

    For example, in the next example, noDebugger was disabled for the index.js file.

    {
      "linter": {
        "rules": {
          "suspicious": { "noDebugger": "off" }
        }
      },
      "overrides": [
        {
          "include": ["index.js"],
          "linter": {
            "rules": {
              "suspicious": { "noDebugger": "warn" }
            }
          }
        }, {
          "include": ["index.js"],
          "linter": {
            "rules": {
              "suspicious": { "noDoubleEquals": "off" }
            }
          }
        }
      ]
    }

    The rule is now correctly enabled for the index.js file.

    Contributed by @​Conaclos

Formatter
Bug fixes
JavaScript APIs
Bug fixes
  • Fix a regression introduced by the release of v1.8.0
Linter
New features
Bug fixes
  • Add nursery/noShorthandPropertyOverrides. #​2958 Contributed by @​neokidev

  • Fix [#​3084] false positive by correctly recognize parenthesized return statement. Contributed by @​unvalley

  • useImportExtensions now suggests a correct fix for import '.' and import './.'. Contributed by @​minht11

  • Fix useDateNow false positive when new Date object has arguments new Date(0).getTime(). Contributed by @​minht11.

  • The noUnmatchableAnbSelector rule is now able to catch unmatchable an+b selectors like 0n+0 or -0n+0. Contributed by @​Sec-ant.

  • The useHookAtTopLevel rule now recognizes properties named as hooks like foo.useFoo(). Contributed by @​ksnyder9801

  • Fix #​3092, prevent warning for Custom properties (--*). Contributed by @​chansuke

  • Fix a false positive in the useLiteralKeys rule. (#​3160)

    This rule now ignores the following kind of computed member name:

    const a = {
      [`line1
      line2`]: true,
    };

    Contributed by @​Sec-ant

  • The noUnknownProperty rule now ignores the composes property often used in css modules. #​3000 Contributed by @​chansuke

  • Fix false positives of the useExhaustiveDependencies rule.

    The component itself is considered stable when it is used recursively inside a hook closure defined inside of it:

    import { useMemo } from "react";
    
    function MyRecursiveComponent() {
      // MyRecursiveComponent is stable, we don't need to add it to the dependencies list.
      const children = useMemo(() => <MyRecursiveComponent />, []);
      return <div>{children}</div>;
    }

    Also, export default function and export default class are considered stable now because they can only appear at the top level of a module.

    Contributed by @​Sec-ant

  • Fix missing withDefaults macro in vue files for globals variables. Contributed by @​Shyam-Chen

Parser
Bug fixes

v1.8.1

Compare Source

Analyzer
CLI
Bug fixes
  • Fix #​3069, prevent overwriting paths when using --staged or --changed options. Contributed by @​unvalley
  • Fix a case where the file link inside a diagnostic wasn't correctly displayed inside a terminal run by VSCode. Contributed by @​uncenter
Configuration
Bug fixes
Editors
Formatter
Bug fixes
  • Fix the bug where whitespace after the & character in CSS nesting was incorrectly trimmed, ensuring proper targeting of child classes #​3061. Contributed by @​denbezrukov
  • Fix #​3068 where the CSS formatter was inadvertently converting variable declarations and function calls to lowercase. Contributed by @​denbezrukov
  • Fix the formatting of CSS grid layout properties. Contributed by @​denbezrukov
JavaScript APIs
Linter
Bug fixes
Parser
New features
  • Implemented CSS Unknown At-Rule parsing, allowing the parser to gracefully handle unsupported or unrecognized CSS at-rules. Contributed by @​denbezrukov
Bug fixes
  • Fix #​3055 CSS: Layout using named grid lines is now correctly parsed. Contributed by @​denbezrukov
  • Fix #​3091. Allows the parser to handle nested style rules and at-rules properly, enhancing the parser's compatibility with the CSS Nesting Module. Contributed by @​denbezrukov

v1.8.0

Compare Source

Analyzer
New features
  • Allow suppression comments to suppress individual instances of rules. This is
    used for the lint rule useExhaustiveDependencies, which is now able to
    suppress specific dependencies. Fixes #​2509. Contributed by @​arendjr
Enhancements
  • Assume Astro object is always a global when processing .astro files. Contributed by @​minht11
  • Assume Vue compiler macros are globals when processing .vue files. (#​2771) Contributed by @​dyc3
CLI
New features
  • New clean command. Use this new command to clean after the biome-logs directory, and remove all the log files.

    biome clean
  • Add two new options --only and --skip to the command biome lint (#​58).

    The --only option allows you to run a given rule or rule group,
    For example, the following command runs only the style/useNamingConvention and style/noInferrableTypes rules.
    If the rule is disabled in the configuration, then its severity level is set to error for a recommended rule or warn otherwise.

    biome lint --only=style/useNamingConvention --only=style/noInferrableTypes

    Passing a group does not change the severity level of the rules in the group.
    All the disabled rules in the group will remain disabled.
    To ensure that the group is run, the recommended field of the group is enabled.
    The nursery group cannot be passed, as no rules are enabled by default in the nursery group.

    The --skip option allows you to skip the execution of a given group or a given rule.
    For example, the following command skips the style group and the suspicious/noExplicitAny rule.

    biome lint --skip=style --skip=suspicious/noExplicitAny

    You can also use --only and --skip together. --skip oevrrides --only.
    The following command executes only the rules from the style group, bu


Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Europe/Vienna, 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 Feb 24, 2024

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

Name Status Preview Comments Updated (UTC)
fontesio ❌ Failed (Inspect) Jul 28, 2024 11:08am

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9732a8c to fe3b41a Compare July 21, 2024 17:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fe3b41a to 69bc3b8 Compare July 22, 2024 12:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 69bc3b8 to 3754573 Compare July 22, 2024 18:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3754573 to 6351c14 Compare July 23, 2024 00:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6351c14 to f198308 Compare July 23, 2024 16:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f198308 to bece53c Compare July 23, 2024 20:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bece53c to 853e714 Compare July 24, 2024 21:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 853e714 to 15c8b7f Compare July 25, 2024 17:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 15c8b7f to ae809fd Compare July 28, 2024 10:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ae809fd to a9cfb53 Compare July 28, 2024 10:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a9cfb53 to 954cb64 Compare July 28, 2024 11:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 954cb64 to 3582261 Compare July 28, 2024 11:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3582261 to aacb1f0 Compare July 28, 2024 11:07
@msonnberger msonnberger merged commit 103029a into main Jul 28, 2024
2 of 5 checks passed
@msonnberger msonnberger deleted the renovate/all-minor-patch branch July 28, 2024 11:09
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