@mongosh/node-runtime-worker-thread 3.3.11 → 3.3.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.sbom/dependencies.json +421 -294
- package/dist/purls.txt +14 -3
- package/dist/report.html +2 -2
- package/dist/worker-runtime.js +107 -102
- package/dist/worker-runtime.js.LICENSE.txt +24 -0
- package/package.json +7 -7
|
@@ -247,12 +247,36 @@
|
|
|
247
247
|
* MIT Licensed
|
|
248
248
|
*/
|
|
249
249
|
|
|
250
|
+
/*! *****************************************************************************
|
|
251
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
252
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
253
|
+
this file except in compliance with the License. You may obtain a copy of the
|
|
254
|
+
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
255
|
+
|
|
256
|
+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
257
|
+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
258
|
+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
259
|
+
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
260
|
+
|
|
261
|
+
See the Apache Version 2.0 License for specific language governing permissions
|
|
262
|
+
and limitations under the License.
|
|
263
|
+
***************************************************************************** */
|
|
264
|
+
|
|
250
265
|
/*! fetch-blob. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
|
|
251
266
|
|
|
252
267
|
/*! node-domexception. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
|
|
253
268
|
|
|
254
269
|
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
255
270
|
|
|
271
|
+
/**
|
|
272
|
+
* @license
|
|
273
|
+
* Lodash <https://lodash.com/>
|
|
274
|
+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
275
|
+
* Released under MIT license <https://lodash.com/license>
|
|
276
|
+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
277
|
+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
278
|
+
*/
|
|
279
|
+
|
|
256
280
|
/**
|
|
257
281
|
* @license
|
|
258
282
|
* web-streams-polyfill v3.3.3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mongosh/node-runtime-worker-thread",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.13",
|
|
4
4
|
"description": "MongoDB shell runtime that lives in a worker thread",
|
|
5
5
|
"homepage": "https://github.com/mongodb-js/mongosh",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
|
|
40
40
|
"@mongodb-js/prettier-config-devtools": "^1.0.1",
|
|
41
|
-
"@mongodb-js/sbom-tools": "^0.
|
|
41
|
+
"@mongodb-js/sbom-tools": "^0.8.1",
|
|
42
42
|
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
|
|
43
|
-
"@mongosh/browser-runtime-core": "^3.
|
|
44
|
-
"@mongosh/browser-runtime-electron": "^3.
|
|
43
|
+
"@mongosh/browser-runtime-core": "^3.15.0",
|
|
44
|
+
"@mongosh/browser-runtime-electron": "^3.15.0",
|
|
45
45
|
"@mongosh/service-provider-core": "3.3.3",
|
|
46
|
-
"@mongosh/service-provider-node-driver": "3.10.
|
|
47
|
-
"@mongosh/types": "3.8.
|
|
46
|
+
"@mongosh/service-provider-node-driver": "^3.10.2",
|
|
47
|
+
"@mongosh/types": "3.8.2",
|
|
48
48
|
"bson": "^6.10.3",
|
|
49
49
|
"depcheck": "^1.4.7",
|
|
50
50
|
"eslint": "^7.25.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"system-ca": "^2.0.1",
|
|
59
59
|
"web-worker": "^1.3.0"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "7f87f03dd2fb8ce7d81f71523ed46c53722b3aeb"
|
|
62
62
|
}
|