Skip to content

fix(deps): update dependency @rushstack/node-core-library to v5#8816

Merged
hsubox76 merged 2 commits intomainfrom
renovate/rushstack-node-core-library-5.x
Feb 20, 2026
Merged

fix(deps): update dependency @rushstack/node-core-library to v5#8816
hsubox76 merged 2 commits intomainfrom
renovate/rushstack-node-core-library-5.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 28, 2025

This PR contains the following updates:

Package Change Age Confidence
@rushstack/node-core-library (source) 3.66.15.19.1 age confidence

Release Notes

microsoft/rushstack (@​rushstack/node-core-library)

v5.19.1

Compare Source

Sat, 06 Dec 2025 01:12:28 GMT

Patches
  • Replace fs-extra with node:fs in FileWriter

v5.19.0

Compare Source

Fri, 21 Nov 2025 16:13:56 GMT

Minor changes
  • Update Executable.getProcessInfoBy* APIs to use PowerShell on Windows to support latest Windows 11 versions.

v5.18.0

Compare Source

Fri, 24 Oct 2025 00:13:38 GMT

Minor changes
  • Add "Objects.areDeepEqual" and "User.getHomeFolder" APIs.

v5.17.1

Compare Source

Wed, 22 Oct 2025 00:57:54 GMT

Patches
  • Update the return type of Executable.waitForExitAsync to omit stdout and stderr if an encoding parameter isn't passed to the options object.

v5.17.0

Compare Source

Wed, 08 Oct 2025 00:13:28 GMT

Minor changes
  • Add an allowOversubscription option to the Async API functions which prevents running tasks from exceeding concurrency. Change its default to false.

v5.16.0

Compare Source

Fri, 03 Oct 2025 20:09:59 GMT

Minor changes
  • Normalize import of builtin modules to use the node: protocol.

v5.15.1

Compare Source

Tue, 30 Sep 2025 23:57:45 GMT

Version update only

v5.15.0

Compare Source

Tue, 30 Sep 2025 20:33:51 GMT

Minor changes
  • Add FileError.getProblemMatcher() which returns the problem matcher compatible with IOperationExecutionResult.problemCollector as well as VS Code, GitHub Actions

v5.14.0

Compare Source

Wed, 23 Jul 2025 20:55:57 GMT

Minor changes
  • Add a Async.runWithTimeoutAsync function that executes an async function, resolving if the specified timeout elapses first.

v5.13.1

Compare Source

Thu, 01 May 2025 00:11:12 GMT

Patches
  • Fix a bug in FileSystem.isErrnoException that failed to identify errors if the underlying method was invoked using only a file descriptor, e.g. for fs.readSync.

v5.13.0

Compare Source

Tue, 25 Mar 2025 15:11:15 GMT

Minor changes
  • Expand FileSystem.writeBuffersToFile and FileSystem.writeBuffersToFileAsync to take more kinds of buffers.

v5.12.0

Compare Source

Tue, 11 Mar 2025 02:12:33 GMT

Minor changes
  • Add useNodeJSResolver option to Import.resolvePackage to rely on the built-in require.resolve and share its cache.
  • In RealNodeModulePathResolver, add the option to configure to throw or not throw for non-existent paths.
Patches
  • In RealNodeModulePathResolver, add negative caching when a path segment that might be a symbolic link is not.

v5.11.0

Compare Source

Thu, 30 Jan 2025 01:11:42 GMT

Minor changes
  • Update fs-extra to 11.3.0.

v5.10.2

Compare Source

Thu, 09 Jan 2025 01:10:10 GMT

Patches
  • Provide the retryCount parameter to actions executed using Async.runWithRetriesAsync

v5.10.1

Compare Source

Sat, 14 Dec 2024 01:11:07 GMT

Patches
  • Fix handling of trailing slashes and relative paths in RealNodeModulePath to match semantics of fs.realpathSync.native.

v5.10.0

Compare Source

Fri, 22 Nov 2024 01:10:43 GMT

Minor changes
  • Add RealNodeModulePathResolver class to get equivalent behavior to realpath with fewer system calls (and therefore higher performance) in the typical scenario where the only symlinks in the repository are inside of node_modules folders and are links to package folders.

