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(dev-deps): update all non-major dependencies #438

Merged
merged 1 commit into from
Jan 1, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@cspell/dict-cryptocurrencies (source) 5.0.3 -> 5.0.4 age adoption passing confidence devDependencies patch
@rebeccastevens/eslint-config 3.3.4 -> 3.5.1 age adoption passing confidence devDependencies minor
@rollup/plugin-typescript (source) 12.1.1 -> 12.1.2 age adoption passing confidence devDependencies patch
@types/node (source) 18.19.67 -> 18.19.69 age adoption passing confidence devDependencies patch
@vitest/eslint-plugin 1.1.16 -> 1.1.22 age adoption passing confidence devDependencies patch
eslint-plugin-functional 7.1.0 -> 7.2.0 age adoption passing confidence devDependencies minor
eslint-plugin-import-x 4.5.0 -> 4.6.1 age adoption passing confidence devDependencies minor
eslint-plugin-n 17.15.0 -> 17.15.1 age adoption passing confidence devDependencies patch
knip (source) 5.40.0 -> 5.41.1 age adoption passing confidence devDependencies minor
lint-staged 15.2.11 -> 15.3.0 age adoption passing confidence devDependencies minor
markdownlint-cli2 0.16.0 -> 0.17.1 age adoption passing confidence devDependencies minor
node (source) 22.11.0 -> 22.12.0 age adoption passing confidence minor
pnpm (source) 9.15.0 -> 9.15.2 age adoption passing confidence packageManager patch
rollup (source) 4.28.1 -> 4.29.1 age adoption passing confidence devDependencies minor
typedoc (source) 0.27.4 -> 0.27.6 age adoption passing confidence devDependencies patch

Release Notes

streetsidesoftware/cspell-dicts (@​cspell/dict-cryptocurrencies)

v5.0.4

Compare Source

Updates and Bug Fixes
RebeccaStevens/eslint-config-rebeccastevens (@​rebeccastevens/eslint-config)

v3.5.1

Compare Source

Bug Fixes
  • only use ts version of no-loop-func when using ts (48dc0b0)

v3.5.0

Compare Source

Bug Fixes
  • functional/no-conditional-statements: ignore import.meta.vitest conditions (4b6990d)
  • update import rules for apps (723a40d)
Features
  • add support for ReactRouter 7 (83cf882)

v3.4.0

Compare Source

Bug Fixes
Features
  • enforce non-sloppy imports for library code (0490a67)

3.3.5 (2024-12-14)

Bug Fixes

3.3.4 (2024-11-28)

Bug Fixes
  • ts/switch-exhaustiveness-check: considerDefaultExhaustiveForUnions: true (2e4b7c4)
  • yaml/quotes (94cf07b)

3.3.3 (2024-10-20)

Bug Fixes
  • only enforce max-classes-per-file when not functional (096d7ed)
  • use functional/no-class-inheritance over functional/no-classes (68fb811)

3.3.2 (2024-10-09)

Bug Fixes
  • updating naming-convention (a818739)

3.3.1 (2024-10-08)

Bug Fixes
  • add eslint-plugin-jsx-a11y (2e13bb6)

v3.3.5

Compare Source

Bug Fixes
rollup/plugins (@​rollup/plugin-typescript)

v12.1.2

2024-12-15

