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

fix(deps): update all dependencies #1735

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

fix(deps): update all dependencies #1735

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 29, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) 19.7.1 -> 19.8.0 age adoption passing confidence
@types/node-fetch (source) 2.5.12 -> 2.6.12 age adoption passing confidence
diff 5.0.0 -> 5.2.0 age adoption passing confidence
eslint-import-resolver-typescript 2.5.0 -> 2.7.1 age adoption passing confidence
eslint-plugin-import 2.25.3 -> 2.31.0 age adoption passing confidence
eslint-plugin-jsx-a11y 6.5.1 -> 6.10.2 age adoption passing confidence
eslint-plugin-react 7.27.0 -> 7.37.4 age adoption passing confidence
flow-bin (changelog) 0.141.0 -> 0.263.0 age adoption passing confidence
graceful-fs 4.2.8 -> 4.2.11 age adoption passing confidence
handlebars (source) 4.7.7 -> 4.7.8 age adoption passing confidence
hosted-git-info 4.0.2 -> 4.1.0 age adoption passing confidence
jest-silent-reporter 0.5.0 -> 0.6.0 age adoption passing confidence
npm (source) 6.14.17 -> 6.14.18 age adoption passing confidence
prettier (source) 2.4.1 -> 2.8.8 age adoption passing confidence
regenerator-runtime (source) ^0.13.9 -> ^0.14.0 age adoption passing confidence
rollup (source) 4.34.9 -> 4.35.0 age adoption passing confidence
set-value 4.0.1 -> 4.1.0 age adoption passing confidence
stream-to-string 1.2.0 -> 1.2.1 age adoption passing confidence
tmp 0.2.1 -> 0.2.3 age adoption passing confidence
typescript (source) 4.5.2 -> 4.9.5 age adoption passing confidence
unzipper 0.10.11 -> 0.12.3 age adoption passing confidence
unzipper ^0.10.5 -> ^0.12.0 age adoption passing confidence
yarn 1.22.4 -> 1.22.22 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/cli

19.6.1 (2024-12-15)

Note: Version bump only for package @​commitlint/cli

kpdecker/jsdiff (diff)

v5.2.0

Compare Source

Commits

  • #​411 Big performance improvement. Previously an O(n) array-copying operation inside the innermost loop of jsdiff's base diffing code increased the overall worst-case time complexity of computing a diff from O(n²) to O(n³). This is now fixed, bringing the worst-case time complexity down to what it theoretically should be for a Myers diff implementation.
  • #​448 Performance improvement. Diagonals whose furthest-reaching D-path would go off the edge of the edit graph are now skipped, rather than being pointlessly considered as called for by the original Myers diff algorithm. This dramatically speeds up computing diffs where the new text just appends or truncates content at the end of the old text.
  • #​351 Importing from the lib folder - e.g. require("diff/lib/diff/word.js") - will work again now. This had been broken for users on the latest version of Node since Node 17.5.0, which changed how Node interprets the exports property in jsdiff's package.json file.
  • #​344 diffLines, createTwoFilesPatch, and other patch-creation methods now take an optional stripTrailingCr: true option which causes Windows-style \r\n line endings to be replaced with Unix-style \n line endings before calculating the diff, just like GNU diff's --strip-trailing-cr flag.
  • #​451 Added diff.formatPatch.
  • #​450 Added diff.reversePatch.
  • #​478 Added timeout option.

v5.1.0

Compare Source

  • #​365 Allow early termination to limit execution time with degenerate cases

Commits

import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v2.7.1

Compare Source

v2.7.0

Compare Source

Features

v2.6.0

Compare Source

Bug Fixes
import-js/eslint-plugin-import (eslint-plugin-import)

v2.31.0

Compare Source

Added
Fixed
Changed

v2.30.0

Compare Source

Added
Fixed
Changed
  • [Docs] [no-extraneous-dependencies]: Make glob pattern description more explicit ([#​2944], thanks [@​mulztob])
  • [no-unused-modules]: add console message to help debug [#​2866]
  • [Refactor] ExportMap: make procedures static instead of monkeypatching exportmap ([#​2982], thanks [@​soryy708])
  • [Refactor] ExportMap: separate ExportMap instance from its builder logic ([#​2985], thanks [@​soryy708])
  • [Docs] [order]: Add a quick note on how unbound imports and --fix ([#​2640], thanks [@​minervabot])
  • [Tests] appveyor -> GHA (run tests on Windows in both pwsh and WSL + Ubuntu) ([#​2987], thanks [@​joeyguerra])
  • [actions] migrate OSX tests to GHA ([ljharb#37], thanks [@​aks-])
  • [Refactor] exportMapBuilder: avoid hoisting ([#​2989], thanks [@​soryy708])
  • [Refactor] ExportMap: extract "builder" logic to separate files ([#​2991], thanks [@​soryy708])
  • [Docs] [order]: update the description of the pathGroupsExcludedImportTypes option ([#​3036], thanks [@​liby])
  • [readme] Clarify how to install the plugin ([#​2993], thanks [@​jwbth])

v2.29.1

Compare Source

Fixed

v2.29.0

Compare Source

Added

v2.28.1

Compare Source

Fixed
Changed

v2.28.0

Compare Source

Fixed
  • [no-duplicates]: remove duplicate identifiers in duplicate imports ([#​2577], thanks [@​joe-matsec])
  • [consistent-type-specifier-style]: fix accidental removal of comma in certain cases ([#​2754], thanks [@​bradzacher])
  • [Perf] ExportMap: Improve ExportMap.for performance on larger codebases ([#​2756], thanks [@​leipert])
  • [no-extraneous-dependencies]/TypeScript: do not error when importing inline type from dev dependencies ([#​2735], thanks [@​andyogo])
  • [newline-after-import]/TypeScript: do not error when re-exporting a namespaced import ([#​2832], thanks [@​laurens-dg])
  • [order]: partial fix for [#​2687] (thanks [@​ljharb])
  • [no-duplicates]: Detect across type and regular imports ([#​2835], thanks [@​benkrejci])
  • [extensions]: handle . and .. properly ([#​2778], thanks [@​benasher44])
  • [no-unused-modules]: improve schema (thanks [@​ljharb])
  • [no-unused-modules]: report error on binding instead of parent export ([#​2842], thanks [@​Chamion])
Changed
  • [Docs] [no-duplicates]: fix example schema ([#​2684], thanks [@​simmo])
  • [Docs] [group-exports]: fix syntax highlighting ([#​2699], thanks [@​devinrhode2])
  • [Docs] [extensions]: reference node ESM behavior ([#​2748], thanks [@​xM8WVqaG])
  • [Refactor] [exports-last]: use array.prototype.findlastindex (thanks [@​ljharb])
  • [Refactor] [no-anonymous-default-export]: use object.fromentries (thanks [@​ljharb])
  • [Refactor] [no-unused-modules]: use array.prototype.flatmap (thanks [@​ljharb])

v2.27.5

Compare Source

Fixed

v2.27.4

Compare Source

Fixed
  • semver should be a prod dep ([#​2668])

v2.27.3

Compare Source

Fixed
  • [no-empty-named-blocks]: rewrite rule to only check import declarations ([#​2666])

v2.27.2

Compare Source

Fixed
  • [no-duplicates]: do not unconditionally require typescript ([#​2665])

v2.27.1

Compare Source

Fixed

v2.27.0

Compare Source

Added
Fixed
Changed

v2.26.0

Compare Source

Added
  • [no-named-default], [no-default-export], [prefer-default-export], [no-named-export], [export], [named], [namespace], [no-unused-modules]: support arbitrary module namespace names ([#​2358], thanks [@​sosukesuzuki])
  • [no-dynamic-require]: support dynamic import with espree ([#​2371], thanks [@​sosukesuzuki])
  • [no-relative-packages]: add fixer ([#​2381], thanks [@​forivall])
Fixed
  • [default]: typescript-eslint-parser: avoid a crash on exporting as namespace (thanks [@​ljharb])
  • [export]/TypeScript: false positive for typescript namespace merging ([#​1964], thanks [@​magarcia])
  • [no-duplicates]: ignore duplicate modules in different TypeScript module declarations ([#​2378], thanks [@​remcohaszing])
  • [no-unused-modules]: avoid a crash when processing re-exports ([#​2388], thanks [@​ljharb])
Changed

v2.25.4

Compare Source

Fixed
Changed
  • [no-default-import]: report on the token "default" instead of the entire node ([#​2299], thanks [@​pmcelhaney])
  • [Docs] [order]: Remove duplicate mention of default ([#​2280], thanks [@​johnthagen])
  • [Deps] update eslint-module-utils
jsx-eslint/eslint-plugin-jsx-a11y (eslint-plugin-jsx-a11y)

v6.10.2

Compare Source

Fixed
  • [patch] no-redundandant-roles: allow <img src="*.svg" role="img" /> #936
Commits
  • [meta] fix changelog URLs 0d01a1a
  • [Refactor] remove no-longer-needed es-iterator-helpers aa075bd
  • [Refactor] avoid spreading things that are already arrays d15d3ab
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register 5dad7c4
  • [Tests] aria-role: Add valid test for <svg role="img" /> daba189
  • [Docs] label-has-associated-control: add line breaks for readability 0bc6378
  • [Tests] label-has-associated-control: add additional test cases 30d2318
  • [Tests] Add tests to reinforce required attributes for role="heading" d92446c

v6.10.1

Compare Source

Commits
  • [Fix] handle interactive/noninteractive changes from aria-query 4925ba8
  • [Docs] Use consistent spelling of 'screen reader' cb6788c
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register, auto-changelog, eslint-plugin-import, tape 518a77e
  • [Deps] update es-iterator-helpers, string.prototype.includes [eed03a3](https://redirect.github.com/jsx-eslint/eslint-plugin-jsx-a11y/

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.

@changeset-bot
Copy link

changeset-bot bot commented Nov 29, 2021

⚠️ No Changeset found

Latest commit: a89f6e3

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 4c458b0 to 37cbb60 Compare December 4, 2021 15:28
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 94f0d64 to 19f089e Compare December 13, 2021 23:59
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 7834983 to e70c52a Compare December 23, 2021 00:59
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 08926fe to 0d8065c Compare December 31, 2021 04:59
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from a1ddff3 to 8398022 Compare January 7, 2022 02:35
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 1f10b67 to 8bfafc1 Compare January 16, 2022 14:51
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from ac7ecd7 to 6c5a690 Compare January 8, 2025 14:22
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 9eab71a to f412fef Compare January 17, 2025 01:02
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 9685083 to 12be483 Compare January 26, 2025 09:41
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from e7a4408 to 861a0be Compare February 14, 2025 16:49
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 2ca457d to e37268d Compare February 20, 2025 15:29
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from a1ad1bf to ce1af75 Compare February 27, 2025 09:25
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from 6f47420 to b87f169 Compare March 7, 2025 15:24
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.

0 participants