fix(deps): update npm - - package.json #883
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^7.27.1
->^7.28.0
^7.27.1
->^7.28.0
^19.0.0
->^19.8.1
^19.0.0
->^19.8.1
^0.25.6
->^0.25.8
^0.25.6
->^0.25.8
0.25.6
->0.25.8
0.25.6
->0.25.8
^4.11.0
->^4.12.4
^19.8.0
->^19.15.5
^4.0.2
->^4.1.2
^5.0.1
->^5.0.3
^1.6.6
->^1.6.7
^4.17.15
->^4.17.20
^22.13.5
->^22.17.0
^17.0.11
->^17.0.26
^8.29.0
->^8.38.0
^8.29.0
->^8.38.0
^4.0.2
->^4.7.0
^1.6.0
->^1.11.0
^4.2.0
->^4.5.0
^4.3.0
->^4.4.0
^9.0.0
->^9.2.0
^14.5.1
->^14.5.3
^3.4.33
->^3.4.52
^8.57.0
->^8.57.1
^10.0.1
->^10.1.8
^5.0.0
->^5.5.3
^7.21.5
->^7.37.5
^2.0.0
->^2.1.1
^7.1.5
->^7.5.1
^1.17.1
->^1.18.2
^9.0.0
->^9.1.7
^1.27.1
->^1.32.2
^1.4.1
->^1.5.0
^6.0.0
->^6.0.3
^2.29.4
->^2.30.1
^5.0.0
->^5.9.2
^6.6.1
->^6.10.1
^6.4.2
->^6.6.2
^1.0.4
->^1.4.0
^1.5.5
->^1.5.6
^3.0.0
->^3.6.2
^16.13.1
->^16.14.0
^16.13.1
->^16.14.0
6.28.2
->6.30.1
^3.25.0
->^3.28.0
^4.19.3
->^4.20.3
^5.7.3
->^5.8.3
^11.0.0
->^11.1.0
Release Notes
conventional-changelog/commitlint (@commitlint/cli)
v19.8.1
Compare Source
Bug Fixes
v19.8.0
Compare Source
Performance Improvements
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
v19.7.1
Compare Source
Note: Version bump only for package @commitlint/cli
conventional-changelog/commitlint (@commitlint/config-conventional)
v19.8.1
Compare Source
Note: Version bump only for package @commitlint/config-conventional
v19.8.0
Compare Source
Performance Improvements
node:
prefix to bypass require.cache call for builtins (#4302) (0cd8f41)19.7.1 (2025-02-02)
Note: Version bump only for package @commitlint/config-conventional
v19.7.1
Compare Source
Note: Version bump only for package @commitlint/config-conventional
evanw/esbuild (@esbuild/darwin-arm64)
v0.25.8
Compare Source
Fix another TypeScript parsing edge case (#4248)
This fixes a regression with a change in the previous release that tries to more accurately parse TypeScript arrow functions inside the
?:
operator. The regression specifically involves parsing an arrow function containing a#private
identifier inside the middle of a?:
ternary operator inside a class body. This was fixed by propagating private identifier state into the parser clone used to speculatively parse the arrow function body. Here is an example of some affected code:Fix a regression with the parsing of source phase imports
The change in the previous release to parse source phase imports failed to properly handle the following cases:
Parsing for these cases should now be fixed. The first case was incorrectly treated as a syntax error because esbuild was expecting the second case. And the last case was previously allowed but is now forbidden. TypeScript hasn't added this feature yet so it remains to be seen whether the last case will be allowed, but it's safer to disallow it for now. At least Babel doesn't allow the last case when parsing TypeScript, and Babel was involved with the source phase import specification.
v0.25.7
Compare Source
Parse and print JavaScript imports with an explicit phase (#4238)
This release adds basic syntax support for the
defer
andsource
import phases in JavaScript:defer
This is a stage 3 proposal for an upcoming JavaScript feature that will provide one way to eagerly load but lazily initialize imported modules. The imported module is automatically initialized on first use. Support for this syntax will also be part of the upcoming release of TypeScript 5.9. The syntax looks like this:
Note that this feature deliberately cannot be used with the syntax
import defer foo from "<specifier>"
orimport defer { foo } from "<specifier>"
.source
This is a stage 3 proposal for an upcoming JavaScript feature that will provide another way to eagerly load but lazily initialize imported modules. The imported module is returned in an uninitialized state. Support for this syntax may or may not be a part of TypeScript 5.9 (see this issue for details). The syntax looks like this:
Note that this feature deliberately cannot be used with the syntax
import defer * as foo from "<specifier>"
orimport defer { foo } from "<specifier>"
.This change only adds support for this syntax. These imports cannot currently be bundled by esbuild. To use these new features with esbuild's bundler, the imported paths must be external to the bundle and the output format must be set to
esm
.Support optionally emitting absolute paths instead of relative paths (#338, #2082, #3023)
This release introduces the
--abs-paths=
feature which takes a comma-separated list of situations where esbuild should use absolute paths instead of relative paths. There are currently three supported situations:code
(comments and string literals),log
(log message text and location info), andmetafile
(the JSON build metadata).Using absolute paths instead of relative paths is not the default behavior because it means that the build results are no longer machine-independent (which means builds are no longer reproducible). Absolute paths can be useful when used with certain terminal emulators that allow you to click on absolute paths in the terminal text and/or when esbuild is being automatically invoked from several different directories within the same script.
Fix a TypeScript parsing edge case (#4241)
This release fixes an edge case with parsing an arrow function in TypeScript with a return type that's in the middle of a
?:
ternary operator. For example:The
:
token in the value assigned tox
pairs with the?
token, so it's not the start of a return type annotation. However, the first:
token in the value assigned toy
is the start of a return type annotation because after parsing the arrow function body, it turns out there's another:
token that can be used to pair with the?
token. This case is notable as it's the first TypeScript edge case that esbuild has needed a backtracking parser to parse. It has been addressed by a quick hack (cloning the whole parser) as it's a rare edge case and esbuild doesn't otherwise need a backtracking parser. Hopefully this is sufficient and doesn't cause any issues.Inline small constant strings when minifying
Previously esbuild's minifier didn't inline string constants because strings can be arbitrarily long, and this isn't necessarily a size win if the string is used more than once. Starting with this release, esbuild will now inline string constants when the length of the string is three code units or less. For example:
Note that esbuild's constant inlining only happens in very restrictive scenarios to avoid issues with TDZ handling. This change doesn't change when esbuild's constant inlining happens. It only expands the scope of it to include certain string literals in addition to numeric and boolean literals.
primer/octicons (@primer/octicons-react)
v19.15.5
Compare Source
Patch Changes
02cdd0c2
Thanks @CameronFoxly! - Update Loop icon for visual alignmentv19.15.4
Compare Source
Patch Changes
239cdee1
Thanks @CameronFoxly! - Add spaces, agents, loops, and adjust mentionv19.15.3
Compare Source
Patch Changes
ce04eca0
Thanks @TylerJDev! - Add outlined sparkle iconv19.15.2
Compare Source
Patch Changes
795101e3
Thanks @smockle! - Addpause
iconv19.15.1
Compare Source
Patch Changes
8c9b6112
Thanks @francinelucca! - fix 24px id-badge asset #1048818a40c5
Thanks @jonrohan! - Update mark-github-24 sizing #1050v19.15.0
Compare Source
Minor Changes
6481783a
Thanks @dylanatsmith! - Add square-circle iconv19.14.0
Compare Source
Minor Changes
7402e69c
Thanks @jonrohan! - Update octicons-react to use presentational attributes over inline styles for base styles48198033
Thanks @joshblack! - Add support for SVG props to base iconsseald/nedb (@seald-io/nedb)
v4.1.2
Compare Source
Fixed
createModifierFunction
v4.1.1
Compare Source
Fixed
v4.1.0
Compare Source
Feature
testSerializationHooks
argument.typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v8.38.0
Compare Source
🩹 Fixes
isolatedDeclarations
if enabled inconstructor
option (#11351)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.37.0
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.36.0
Compare Source
This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.35.1
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.35.0
Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.34.1
Compare Source
This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.34.0
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.33.1
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.33.0
Compare Source
This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.32.1
Compare Source
🩹 Fixes
TSMappedType
with no type annotation (#11180)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.32.0
Compare Source
🚀 Features
allowRethrowing
(#11075)🩹 Fixes
this
from optional parameter overload check (#11005)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.31.1
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.31.0
Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.30.1
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.30.0
Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.29.1
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v8.38.0
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.37.0
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.36.0
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.35.1
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.35.0
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.34.1
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.34.0
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.33.1
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescri
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.
This PR was generated by Mend Renovate. View the repository job log.