New Upstream Release - node-globals

Ready changes

Summary

Merged new upstream version: 13.20.0 (was: 13.18.0).

Resulting package

Built on 2023-06-07T16:37 (took 5m14s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-releases node-globals

Lintian Result

Diff

diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..6313b56
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+* text=auto eol=lf
diff --git a/.github/funding.yml b/.github/funding.yml
new file mode 100644
index 0000000..9035c7f
--- /dev/null
+++ b/.github/funding.yml
@@ -0,0 +1,2 @@
+github: sindresorhus
+tidelift: npm/globals
diff --git a/.github/security.md b/.github/security.md
new file mode 100644
index 0000000..5358dc5
--- /dev/null
+++ b/.github/security.md
@@ -0,0 +1,3 @@
+# Security Policy
+
+To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure.
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..c1870cf
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,22 @@
+name: CI
+on:
+  - push
+  - pull_request
+jobs:
+  test:
+    name: Node.js ${{ matrix.node-version }}
+    runs-on: ubuntu-latest
+    strategy:
+      fail-fast: false
+      matrix:
+        node-version:
+          - 14
+          - 12
+          - 10
+    steps:
+      - uses: actions/checkout@v2
+      - uses: actions/setup-node@v1
+        with:
+          node-version: ${{ matrix.node-version }}
+      - run: npm install
+      - run: npm test
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..239ecff
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+node_modules
+yarn.lock
diff --git a/debian/changelog b/debian/changelog
index 6173bc0..56de6ce 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+node-globals (13.20.0-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Wed, 07 Jun 2023 16:32:53 -0000
+
 node-globals (13.18.0-1) unstable; urgency=medium
 
   * Team upload
diff --git a/debian/patches/use-tape-for-tests.patch b/debian/patches/use-tape-for-tests.patch
index 43d22de..c813a16 100644
--- a/debian/patches/use-tape-for-tests.patch
+++ b/debian/patches/use-tape-for-tests.patch
@@ -3,8 +3,10 @@ Author: Utkarsh Gupta <guptautkarsh2102@gmail.com>
 Forwarded: not-needed
 Last-Update: 2020-11-27
 
---- a/test.js
-+++ b/test.js
+Index: node-globals.git/test.js
+===================================================================
+--- node-globals.git.orig/test.js
++++ node-globals.git/test.js
 @@ -1,9 +1,10 @@
 -import test from 'ava';
 -import globals from '.';
@@ -18,7 +20,7 @@ Last-Update: 2020-11-27
  });
  
  test('ensure alphabetical order', t => {
-@@ -14,6 +15,7 @@
+@@ -14,6 +15,7 @@ test('ensure alphabetical order', t => {
  			`The \`${env}\` keys don't have the correct alphabetical order`
  		);
  	}
@@ -26,7 +28,7 @@ Last-Update: 2020-11-27
  });
  
  test('`node` is `nodeBuiltin` with CommonJS arguments', t => {
-@@ -37,4 +39,5 @@
+@@ -37,4 +39,5 @@ test('`node` is `nodeBuiltin` with Commo
  			`The builtin ${builtin} is not a CommonJS argument`
  		);
  	}
diff --git a/globals.json b/globals.json
index 8521464..c846007 100644
--- a/globals.json
+++ b/globals.json
@@ -685,6 +685,7 @@
 		"NavigationPreloadManager": false,
 		"navigator": false,
 		"Navigator": false,
+		"NavigatorUAData": false,
 		"NetworkInformation": false,
 		"Node": false,
 		"NodeFilter": false,
@@ -1181,7 +1182,9 @@
 		"EventTarget": false,
 		"exports": true,
 		"fetch": false,
+		"FormData": false,
 		"global": false,
+		"Headers": false,
 		"Intl": false,
 		"MessageChannel": false,
 		"MessageEvent": false,
@@ -1190,7 +1193,9 @@
 		"performance": false,
 		"process": false,
 		"queueMicrotask": false,
+		"Request": false,
 		"require": false,
+		"Response": false,
 		"setImmediate": false,
 		"setInterval": false,
 		"setTimeout": false,
@@ -1214,7 +1219,9 @@
 		"Event": false,
 		"EventTarget": false,
 		"fetch": false,
+		"FormData": false,
 		"global": false,
+		"Headers": false,
 		"Intl": false,
 		"MessageChannel": false,
 		"MessageEvent": false,
@@ -1222,6 +1229,8 @@
 		"performance": false,
 		"process": false,
 		"queueMicrotask": false,
+		"Request": false,
+		"Response": false,
 		"setImmediate": false,
 		"setInterval": false,
 		"setTimeout": false,
@@ -1720,12 +1729,16 @@
 		"Event": false,
 		"EventTarget": false,
 		"fetch": false,
+		"FormData": false,
+		"Headers": false,
 		"Intl": false,
 		"MessageChannel": false,
 		"MessageEvent": false,
 		"MessagePort": false,
 		"performance": false,
 		"queueMicrotask": false,
+		"Request": false,
+		"Response": false,
 		"setInterval": false,
 		"setTimeout": false,
 		"structuredClone": false,
diff --git a/package.json b/package.json
index 9bf09ed..17cc85a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
 	"name": "globals",
-	"version": "13.18.0",
+	"version": "13.20.0",
 	"description": "Global identifiers from different JavaScript environments",
 	"license": "MIT",
 	"repository": "sindresorhus/globals",

Debdiff

File lists identical (after any substitutions)

No differences were encountered in the control files

More details

Full run details