Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sindresorhus/globals
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v15.7.0
Choose a base ref
...
head repository: sindresorhus/globals
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v15.8.0
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Jul 2, 2024

  1. Add es2025 globals (Same as es2021) (#256)

    fisker authored Jul 2, 2024
    Copy the full SHA
    2ef342a View commit details
  2. 15.8.0

    sindresorhus committed Jul 2, 2024
    Copy the full SHA
    f6b3978 View commit details
Showing with 67 additions and 4 deletions.
  1. +3 −3 .github/workflows/update.yml
  2. +1 −0 data/es2025.mjs
  3. +62 −0 globals.json
  4. +1 −1 package.json
6 changes: 3 additions & 3 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -3,8 +3,8 @@ name: Update
on:
workflow_dispatch:
schedule:
# “At 00:00 on Sunday.” https://crontab.guru/#0_0_*_*_0
- cron: "0 0 * * 0"
# “At 00:00 on day-of-month 1.” https://crontab.guru/#0_0_1_*_*
- cron: "0 0 1 * *"

jobs:
update:
@@ -23,4 +23,4 @@ jobs:
commit-message: Update
branch: automated-update
branch-suffix: timestamp
title: Update
title: Update globals
1 change: 1 addition & 0 deletions data/es2025.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {default} from './es2024.mjs';
62 changes: 62 additions & 0 deletions globals.json
Original file line number Diff line number Diff line change
@@ -1854,6 +1854,68 @@
"WeakRef": false,
"WeakSet": false
},
"es2025": {
"AggregateError": false,
"Array": false,
"ArrayBuffer": false,
"Atomics": false,
"BigInt": false,
"BigInt64Array": false,
"BigUint64Array": false,
"Boolean": false,
"DataView": false,
"Date": false,
"decodeURI": false,
"decodeURIComponent": false,
"encodeURI": false,
"encodeURIComponent": false,
"Error": false,
"escape": false,
"eval": false,
"EvalError": false,
"FinalizationRegistry": false,
"Float32Array": false,
"Float64Array": false,
"Function": false,
"globalThis": false,
"Infinity": false,
"Int16Array": false,
"Int32Array": false,
"Int8Array": false,
"Intl": false,
"isFinite": false,
"isNaN": false,
"JSON": false,
"Map": false,
"Math": false,
"NaN": false,
"Number": false,
"Object": false,
"parseFloat": false,
"parseInt": false,
"Promise": false,
"Proxy": false,
"RangeError": false,
"ReferenceError": false,
"Reflect": false,
"RegExp": false,
"Set": false,
"SharedArrayBuffer": false,
"String": false,
"Symbol": false,
"SyntaxError": false,
"TypeError": false,
"Uint16Array": false,
"Uint32Array": false,
"Uint8Array": false,
"Uint8ClampedArray": false,
"undefined": false,
"unescape": false,
"URIError": false,
"WeakMap": false,
"WeakRef": false,
"WeakSet": false
},
"es5": {
"Array": false,
"Boolean": false,
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "globals",
"version": "15.7.0",
"version": "15.8.0",
"description": "Global identifiers from different JavaScript environments",
"license": "MIT",
"repository": "sindresorhus/globals",