You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
📅 Schedule: Branch creation - Between 09:00 AM and 06:59 PM, Monday through Friday ( * 9-18 * * 1-5 ) in timezone Asia/Tokyo, 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 these updates again.
If you want to rebase/retry this PR, check this box
The globals package provides a comprehensive collection of global identifiers (variables and functions) from different JavaScript environments. It helps ESLint and other linting tools recognize which variables are valid in specific environments (browser, Node.js, Jasmine, etc.) and whether they can be overwritten.
✨ Main Changes
v17.1.0
Added webpack and rspack globals - New global identifiers for these bundler tools
v17.2.0
jasmine: Added throwUnless and throwUnlessAsync globals - New assertion functions for Jasmine testing framework
import*asglobalsfrom"globals";// Lines 22-23: Creates set of built-in identifiersexportconstES_BUILTINS=newSet([
...Object.keys(globalsMap.builtin??{}),
...Object.keys(globalsMap["shared-node-browser"]??{}),]);
Feature used: globals.builtin (ECMAScript builtins) and globals['shared-node-browser'] (shared runtime globals)
Impact: No breaking changes. The update may add new globals to these sets, which improves free variable detection accuracy for the PF execution environment
Impact: No breaking changes. This update only adds new globals to other environments and does not affect globals.node
✅ Recommended Actions
None - This is a safe update with no breaking changes.
All changes are additive (new globals for webpack, rspack, and jasmine environments, plus general globals updates). The existing usage of globals.node, globals.builtin, and globals['shared-node-browser'] in this codebase will continue to work as expected and may benefit from more accurate global identifier lists.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:
17.0.0→17.4.0Release Notes
sindresorhus/globals (globals)
v17.4.0Compare Source
v17.3.0Compare Source
295fba9v17.2.0Compare Source
jasmine: AddthrowUnlessandthrowUnlessAsyncglobals (#335)97f23a7v17.1.0Compare Source
webpackandrspackglobals (#333)65cae73Configuration
📅 Schedule: Branch creation - Between 09:00 AM and 06:59 PM, Monday through Friday ( * 9-18 * * 1-5 ) in timezone Asia/Tokyo, 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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.