Skip to content

Commit 3c4834c

Browse files
fix(deps): bump the production group with 2 updates (#261)
* build(deps): bump the production group with 2 updates Bumps the production group with 2 updates: [tar](https://github.com/isaacs/node-tar) and [validate-npm-package-name](https://github.com/npm/validate-npm-package-name). Updates `tar` from 7.5.3 to 7.5.7 - [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.3...v7.5.7) Updates `validate-npm-package-name` from 7.0.1 to 7.0.2 - [Release notes](https://github.com/npm/validate-npm-package-name/releases) - [Changelog](https://github.com/npm/validate-npm-package-name/blob/main/CHANGELOG.md) - [Commits](npm/validate-npm-package-name@v7.0.1...v7.0.2) --- updated-dependencies: - dependency-name: tar dependency-version: 7.5.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production - dependency-name: validate-npm-package-name dependency-version: 7.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production ... Signed-off-by: dependabot[bot] <support@github.com> * fixup: build --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Michael Cousins <michael@cousins.io>
1 parent 22291ed commit 3c4834c

File tree

4 files changed

+104
-26
lines changed

4 files changed

+104
-26
lines changed

dist/main.js

Lines changed: 93 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2024,7 +2024,7 @@ var WriteStreamSync = class extends WriteStream {
20242024
};
20252025

20262026
//#endregion
2027-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/options.js
2027+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/options.js
20282028
const argmap = new Map([
20292029
["C", "cwd"],
20302030
["f", "file"],
@@ -2069,7 +2069,7 @@ const dealias = (opt = {}) => {
20692069
};
20702070

20712071
//#endregion
2072-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/make-command.js
2072+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/make-command.js
20732073
const makeCommand = (syncFile, asyncFile, syncNoFile, asyncNoFile, validate) => {
20742074
return Object.assign((opt_ = [], entries, cb) => {
20752075
if (Array.isArray(opt_)) {
@@ -2463,7 +2463,7 @@ var ZstdDecompress = class extends Zstd {
24632463
};
24642464

24652465
//#endregion
2466-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/large-numbers.js
2466+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/large-numbers.js
24672467
const encode = (num, buf) => {
24682468
if (!Number.isSafeInteger(num)) throw Error("cannot encode number outside of javascript safe integer range");
24692469
else if (num < 0) encodeNegative(num, buf);
@@ -2529,7 +2529,7 @@ const onesComp = (byte) => (255 ^ byte) & 255;
25292529
const twosComp = (byte) => (255 ^ byte) + 1 & 255;
25302530

25312531
//#endregion
2532-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/types.js
2532+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/types.js
25332533
const isCode = (c) => name.has(c);
25342534
const name = new Map([
25352535
["0", "File"],
@@ -2557,7 +2557,7 @@ const name = new Map([
25572557
const code = new Map(Array.from(name).map((kv) => [kv[1], kv[0]]));
25582558

25592559
//#endregion
2560-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/header.js
2560+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/header.js
25612561
var Header = class {
25622562
cksumValid = false;
25632563
needPax = false;
@@ -2735,7 +2735,7 @@ const NULLS = new Array(156).join("\0");
27352735
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);
27362736

27372737
//#endregion
2738-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/pax.js
2738+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/pax.js
27392739
var Pax = class Pax {
27402740
atime;
27412741
mtime;
@@ -2832,12 +2832,12 @@ const parseKVLine = (set, line) => {
28322832
};
28332833

28342834
//#endregion
2835-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/normalize-windows-path.js
2835+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/normalize-windows-path.js
28362836
const platform$1 = process.env.TESTING_TAR_FAKE_PLATFORM || process.platform;
28372837
const normalizeWindowsPath = platform$1 !== "win32" ? (p) => p : (p) => p && p.replace(/\\/g, "/");
28382838

28392839
//#endregion
2840-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/read-entry.js
2840+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/read-entry.js
28412841
var ReadEntry = class extends Minipass {
28422842
extended;
28432843
globalExtended;
@@ -2941,7 +2941,7 @@ var ReadEntry = class extends Minipass {
29412941
};
29422942

29432943
//#endregion
2944-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/warn-method.js
2944+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/warn-method.js
29452945
const warnMethod = (self, code, message, data = {}) => {
29462946
if (self.file) data.file = self.file;
29472947
if (self.cwd) data.cwd = self.cwd;
@@ -2958,7 +2958,7 @@ const warnMethod = (self, code, message, data = {}) => {
29582958
};
29592959

29602960
//#endregion
2961-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/parse.js
2961+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/parse.js
29622962
const maxMetaEntrySize = 1024 * 1024;
29632963
const gzipHeader = Buffer.from([31, 139]);
29642964
const zstdHeader = Buffer.from([
@@ -3369,7 +3369,7 @@ while (this[PROCESSENTRY](this[QUEUE].shift()));
33693369
};
33703370

33713371
//#endregion
3372-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/strip-trailing-slashes.js
3372+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/strip-trailing-slashes.js
33733373
const stripTrailingSlashes = (str) => {
33743374
let i = str.length - 1;
33753375
let slashesStart = -1;
@@ -3381,7 +3381,7 @@ const stripTrailingSlashes = (str) => {
33813381
};
33823382

33833383
//#endregion
3384-
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/list.js
3384+
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/list.js
33853385
const onReadEntryFunction = (opt) => {
33863386
const onReadEntry = opt.onReadEntry;
33873387
opt.onReadEntry = onReadEntry ? (e) => {
@@ -3461,9 +3461,88 @@ const list = makeCommand(listFileSync, listFile, (opt) => new Parser(opt), (opt)
34613461
});
34623462

34633463
//#endregion
3464-
//#region node_modules/.pnpm/validate-npm-package-name@7.0.1/node_modules/validate-npm-package-name/lib/index.js
3464+
//#region node_modules/.pnpm/validate-npm-package-name@7.0.2/node_modules/validate-npm-package-name/lib/builtin-modules.json
3465+
var require_builtin_modules = /* @__PURE__ */ __commonJSMin(((exports, module) => {
3466+
module.exports = [
3467+
"_http_agent",
3468+
"_http_client",
3469+
"_http_common",
3470+
"_http_incoming",
3471+
"_http_outgoing",
3472+
"_http_server",
3473+
"_stream_duplex",
3474+
"_stream_passthrough",
3475+
"_stream_readable",
3476+
"_stream_transform",
3477+
"_stream_wrap",
3478+
"_stream_writable",
3479+
"_tls_common",
3480+
"_tls_wrap",
3481+
"assert",
3482+
"assert/strict",
3483+
"async_hooks",
3484+
"buffer",
3485+
"child_process",
3486+
"cluster",
3487+
"console",
3488+
"constants",
3489+
"crypto",
3490+
"dgram",
3491+
"diagnostics_channel",
3492+
"dns",
3493+
"dns/promises",
3494+
"domain",
3495+
"events",
3496+
"fs",
3497+
"fs/promises",
3498+
"http",
3499+
"http2",
3500+
"https",
3501+
"inspector",
3502+
"inspector/promises",
3503+
"module",
3504+
"net",
3505+
"os",
3506+
"path",
3507+
"path/posix",
3508+
"path/win32",
3509+
"perf_hooks",
3510+
"process",
3511+
"punycode",
3512+
"querystring",
3513+
"readline",
3514+
"readline/promises",
3515+
"repl",
3516+
"stream",
3517+
"stream/consumers",
3518+
"stream/promises",
3519+
"stream/web",
3520+
"string_decoder",
3521+
"sys",
3522+
"timers",
3523+
"timers/promises",
3524+
"tls",
3525+
"trace_events",
3526+
"tty",
3527+
"url",
3528+
"util",
3529+
"util/types",
3530+
"v8",
3531+
"vm",
3532+
"wasi",
3533+
"worker_threads",
3534+
"zlib",
3535+
"node:sea",
3536+
"node:sqlite",
3537+
"node:test",
3538+
"node:test/reporters"
3539+
];
3540+
}));
3541+
3542+
//#endregion
3543+
//#region node_modules/.pnpm/validate-npm-package-name@7.0.2/node_modules/validate-npm-package-name/lib/index.js
34653544
var require_lib = /* @__PURE__ */ __commonJSMin(((exports, module) => {
3466-
const { builtinModules: builtins } = __require("module");
3545+
const builtins = require_builtin_modules();
34673546
var scopedPackagePattern = /* @__PURE__ */ new RegExp("^(?:@([^/]+?)[/])?([^/]+?)$");
34683547
var exclusionList = ["node_modules", "favicon.ico"];
34693548
function validate(name) {

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.3",
79+
"tar": "7.5.7",
8080
"validate-npm-package-name": "^7.0.1"
8181
},
8282
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a"

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)