Skip to content

Commit aa1d550

Browse files
MoLowdanielleadams
authored andcommitted
deps: add minimatch as a dependency
PR-URL: #47499 Refs: #47490 Refs: #47486 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com>
1 parent 7f1bdb4 commit aa1d550

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+6837
-0
lines changed

.github/workflows/tools.yml

+8
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,14 @@ jobs:
193193
cat temp-output
194194
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
195195
rm temp-output
196+
- id: minimatch
197+
subsystem: deps
198+
label: dependencies
199+
run: |
200+
./tools/dep_updaters/update-minimatch.sh > temp-output
201+
cat temp-output
202+
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
203+
rm temp-output
196204
- id: root-certificates
197205
subsystem: crypto
198206
label: crypto, notable-change

LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -1365,6 +1365,25 @@ The externally maintained libraries used by Node.js are:
13651365
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
13661366
"""
13671367

1368+
- minimatch, located at deps/minimatch, is licensed as follows:
1369+
"""
1370+
The ISC License
1371+
1372+
Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors
1373+
1374+
Permission to use, copy, modify, and/or distribute this software for any
1375+
purpose with or without fee is hereby granted, provided that the above
1376+
copyright notice and this permission notice appear in all copies.
1377+
1378+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1379+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1380+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1381+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1382+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1383+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1384+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1385+
"""
1386+
13681387
- npm, located at deps/npm, is licensed as follows:
13691388
"""
13701389
The npm application

deps/minimatch/LICENSE

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License
2+
3+
Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
15+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

0 commit comments

Comments
 (0)