Bugfixes
  • fix: path validation issue in validatePaths function (#​1800)
vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.1.22

Compare Source

Bug Fixes
  • valid-title false positives when test.extend is used (#​584) (9c2670a)

v1.1.21

Compare Source

Bug Fixes
Performance Improvements
  • only build regexp ones for detecting expectations (#​608) (448650c)

What's Changed

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.20...v1.1.21

v1.1.20

Compare Source

Bug Fixes

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.19...v1.1.20

v1.1.19

Compare Source

Bug Fixes

What's Changed

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.18...v1.1.19

v1.1.18

Compare Source

Features

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.17...v1.1.18

v1.1.17

Compare Source

Bug Fixes
  • expect.hasAssertions() / expect.assertions() - Does not work when using expect() bound to current test (#​595) (efe79c9)

What's Changed

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.16...v1.1.17

eslint-functional/eslint-plugin-functional (eslint-plugin-functional)

v7.2.0

Compare Source

Features
  • no-conditional-statements: add option ignoreCodePattern for ignoring if conditions (#​909) (d3cf5d8)
un-ts/eslint-plugin-import-x (eslint-plugin-import-x)

v4.6.1

Compare Source

Patch Changes

v4.6.0

Compare Source

Minor Changes
  • #​209 46d2360 Thanks @​SukkaW! - When eslint-plugin-import-x was forked from eslint-plugin-import, we copied over the default resolver (which is eslint-import-resolver-node) as well. However, this resolver doesn't supports exports in the package.json file, and the current maintainer of the eslint-import-resolver-node (ljharb) doesn't have the time implementing this feature and he locked the issue https://github.com/import-js/eslint-plugin-import/issues/1810.

    So we decided to implement our own resolver that "just works". The new resolver is built upon the enhanced-resolve that implements the full Node.js Resolver Algorithm. The new resolver only implements the import resolver interface v3, which means you can only use it with ESLint Flat config. For more details about the import resolver interface v3, please check out #​192.

    In the next major version of eslint-plugin-import-x, we will remove the eslint-import-resolver-node and use this new resolver by default. In the meantime, you can try out this new resolver by setting the import-x/resolver-next option in your eslint.config.js file:

    // eslint.config.js
    const eslintPluginImportX = require('eslint-plugin-import-x');
    const { createNodeResolver } = eslintPluginImportX;
    
    module.exports = {
      plugins: {
        'import-x': eslintPluginImportX,
      },
      settings: {
        'import-x/resolver-next': [
          // This is the new resolver we are introducing
          createNodeResolver({
            /**
             * The allowed extensions the resolver will attempt to find when resolving a module
             * By default it uses a relaxed extension list to search for both ESM and CJS modules
             * You can customize this list to fit your needs
             *
             * @​default ['.mjs', '.cjs', '.js', '.json', '.node']
             */
            extensions?: string[];
            /**
             * Optional, the import conditions the resolver will used when reading the exports map from "package.json"
             * By default it uses a relaxed condition list to search for both ESM and CJS modules
             * You can customize this list to fit your needs
             *
             * @​default ['default', 'module', 'import', 'require']
             */
            conditions: ['default', 'module', 'import', 'require'],
            // You can pass more options here, see the enhanced-resolve documentation for more details
            // https://github.com/webpack/enhanced-resolve/tree/v5.17.1?tab=readme-ov-file#resolver-options
          }),
          // you can add more resolvers down below
          require('eslint-import-resolver-typescript').createTypeScriptImportResolver(
            /** options of eslint-import-resolver-typescript */
          )
        ],
      },
    };

    We do not plan to implement reading baseUrl and paths from the tsconfig.json file in this resolver. If you need this feature, please checkout eslint-import-resolver-typescript (also powered by enhanced-resolve), eslint-import-resolver-oxc (powered by oxc-resolver), eslint-import-resolver-next (also powered by oxc-resolver), or other similar resolvers.

Patch Changes

v4.5.1

Compare Source

Patch Changes
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.15.1

Compare Source

🩹 Fixes
  • Promise.withResolvers is supported since node 22.11 (#​398) (c5bcb3a)
webpro-nl/knip (knip)

v5.41.1

Compare Source

v5.41.0

Compare Source

lint-staged/lint-staged (lint-staged)

v15.3.0

Compare Source

Minor Changes
  • #​1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #​1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    
DavidAnson/markdownlint-cli2 (markdownlint-cli2)

v0.17.1

Compare Source

  • Update dependencies (including markdownlint)

v0.17.0

Compare Source

  • Convert to ECMAScript modules
  • Use import() when loading modules
  • Update dependencies (including markdownlint)
nodejs/node (node)

v22.12.0

Compare Source

pnpm/pnpm (pnpm)

v9.15.2: pnpm 9.15.2

Compare Source

Patch Changes

  • Fixed publish/pack error with workspace dependencies with relative paths #​8904. It was broken in v9.4.0 (398472c).
  • Use double quotes in the command suggestion by pnpm patch on Windows #​7546.
  • Do not fall back to SSH, when resolving a git-hosted package if git ls-remote works via HTTPS #​8906.
  • Improve how packages with blocked lifecycle scripts are reported during installation. Always print the list of ignored scripts at the end of the output. Include a hint about how to allow the execution of those packages.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.1

Compare Source

rollup/rollup (rollup)

v4.29.1

Compare Source

2024-12-21

Bug Fixes
  • Fix crash from deoptimized logical expressions (#​5771)
Pull Requests

v4.29.0

Compare Source

2024-12-20

Features
  • Treat objects as truthy and always check second argument to better simplify logical expressions (#​5763)
Pull Requests
TypeStrong/TypeDoc (typedoc)

v0.27.6

Compare Source

Features
  • Added ignoredHighlightLanguages option to specify languages which will be
    allowed in code blocks but not highlighted, #​2819.
Bug Fixes
  • @include and @includeCode now work in the readme file, #​2814.
  • TypeDoc will now avoid making references to references, #​2811.
  • Fixed output specific option specification, #​2818.
  • Improved type reference conversion to avoid including defaulted type arguments, #​2820.
  • Fixed parsing of declaration references which include a module and a local reference, #​2810.
  • Improved link resolution logic to prioritize type alias properties with the
    same symbol over type literal properties within function parameters.

v0.27.5

Compare Source

Bug Fixes
  • Possibly Breaking: TypeDoc will no longer render anchors within the page for
    deeply nested properties. This only affects links to properties of
    properties of types, which did not have a clickable link exposed so are
    unlikely to have been linked to. Furthermore, these links were not always
    created by TypeDoc, only being created if all parent properties contained
    comments, #​2808.
  • TypeDoc will now warn if a property which does not have a URL within the
    rendered document and the parent property/page will be linked to instead,
    #​2808. These warnings can be disabled with the validation.rewrittenLink
    option.
  • Fix restoration of groups/categories including documents, #​2801.
  • Fixed missed relative paths within markdown link references in documents.
  • Improved handling of incomplete inline code blocks within markdown.
  • Direct https:// links under the hostedBaseUrl option's URL will no
    longer be treated as external, #​2809.
Thanks!

Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

@renovate renovate bot added 💙 Renovate Type: Maintenance Generic maintenance tasks, e.g., package updates. labels Jan 1, 2025
Copy link

codecov bot commented Jan 1, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 52.19%. Comparing base (fae1e54) to head (1d66650).
Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #438   +/-   ##
=======================================
  Coverage   52.19%   52.19%           
=======================================
  Files         121      121           
  Lines         753      753           
  Branches       14       14           
=======================================
  Hits          393      393           
  Misses        360      360           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9453719 to 7702a50 Compare January 1, 2025 04:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7702a50 to 1d66650 Compare January 1, 2025 04:21
@renovate renovate bot merged commit d1093a6 into main Jan 1, 2025
15 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch January 1, 2025 06:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💙 Renovate Type: Maintenance Generic maintenance tasks, e.g., package updates.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants