Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 29, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/cli (source) 7.26.4 -> 7.27.0 age adoption passing confidence
@babel/core (source) 7.26.9 -> 7.26.10 age adoption passing confidence
@babel/eslint-parser (source) 7.11.0 -> 7.27.0 age adoption passing confidence
@babel/preset-typescript (source) 7.26.0 -> 7.27.0 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.265.3 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
jsondiffpatch 0.6.0 -> 0.6.2 age adoption passing confidence
lint-staged 15.4.3 -> 15.5.0 age adoption passing confidence
npm (source) 6.14.17 -> 6.14.18 age adoption passing confidence
pnpm (source) 9.15.6 -> 9.15.9 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
serialize-javascript 6.0.0 -> 6.0.2 age adoption passing confidence
set-value 4.0.1 -> 4.1.0 age adoption passing confidence
typescript (source) 4.5.2 -> 4.9.5 age adoption passing confidence

Release Notes

babel/babel (@​babel/cli)

v7.27.0

Compare Source

👓 Spec Compliance
🚀 New Feature
🐛 Bug Fix
  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-traverse
  • babel-helpers, babel-preset-typescript, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-cli
  • babel-plugin-transform-named-capturing-groups-regex, babel-types
🏃‍♀️ Performance
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

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

🦋 Changeset detected

Latest commit: 0b1b737

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 2 packages
Name Type
@commercetools/resource-deleter Patch
@commercetools/sync-actions Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another 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 14 times, most recently from e7c096b to 2263b88 Compare March 18, 2025 18:38
@renovate renovate bot force-pushed the renovate/all branch 8 times, most recently from 2fa050c to b3b38d4 Compare March 24, 2025 20:34
@renovate
Copy link
Contributor Author

renovate bot commented Mar 26, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@tdeekens tdeekens merged commit 4879752 into master Mar 26, 2025
4 checks passed
@tdeekens tdeekens deleted the renovate/all branch March 26, 2025 14:32
@ct-changesets ct-changesets bot mentioned this pull request Mar 26, 2025
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.

2 participants