Skip to content

Commit 57836fb

Browse files
fix(deps): bump tar from 7.5.2 to 7.5.3 (#260)
* build(deps): bump tar from 7.5.2 to 7.5.3 Bumps [tar](https://github.com/isaacs/node-tar) from 7.5.2 to 7.5.3. - [Release notes](https://github.com/isaacs/node-tar/releases) - [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md) - [Commits](isaacs/node-tar@v7.5.2...v7.5.3) --- updated-dependencies: - dependency-name: tar dependency-version: 7.5.3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * fixup: build --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Michael Cousins <[email protected]>
1 parent d2fef91 commit 57836fb

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

dist/main.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2020,7 +2020,7 @@ var WriteStreamSync = class extends WriteStream {
20202020
};
20212021

20222022
//#endregion
2023-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/options.js
2023+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/options.js
20242024
const argmap = new Map([
20252025
["C", "cwd"],
20262026
["f", "file"],
@@ -2065,7 +2065,7 @@ const dealias = (opt = {}) => {
20652065
};
20662066

20672067
//#endregion
2068-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/make-command.js
2068+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/make-command.js
20692069
const makeCommand = (syncFile, asyncFile, syncNoFile, asyncNoFile, validate) => {
20702070
return Object.assign((opt_ = [], entries, cb) => {
20712071
if (Array.isArray(opt_)) {
@@ -2459,7 +2459,7 @@ var ZstdDecompress = class extends Zstd {
24592459
};
24602460

24612461
//#endregion
2462-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/large-numbers.js
2462+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/large-numbers.js
24632463
const encode = (num, buf) => {
24642464
if (!Number.isSafeInteger(num)) throw Error("cannot encode number outside of javascript safe integer range");
24652465
else if (num < 0) encodeNegative(num, buf);
@@ -2525,7 +2525,7 @@ const onesComp = (byte) => (255 ^ byte) & 255;
25252525
const twosComp = (byte) => (255 ^ byte) + 1 & 255;
25262526

25272527
//#endregion
2528-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/types.js
2528+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/types.js
25292529
const isCode = (c) => name.has(c);
25302530
const name = new Map([
25312531
["0", "File"],
@@ -2553,7 +2553,7 @@ const name = new Map([
25532553
const code = new Map(Array.from(name).map((kv) => [kv[1], kv[0]]));
25542554

25552555
//#endregion
2556-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/header.js
2556+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/header.js
25572557
var Header = class {
25582558
cksumValid = false;
25592559
needPax = false;
@@ -2731,7 +2731,7 @@ const NULLS = new Array(156).join("\0");
27312731
const encString = (buf, off, size, str) => str === void 0 ? false : (buf.write(str + NULLS, off, size, "utf8"), str.length !== Buffer.byteLength(str) || str.length > size);
27322732

27332733
//#endregion
2734-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/pax.js
2734+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/pax.js
27352735
var Pax = class Pax {
27362736
atime;
27372737
mtime;
@@ -2828,12 +2828,12 @@ const parseKVLine = (set, line) => {
28282828
};
28292829

28302830
//#endregion
2831-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/normalize-windows-path.js
2831+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/normalize-windows-path.js
28322832
const platform = process.env.TESTING_TAR_FAKE_PLATFORM || process.platform;
28332833
const normalizeWindowsPath = platform !== "win32" ? (p) => p : (p) => p && p.replace(/\\/g, "/");
28342834

28352835
//#endregion
2836-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/read-entry.js
2836+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/read-entry.js
28372837
var ReadEntry = class extends Minipass {
28382838
extended;
28392839
globalExtended;
@@ -2937,7 +2937,7 @@ var ReadEntry = class extends Minipass {
29372937
};
29382938

29392939
//#endregion
2940-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/warn-method.js
2940+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/warn-method.js
29412941
const warnMethod = (self, code$1, message, data = {}) => {
29422942
if (self.file) data.file = self.file;
29432943
if (self.cwd) data.cwd = self.cwd;
@@ -2954,7 +2954,7 @@ const warnMethod = (self, code$1, message, data = {}) => {
29542954
};
29552955

29562956
//#endregion
2957-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/parse.js
2957+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/parse.js
29582958
const maxMetaEntrySize = 1024 * 1024;
29592959
const gzipHeader = Buffer.from([31, 139]);
29602960
const zstdHeader = Buffer.from([
@@ -3365,7 +3365,7 @@ while (this[PROCESSENTRY](this[QUEUE].shift()));
33653365
};
33663366

33673367
//#endregion
3368-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/strip-trailing-slashes.js
3368+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/strip-trailing-slashes.js
33693369
const stripTrailingSlashes = (str) => {
33703370
let i = str.length - 1;
33713371
let slashesStart = -1;
@@ -3377,7 +3377,7 @@ const stripTrailingSlashes = (str) => {
33773377
};
33783378

33793379
//#endregion
3380-
//#region node_modules/.pnpm/[email protected].2/node_modules/tar/dist/esm/list.js
3380+
//#region node_modules/.pnpm/[email protected].3/node_modules/tar/dist/esm/list.js
33813381
const onReadEntryFunction = (opt) => {
33823382
const onReadEntry = opt.onReadEntry;
33833383
opt.onReadEntry = onReadEntry ? (e) => {

dist/main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"@types/semver": "^7.7.1",
7777
"command-line-args": "6.0.1",
7878
"semver": "7.7.3",
79-
"tar": "7.5.2",
79+
"tar": "7.5.3",
8080
"validate-npm-package-name": "^7.0.1"
8181
},
8282
"packageManager": "[email protected]+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a"

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)