v5.9.0

Compare Source

Fri, 13 Sep 2024 00:11:42 GMT

Minor changes
  • Add a Sort.sortKeys function for sorting keys in an object
  • Rename LockFile.acquire to Lockfile.acquireAsync.
Patches
  • Fix an issue where attempting to acquire multiple LockFiles at the same time on POSIX would cause the second to immediately be acquired without releasing the first.

v5.8.0

Compare Source

Tue, 10 Sep 2024 20:08:11 GMT

Minor changes
  • Add a customFormats option to JsonSchema.

v5.7.0

Compare Source

Wed, 21 Aug 2024 05:43:04 GMT

Minor changes
  • Introduce a Text.splitByNewLines function.

v5.6.0

Compare Source

Mon, 12 Aug 2024 22:16:04 GMT

Minor changes
  • Add a ignoreSchemaField option to the JsonSchema.validateObject options to ignore $schema properties and add an options object argument to JsonSchema.validateObjectWithCallback with the same ignoreSchemaField option.

v5.5.1

Compare Source

Sat, 27 Jul 2024 00:10:27 GMT

Patches
  • Include CHANGELOG.md in published releases again

v5.5.0

Compare Source

Tue, 16 Jul 2024 00:36:21 GMT

Minor changes
  • Add support for the jsonSyntax option to the JsonFile.save, JsonFile.saveAsync, and JsonFile.stringify functions.

v5.4.1

Compare Source

Thu, 30 May 2024 00:13:05 GMT

Patches
  • Include missing type modifiers on type-only exports.

v5.4.0

Compare Source

Wed, 29 May 2024 02:03:50 GMT

Minor changes
  • Add a throwOnSignal option to the Executable.waitForExitAsync to control if that function should throw if the process is terminated with a signal.
  • Add a signal property to the result of Executable.waitForExitAsync that includes a signal if the process was termianted by a signal.

v5.3.0

Compare Source

Tue, 28 May 2024 15:10:09 GMT

Minor changes
  • Include typings for the the "files" field in IPackageJson.

v5.2.0

Compare Source

Tue, 28 May 2024 00:09:47 GMT

Minor changes
  • Include typings for the "exports" and "typesVersions" fields in IPackageJson.

v5.1.0

Compare Source

Sat, 25 May 2024 04:54:07 GMT

Minor changes
  • Update JsonFile to support loading JSON files that include object keys that are members of Object.prototype.
Patches
  • Fix an issue with JsonSchema where "uniqueItems": true would throw an error if the "item" type in the schema has "type": "object".

v5.0.0

Compare Source

Thu, 23 May 2024 02:26:56 GMT

Breaking changes
  • Replace z-schema with ajv for schema validation and add support for json-schema draft-07.
  • Remove the deprecated Async.sleep function.
  • Convert FileConstants and FolderConstants from enums to const objects.
Patches
  • Fix an issue where waitForExitAsync() might reject before all output was collected

v4.3.0

Compare Source

Wed, 15 May 2024 06:04:17 GMT

Minor changes
  • Rename Async.sleep to Async.sleepAsync. The old function is marked as @deprecated.

v4.2.1

Compare Source

Fri, 10 May 2024 05:33:33 GMT

Patches
  • Fix a bug in Async.forEachAsync where weight wasn't respected.

v4.2.0

Compare Source

Mon, 06 May 2024 15:11:04 GMT

Minor changes
  • Add a new weighted: true option to the Async.forEachAsync method that allows each element to specify how much of the allowed parallelism the callback uses.
Patches
  • Add a new weighted: true option to the Async.mapAsync method that allows each element to specify how much of the allowed parallelism the callback uses.

v4.1.0

Compare Source

Wed, 10 Apr 2024 15:10:08 GMT

Minor changes
  • Add writeBuffersToFile and writeBuffersToFileAsync methods to FileSystem for efficient writing of concatenated files.

v4.0.2

Compare Source

Wed, 21 Feb 2024 21:45:28 GMT

Patches
  • Replace the dependency on the colors package with Colorize from @rushstack/terminal.

v4.0.1

Compare Source

Tue, 20 Feb 2024 21:45:10 GMT

Patches
  • Remove a no longer needed dependency on the colors package

v4.0.0

Compare Source

Mon, 19 Feb 2024 21:54:27 GMT

Breaking changes
  • (BREAKING CHANGE) Remove the Terminal and related APIs (Colors, AsciEscape, etc). These have been moved into the @​rushstack/terminal package. See #​3176 for details.
  • Remove deprecated FileSystem.readFolder, FileSystem.readFolderAsync, and LegacyAdapters.sortStable APIs.
Minor changes
  • Graduate Async and MinimumHeap APIs from beta to public.

Configuration

📅 Schedule: Branch creation - "before 3am on Friday" (UTC), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 requested a review from a team as a code owner February 28, 2025 02:07
@changeset-bot
Copy link

changeset-bot bot commented Feb 28, 2025

⚠️ No Changeset found

Latest commit: 11761f1

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/rushstack-node-core-library-5.x branch from 8f18fed to 844d683 Compare March 11, 2025 02:27
@renovate renovate bot force-pushed the renovate/rushstack-node-core-library-5.x branch from 844d683 to 1b55b6e Compare March 25, 2025 16:59
@google-oss-bot
Copy link
Collaborator

@google-oss-bot
Copy link
Collaborator

Size Analysis Report 1

Affected Products

No changes between base commit (ab8eb26) and merge commit (faea37b).

Test Logs

  1. https://storage.googleapis.com/firebase-sdk-metric-reports/i78U4HD7GW.html

@renovate renovate bot force-pushed the renovate/rushstack-node-core-library-5.x branch from 44f5750 to e5c8778 Compare February 18, 2026 19:26
@renovate renovate bot changed the title Update dependency @rushstack/node-core-library to v5 fix(deps): update dependency @rushstack/node-core-library to v5 Feb 18, 2026
@renovate
Copy link
Contributor Author

renovate bot commented Feb 18, 2026

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.

@hsubox76 hsubox76 merged commit f126686 into main Feb 20, 2026
49 of 54 checks passed
@hsubox76 hsubox76 deleted the renovate/rushstack-node-core-library-5.x branch February 20, 2026 18:19
MaesterChestnut pushed a commit that referenced this pull request Feb 26, 2026
* fix(deps): update dependency @rushstack/node-core-library to v5

* Fix method name

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <chholland@google.com>
MaesterChestnut added a commit that referenced this pull request Feb 27, 2026
* Refactor Github Action per b/485167538 (#9555)

Co-authored-by: Ben Knutson <benknutson@google.com>

* build(deps): bump lodash in /packages/auth-compat/demo/functions (#9482)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/auth-compat/demo (#9464)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/rules-unit-testing/functions (#9463)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/auth/demo/functions (#9466)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency webpack-dev-server to v5.2.1 [security] (#9078)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update google-github-actions/auth digest to fc21748 (#8879)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps-dev): bump lodash from 4.17.21 to 4.17.23 (#9465)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Remove health metrics workflows (#9571)

* feat(ai): Automatic function calling (#9489)

* Updating otel dependencies

* format

* Updating otel dependencies

* Remove fetch and user interaction libaries

* Removing node tracing

* format

* Update angular example to modern standards (#9583)

* chore(deps): update dependency @rollup/plugin-strip to v3 (#8745)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency @rollup/plugin-virtual to v3 (#8771)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Use environment for wdr tokens (#9578)

* use environment for wdr tokens

* missed a file

* fix(deps): update dependency @rushstack/node-core-library to v5 (#8816)

* fix(deps): update dependency @rushstack/node-core-library to v5

* Fix method name

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <chholland@google.com>

* Update logs endpoint w/ location (fixed to `global` for now)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Google Admin <github-admin@google.com>
Co-authored-by: Ben Knutson <benknutson@google.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <chholland@google.com>
Co-authored-by: Anit Das <anitdas@google.com>
Co-authored-by: Anthony Barone <tonybaroneee@gmail.com>
Co-authored-by: Morgan Chen <morganchen12@gmail.com>
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.

2 participants