Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cockpit for openSUSE:Factory checked in at 2026-05-20 16:47:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cockpit (Old) and /work/SRC/openSUSE:Factory/.cockpit.new.1966 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cockpit" Wed May 20 16:47:51 2026 rev:75 rq:1353668 version:361 Changes: -------- --- /work/SRC/openSUSE:Factory/cockpit/cockpit.changes 2026-04-11 22:23:06.164344895 +0200 +++ /work/SRC/openSUSE:Factory/.cockpit.new.1966/cockpit.changes 2026-05-20 16:48:04.081049101 +0200 @@ -1,0 +2,18 @@ +Mon May 18 03:33:13 UTC 2026 - Alice Brooks <[email protected]> + +- Add CVE-2026-4802.patch to backport upstreams fix for bsc#1265040/CVE-2026-4802 + +------------------------------------------------------------------- +Wed Apr 22 11:58:43 UTC 2026 - Alice Brooks <[email protected]> + +- Update to 361 + * 361 + - Remove all "Mount" actions in Anaconda mode + - Dependency updates + +------------------------------------------------------------------- +Tue Apr 14 06:32:31 UTC 2026 - Luna D Dragon <[email protected]> + +- Add 0011-Warn-root-login-disabled.patch jsc#PED-15706/jsc#CPT-183 + +------------------------------------------------------------------- @@ -39 +57 @@ -- Update dependencies bsc#1257836/CVE-2026-25547, bsc#1258641/CVE-2026-26996 +- Update dependencies bsc#1257836/CVE-2026-25547, bsc#1258641/CVE-2026-26996, bsc#1259013/CVE-2026-27904 Old: ---- cockpit-360.tar.gz New: ---- 0011-Warn-root-login-disabled.patch CVE-2026-4802.patch cockpit-361.tar.gz ----------(New B)---------- New: - Add 0011-Warn-root-login-disabled.patch jsc#PED-15706/jsc#CPT-183 New: - Add CVE-2026-4802.patch to backport upstreams fix for bsc#1265040/CVE-2026-4802 ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cockpit.spec ++++++ --- /var/tmp/diff_new_pack.ChDvVI/_old 2026-05-20 16:48:11.569358484 +0200 +++ /var/tmp/diff_new_pack.ChDvVI/_new 2026-05-20 16:48:11.573358650 +0200 @@ -56,7 +56,7 @@ License: LGPL-2.1-or-later AND GPL-3.0-or-later AND MIT AND CC-BY-SA-3.0 AND BSD-3-Clause URL: https://cockpit-project.org/ -Version: 360 +Version: 361 Release: 0 Source0: cockpit-%{version}.tar.gz Source2: cockpit-rpmlintrc @@ -74,6 +74,7 @@ Patch4: css-overrides.patch Patch5: storage-btrfs.patch Patch6: esbuild-ppc64.patch +Patch7: CVE-2026-4802.patch # SLE Micro specific patches Patch101: hide-pcp.patch Patch102: 0002-selinux-temporary-remove-setroubleshoot-section.patch @@ -91,6 +92,7 @@ Patch113: 0003-branding-use-SUSE_SUPPORT_PRODUCT-and-SUSE_SUPPORT_P.patch Patch114: 0009-packagekit-reboot-notification.patch Patch115: 0010-Override-kdump-message.patch +Patch116: 0011-Warn-root-login-disabled.patch Patch201: remove_rh_links.patch %define build_all 1 @@ -249,6 +251,7 @@ %patch -P 4 -p1 %patch -P 5 -p1 %patch -P 6 -p1 +%patch -P 7 -p1 %patch -P 101 -p1 %patch -P 106 -p1 @@ -281,6 +284,7 @@ %endif %endif +%patch -P 116 -p1 %patch -P 201 -p1 # If we're not using cockpit.suse.pam ++++++ 0011-Warn-root-login-disabled.patch ++++++ diff --git c/pkg/static/login.js i/pkg/static/login.js index d815b59a40..24710c6d2b 100644 --- c/pkg/static/login.js +++ i/pkg/static/login.js @@ -1024,7 +1024,7 @@ function debug(...args) { } else if (is_conversation) { login_failure(_("Authentication failed")); } else { - login_failure(_("Authentication failed"), _("Wrong user name or password")); + login_failure(_("Authentication failed"), _("Wrong user name or password. Root login may be disabled by the admin")); } } } else if (xhr.status == 403) { ++++++ CVE-2026-4802.patch ++++++ >From e3a47d70f99a0dbbb427b3146ae9571cecc44296 Mon Sep 17 00:00:00 2001 From: Allison Karlitskaya <[email protected]> Date: Tue, 21 Apr 2026 10:44:05 +0200 Subject: [PATCH] pkg/systemd: robustify argument quoting If we were in Python we'd be using `shlex.quote()` here. Unfortunately we don't have that in JavaScript but the approach is trivial, so let's use it here. --- pkg/systemd/logsJournal.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/systemd/logsJournal.jsx b/pkg/systemd/logsJournal.jsx index 26861106a387..f191313592b0 100644 --- a/pkg/systemd/logsJournal.jsx +++ b/pkg/systemd/logsJournal.jsx @@ -205,7 +205,8 @@ export class JournalBox extends React.Component { const service_options = Object.assign({ output: "verbose" }, options); let cmd = journal.build_cmd(match, service_options); - cmd = cmd.map(i => i.replaceAll(" ", "\\ ")).join(" "); + // cribbed from Python's shlex.quote() + cmd = cmd.map(i => `'` + i.replaceAll(`'`, `'"'"'`) + `'`).join(" "); cmd = "set -o pipefail; " + cmd + " | grep SYSLOG_IDENTIFIER= | sort -u"; cockpit.spawn(["/bin/bash", "-ec", cmd], { superuser: "try", err: "message" }) .then(entries => { ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.ChDvVI/_old 2026-05-20 16:48:11.749365922 +0200 +++ /var/tmp/diff_new_pack.ChDvVI/_new 2026-05-20 16:48:11.753366087 +0200 @@ -1,6 +1,6 @@ -mtime: 1775805036 -commit: 46f7def4105baeeeb44b93c685892be5bac3197958b2bc602cf17fa9df4606c9 -url: https://src.opensuse.org/cockpit/cockpit.git -revision: 46f7def4105baeeeb44b93c685892be5bac3197958b2bc602cf17fa9df4606c9 +mtime: 1779081332 +commit: fe6172313861db8580eca73a8a0eb376524ec635db9ae26274da1cc55228275e +url: https://src.opensuse.org/cockpit/cockpit +revision: fe6172313861db8580eca73a8a0eb376524ec635db9ae26274da1cc55228275e projectscmsync: https://src.opensuse.org/cockpit/_ObsPrj.git ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-05-18 07:15:32.000000000 +0200 @@ -0,0 +1,3 @@ +.osc +node_modules.sums +_build* \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/update_version.sh new/update_version.sh --- old/update_version.sh 1970-01-01 01:00:00.000000000 +0100 +++ new/update_version.sh 2026-05-18 07:15:32.000000000 +0200 @@ -0,0 +1,121 @@ +#!/usr/bin/bash + +set -e + +curVersion=$(grep Version: cockpit.spec | sed -e 's,^\(\s*Version:\s*\)\(.*\)\s*$,\2,') + +if [[ ! "$curVersion" =~ ^[0-9]+(.[0-9]+)?$ ]]; then + echo "Error: curVersion is not a valid integer" + exit 1 +fi + +if [[ "$curVersion" =~ '.' ]]; then + curMajor=$(echo ${curVersion} | cut -d'.' -f1) + curMinor=$(echo ${curVersion} | cut -d'.' -f2) +else + curMajor=$curVersion + curMinor='0' +fi + +### +### Fetch latest soruces +### + +# fetch latest theme +if [ ! -d cockpit-suse-theme ]; then + git clone https://github.com/dgdavid/cockpit-suse-theme.git +else + git -C cockpit-suse-theme pull --ff-only +fi +git -C cockpit-suse-theme archive --format=tar --prefix=cockpit-suse-theme/ -o ../cockpit-suse-theme.tar HEAD + +# fetch latest cockpit +if [ ! -d cockpit ]; then + git clone https://github.com/cockpit-project/cockpit.git cockpit +else + git -C cockpit checkout main + git -C cockpit fetch +fi + +newVersion=$(git -C cockpit tag | grep '^[0-9.]\+$' | sort -rn | head -1) + +if [[ ! "$newVersion" =~ ^[0-9]+(.[0-9]+)?$ ]]; then + echo "Error: newVersion cannot be determined" + exit 1 +fi + +if [[ "$newVersion" =~ '.' ]]; then + newMajor=$(echo ${newVersion} | cut -d'.' -f1) + newMinor=$(echo ${newVersion} | cut -d'.' -f2) +else + newMajor=$newVersion + newMinor='0' +fi + +if [ "$curMajor" -gt "$newMajor" ]; then + echo "Nothing to do." + exit 0 +elif [[ "$curMajor" -eq "$newMajor" && "$curMinor" -ge "$newMinor" ]]; then + echo "Nothing to do." + exit 0 +fi + +### +### UPDATE +### +git -C cockpit checkout $newVersion +pushd $PWD +cd cockpit +npm install --include optional +rm -rf node_modules +popd +cp "cockpit/package-lock.json" . +# update node_modules +osc service mr +rm --verbose *.tgz || true + +# # initialize all submodules +git -C cockpit submodule update --init --depth 1 +# remove node_modules and tests +git -C cockpit submodule deinit node_modules test/reference + +# update tarballs +CockpitPath="cockpit-$newVersion/" +MainTarball="cockpit.tar" +D=$PWD + +git -C cockpit archive --format=tar --prefix=$CockpitPath -o "$D/$MainTarball" $newVersion + +# append each initialized submodule +git -C cockpit submodule foreach "n=\$(basename \$sm_path) +git archive --format=tar --prefix=${CockpitPath}\${sm_path}/ -o \"$D/\$n.tar\" HEAD +" +SubmoduleTarballs=$(git -C cockpit submodule foreach --quiet "echo \$(basename \$sm_path.tar)") + +# need to unpack and pack again, because OBS can't deal with concatenated tarballs :( +rm -f "cockpit-$newVersion.tar" +rm -rf cockpit-$newVersion/ +for i in $MainTarball $SubmoduleTarballs; do + tar xf $i +done +rm $MainTarball $SubmoduleTarballs +tar zcf cockpit-$newVersion.tar.gz cockpit-$newVersion/ + +echo "Archive created: cockpit-$newVersion.tar" + +# Update spec file +git -C cockpit remote show suse || git -C cockpit remote add suse [email protected]:openSUSE/cockpit.git +git -C cockpit fetch suse opensuse-$curVersion +git -C cockpit checkout -b opensuse-$newVersion suse/opensuse-$curVersion +git -C cockpit rebase -i $newVersion || true + +echo "Don't forget to:" +echo " 1. finish rebase" +echo " 2. push new branch" +echo " 3. update cockpit.spec, and" +echo " 4. set new default branch on GitHub" + +# Updating version in spec file +sed -i -e "s,^\(\s*Version:\s*\)\(.*\)\s*$,\1${newVersion}," cockpit/tools/cockpit.spec +git rm cockpit-$curVersion.tar.gz +git add cockpit-$newVersion.tar.gz ++++++ cockpit-360.tar.gz -> cockpit-361.tar.gz ++++++ /work/SRC/openSUSE:Factory/cockpit/cockpit-360.tar.gz /work/SRC/openSUSE:Factory/.cockpit.new.1966/cockpit-361.tar.gz differ: char 14, line 1 ++++++ node_modules.obscpio ++++++ /work/SRC/openSUSE:Factory/cockpit/node_modules.obscpio /work/SRC/openSUSE:Factory/.cockpit.new.1966/node_modules.obscpio differ: char 236613, line 1014 ++++++ node_modules.spec.inc ++++++ --- /var/tmp/diff_new_pack.ChDvVI/_old 2026-05-20 16:48:12.225385589 +0200 +++ /var/tmp/diff_new_pack.ChDvVI/_new 2026-05-20 16:48:12.233385920 +0200 @@ -2,10 +2,10 @@ Source1001: https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz#/@babel-helper-validator-identifier-7.28.5.tgz Source1002: https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.11.0.tgz#/@bufbuild-protobuf-2.11.0.tgz Source1003: https://registry.npmjs.org/@cacheable/memory/-/memory-2.0.8.tgz#/@cacheable-memory-2.0.8.tgz -Source1004: https://registry.npmjs.org/@cacheable/utils/-/utils-2.4.0.tgz#/@cacheable-utils-2.4.0.tgz -Source1005: https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.1.1.tgz#/@csstools-css-calc-3.1.1.tgz +Source1004: https://registry.npmjs.org/@cacheable/utils/-/utils-2.4.1.tgz#/@cacheable-utils-2.4.1.tgz +Source1005: https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.0.tgz#/@csstools-css-calc-3.2.0.tgz Source1006: https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz#/@csstools-css-parser-algorithms-4.0.0.tgz -Source1007: https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.1.1.tgz#/@csstools-css-syntax-patches-for-csstree-1.1.1.tgz +Source1007: https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.1.3.tgz#/@csstools-css-syntax-patches-for-csstree-1.1.3.tgz Source1008: https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz#/@csstools-css-tokenizer-4.0.0.tgz Source1009: https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-5.0.0.tgz#/@csstools-media-query-list-parser-5.0.0.tgz Source1010: https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-4.0.0.tgz#/@csstools-selector-resolve-nested-4.0.0.tgz @@ -77,21 +77,21 @@ Source1076: https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.1.tgz#/@types-react-dom-18.3.1.tgz Source1077: https://registry.npmjs.org/@types/throttle-debounce/-/throttle-debounce-5.0.2.tgz#/@types-throttle-debounce-5.0.2.tgz Source1078: https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.0.tgz#/@typescript-eslint-eslint-plugin-8.46.0.tgz -Source1079: https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.57.2.tgz#/@typescript-eslint-parser-8.57.2.tgz +Source1079: https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.0.tgz#/@typescript-eslint-parser-8.59.0.tgz Source1080: https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.46.0.tgz#/@typescript-eslint-project-service-8.46.0.tgz -Source1081: https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.57.2.tgz#/@typescript-eslint-project-service-8.57.2.tgz +Source1081: https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.0.tgz#/@typescript-eslint-project-service-8.59.0.tgz Source1082: https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.46.0.tgz#/@typescript-eslint-scope-manager-8.46.0.tgz -Source1083: https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.57.2.tgz#/@typescript-eslint-scope-manager-8.57.2.tgz +Source1083: https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.0.tgz#/@typescript-eslint-scope-manager-8.59.0.tgz Source1084: https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.0.tgz#/@typescript-eslint-tsconfig-utils-8.46.0.tgz -Source1085: https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.2.tgz#/@typescript-eslint-tsconfig-utils-8.57.2.tgz +Source1085: https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.0.tgz#/@typescript-eslint-tsconfig-utils-8.59.0.tgz Source1086: https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.46.0.tgz#/@typescript-eslint-type-utils-8.46.0.tgz Source1087: https://registry.npmjs.org/@typescript-eslint/types/-/types-8.46.0.tgz#/@typescript-eslint-types-8.46.0.tgz -Source1088: https://registry.npmjs.org/@typescript-eslint/types/-/types-8.57.2.tgz#/@typescript-eslint-types-8.57.2.tgz +Source1088: https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.0.tgz#/@typescript-eslint-types-8.59.0.tgz Source1089: https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.0.tgz#/@typescript-eslint-typescript-estree-8.46.0.tgz -Source1090: https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.2.tgz#/@typescript-eslint-typescript-estree-8.57.2.tgz +Source1090: https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.0.tgz#/@typescript-eslint-typescript-estree-8.59.0.tgz Source1091: https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.46.0.tgz#/@typescript-eslint-utils-8.46.0.tgz Source1092: https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.0.tgz#/@typescript-eslint-visitor-keys-8.46.0.tgz -Source1093: https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.2.tgz#/@typescript-eslint-visitor-keys-8.57.2.tgz +Source1093: https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.0.tgz#/@typescript-eslint-visitor-keys-8.59.0.tgz Source1094: https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz#/@ungap-structured-clone-1.3.0.tgz Source1095: https://registry.npmjs.org/@xterm/addon-webgl/-/addon-webgl-0.19.0.tgz#/@xterm-addon-webgl-0.19.0.tgz Source1096: https://registry.npmjs.org/@xterm/xterm/-/xterm-6.0.0.tgz#/@xterm-xterm-6.0.0.tgz @@ -120,18 +120,18 @@ Source1119: https://registry.npmjs.org/attr-accept/-/attr-accept-2.2.5.tgz#/attr-accept-2.2.5.tgz Source1120: https://registry.npmjs.org/autolinker/-/autolinker-3.16.2.tgz#/autolinker-3.16.2.tgz Source1121: https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#/available-typed-arrays-1.0.7.tgz -Source1122: https://registry.npmjs.org/axe-core/-/axe-core-4.11.1.tgz#/axe-core-4.11.1.tgz +Source1122: https://registry.npmjs.org/axe-core/-/axe-core-4.11.3.tgz#/axe-core-4.11.3.tgz Source1123: https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz#/axobject-query-4.1.0.tgz Source1124: https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#/balanced-match-1.0.2.tgz Source1125: https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz#/balanced-match-4.0.4.tgz -Source1126: https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz#/brace-expansion-1.1.12.tgz -Source1127: https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz#/brace-expansion-2.0.2.tgz +Source1126: https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz#/brace-expansion-1.1.14.tgz +Source1127: https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz#/brace-expansion-2.1.0.tgz Source1128: https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz#/brace-expansion-5.0.5.tgz Source1129: https://registry.npmjs.org/braces/-/braces-3.0.3.tgz#/braces-3.0.3.tgz Source1130: https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz#/builtin-modules-3.3.0.tgz Source1131: https://registry.npmjs.org/builtins/-/builtins-5.1.0.tgz#/builtins-5.1.0.tgz Source1132: https://registry.npmjs.org/cacheable/-/cacheable-2.3.4.tgz#/cacheable-2.3.4.tgz -Source1133: https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz#/call-bind-1.0.8.tgz +Source1133: https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz#/call-bind-1.0.9.tgz Source1134: https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#/call-bind-apply-helpers-1.0.2.tgz Source1135: https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz#/call-bound-1.0.4.tgz Source1136: https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#/callsites-3.1.0.tgz @@ -171,10 +171,10 @@ Source1170: https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz#/env-paths-2.2.1.tgz Source1171: https://registry.npmjs.org/environment/-/environment-1.1.0.tgz#/environment-1.1.0.tgz Source1172: https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz#/error-ex-1.3.4.tgz -Source1173: https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.1.tgz#/es-abstract-1.24.1.tgz +Source1173: https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.2.tgz#/es-abstract-1.24.2.tgz Source1174: https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz#/es-define-property-1.0.1.tgz Source1175: https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz#/es-errors-1.3.0.tgz -Source1176: https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.3.1.tgz#/es-iterator-helpers-1.3.1.tgz +Source1176: https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.3.2.tgz#/es-iterator-helpers-1.3.2.tgz Source1177: https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz#/es-object-atoms-1.1.1.tgz Source1178: https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz#/es-set-tostringtag-2.1.0.tgz Source1179: https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz#/es-shim-unscopables-1.1.0.tgz @@ -188,7 +188,7 @@ Source1187: https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz#/eslint-config-standard-17.1.0.tgz Source1188: https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz#/eslint-config-standard-jsx-11.0.0.tgz Source1189: https://registry.npmjs.org/eslint-config-standard-react/-/eslint-config-standard-react-13.0.0.tgz#/eslint-config-standard-react-13.0.0.tgz -Source1190: https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#/eslint-import-resolver-node-0.3.9.tgz +Source1190: https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.10.tgz#/eslint-import-resolver-node-0.3.10.tgz Source1191: https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz#/eslint-module-utils-2.12.1.tgz Source1192: https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz#/eslint-plugin-es-3.0.1.tgz Source1193: https://registry.npmjs.org/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz#/eslint-plugin-es-x-7.8.0.tgz @@ -224,7 +224,7 @@ Source1223: https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz#/fill-range-7.1.1.tgz Source1224: https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#/find-up-5.0.0.tgz Source1225: https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz#/flat-cache-3.2.0.tgz -Source1226: https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.21.tgz#/flat-cache-6.1.21.tgz +Source1226: https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.22.tgz#/flat-cache-6.1.22.tgz Source1227: https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz#/flatted-3.4.2.tgz Source1228: https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.4.tgz#/focus-trap-7.6.4.tgz Source1229: https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz#/for-each-0.3.5.tgz @@ -237,7 +237,7 @@ Source1236: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz#/get-intrinsic-1.3.0.tgz Source1237: https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz#/get-proto-1.0.1.tgz Source1238: https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz#/get-symbol-description-1.1.0.tgz -Source1239: https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.7.tgz#/get-tsconfig-4.13.7.tgz +Source1239: https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.14.0.tgz#/get-tsconfig-4.14.0.tgz Source1240: https://registry.npmjs.org/gettext-parser/-/gettext-parser-9.0.2.tgz#/gettext-parser-9.0.2.tgz Source1241: https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#/glob-7.2.3.tgz Source1242: https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#/glob-parent-5.1.2.tgz @@ -247,7 +247,7 @@ Source1246: https://registry.npmjs.org/globals/-/globals-13.24.0.tgz#/globals-13.24.0.tgz Source1247: https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz#/globalthis-1.0.4.tgz Source1248: https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz#/globalyzer-0.1.0.tgz -Source1249: https://registry.npmjs.org/globby/-/globby-16.1.1.tgz#/globby-16.1.1.tgz +Source1249: https://registry.npmjs.org/globby/-/globby-16.2.0.tgz#/globby-16.2.0.tgz Source1250: https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz#/globjoin-0.1.4.tgz Source1251: https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz#/globrex-0.1.2.tgz Source1252: https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz#/gopd-1.2.0.tgz @@ -260,9 +260,9 @@ Source1259: https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz#/has-symbols-1.1.0.tgz Source1260: https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz#/has-tostringtag-1.0.2.tgz Source1261: https://registry.npmjs.org/hashery/-/hashery-1.5.1.tgz#/hashery-1.5.1.tgz -Source1262: https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz#/hasown-2.0.2.tgz +Source1262: https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz#/hasown-2.0.3.tgz Source1263: https://registry.npmjs.org/hookified/-/hookified-1.15.1.tgz#/hookified-1.15.1.tgz -Source1264: https://registry.npmjs.org/hookified/-/hookified-2.1.0.tgz#/hookified-2.1.0.tgz +Source1264: https://registry.npmjs.org/hookified/-/hookified-2.1.1.tgz#/hookified-2.1.1.tgz Source1265: https://registry.npmjs.org/html-tags/-/html-tags-5.1.0.tgz#/html-tags-5.1.0.tgz Source1266: https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz#/iconv-lite-0.6.3.tgz Source1267: https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz#/ignore-5.3.2.tgz @@ -330,7 +330,7 @@ Source1329: https://registry.npmjs.org/levn/-/levn-0.4.1.tgz#/levn-0.4.1.tgz Source1330: https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz#/lines-and-columns-1.2.4.tgz Source1331: https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#/locate-path-6.0.0.tgz -Source1332: https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz#/lodash-4.17.23.tgz +Source1332: https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz#/lodash-4.18.1.tgz Source1333: https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz#/lodash.merge-4.6.2.tgz Source1334: https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz#/lodash.truncate-4.4.2.tgz Source1335: https://registry.npmjs.org/log-symbols/-/log-symbols-7.0.1.tgz#/log-symbols-7.0.1.tgz @@ -341,7 +341,7 @@ Source1340: https://registry.npmjs.org/meow/-/meow-14.1.0.tgz#/meow-14.1.0.tgz Source1341: https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz#/merge2-1.4.1.tgz Source1342: https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz#/micromatch-4.0.8.tgz -Source1343: https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz#/minimatch-10.2.4.tgz +Source1343: https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz#/minimatch-10.2.5.tgz Source1344: https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz#/minimatch-3.1.5.tgz Source1345: https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz#/minimatch-9.0.9.tgz Source1346: https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz#/minimist-1.2.8.tgz @@ -376,7 +376,7 @@ Source1375: https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz#/picomatch-4.0.4.tgz Source1376: https://registry.npmjs.org/plur/-/plur-5.1.0.tgz#/plur-5.1.0.tgz Source1377: https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz#/possible-typed-array-names-1.1.0.tgz -Source1378: https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz#/postcss-8.5.8.tgz +Source1378: https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz#/postcss-8.5.10.tgz Source1379: https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#/postcss-media-query-parser-0.2.3.tgz Source1380: https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz#/postcss-resolve-nested-selector-0.1.6.tgz Source1381: https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz#/postcss-safe-parser-7.0.1.tgz @@ -386,7 +386,7 @@ Source1385: https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz#/prelude-ls-1.2.1.tgz Source1386: https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz#/prop-types-15.8.1.tgz Source1387: https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz#/punycode-2.3.1.tgz -Source1388: https://registry.npmjs.org/qified/-/qified-0.9.0.tgz#/qified-0.9.0.tgz +Source1388: https://registry.npmjs.org/qified/-/qified-0.9.1.tgz#/qified-0.9.1.tgz Source1389: https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz#/queue-microtask-1.2.3.tgz Source1390: https://registry.npmjs.org/qunit/-/qunit-2.25.0.tgz#/qunit-2.25.0.tgz Source1391: https://registry.npmjs.org/qunit-tap/-/qunit-tap-1.5.1.tgz#/qunit-tap-1.5.1.tgz @@ -400,7 +400,7 @@ Source1399: https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz#/regexpp-3.2.0.tgz Source1400: https://registry.npmjs.org/remarkable/-/remarkable-2.0.1.tgz#/remarkable-2.0.1.tgz Source1401: https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz#/require-from-string-2.0.2.tgz -Source1402: https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz#/resolve-1.22.11.tgz +Source1402: https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz#/resolve-1.22.12.tgz Source1403: https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.6.tgz#/resolve-2.0.0-next.6.tgz Source1404: https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#/resolve-from-4.0.0.tgz Source1405: https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#/resolve-pkg-maps-1.0.0.tgz @@ -408,30 +408,30 @@ Source1407: https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#/rimraf-3.0.2.tgz Source1408: https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz#/run-parallel-1.2.0.tgz Source1409: https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz#/rxjs-7.8.2.tgz -Source1410: https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz#/safe-array-concat-1.1.3.tgz +Source1410: https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.4.tgz#/safe-array-concat-1.1.4.tgz Source1411: https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz#/safe-push-apply-1.0.0.tgz Source1412: https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz#/safe-regex-test-1.1.0.tgz Source1413: https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#/safer-buffer-2.1.2.tgz -Source1414: https://registry.npmjs.org/sass/-/sass-1.98.0.tgz#/sass-1.98.0.tgz -Source1415: https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.98.0.tgz#/sass-embedded-1.98.0.tgz -Source1416: https://registry.npmjs.org/sass-embedded-all-unknown/-/sass-embedded-all-unknown-1.98.0.tgz#/sass-embedded-all-unknown-1.98.0.tgz -Source1417: https://registry.npmjs.org/sass-embedded-android-arm/-/sass-embedded-android-arm-1.98.0.tgz#/sass-embedded-android-arm-1.98.0.tgz -Source1418: https://registry.npmjs.org/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.98.0.tgz#/sass-embedded-android-arm64-1.98.0.tgz -Source1419: https://registry.npmjs.org/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.98.0.tgz#/sass-embedded-android-riscv64-1.98.0.tgz -Source1420: https://registry.npmjs.org/sass-embedded-android-x64/-/sass-embedded-android-x64-1.98.0.tgz#/sass-embedded-android-x64-1.98.0.tgz -Source1421: https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.98.0.tgz#/sass-embedded-darwin-arm64-1.98.0.tgz -Source1422: https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.98.0.tgz#/sass-embedded-darwin-x64-1.98.0.tgz -Source1423: https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.98.0.tgz#/sass-embedded-linux-arm-1.98.0.tgz -Source1424: https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.98.0.tgz#/sass-embedded-linux-arm64-1.98.0.tgz -Source1425: https://registry.npmjs.org/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.98.0.tgz#/sass-embedded-linux-musl-arm-1.98.0.tgz -Source1426: https://registry.npmjs.org/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.98.0.tgz#/sass-embedded-linux-musl-arm64-1.98.0.tgz -Source1427: https://registry.npmjs.org/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.98.0.tgz#/sass-embedded-linux-musl-riscv64-1.98.0.tgz -Source1428: https://registry.npmjs.org/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.98.0.tgz#/sass-embedded-linux-musl-x64-1.98.0.tgz -Source1429: https://registry.npmjs.org/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.98.0.tgz#/sass-embedded-linux-riscv64-1.98.0.tgz -Source1430: https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.98.0.tgz#/sass-embedded-linux-x64-1.98.0.tgz -Source1431: https://registry.npmjs.org/sass-embedded-unknown-all/-/sass-embedded-unknown-all-1.98.0.tgz#/sass-embedded-unknown-all-1.98.0.tgz -Source1432: https://registry.npmjs.org/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.98.0.tgz#/sass-embedded-win32-arm64-1.98.0.tgz -Source1433: https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.98.0.tgz#/sass-embedded-win32-x64-1.98.0.tgz +Source1414: https://registry.npmjs.org/sass/-/sass-1.99.0.tgz#/sass-1.99.0.tgz +Source1415: https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.99.0.tgz#/sass-embedded-1.99.0.tgz +Source1416: https://registry.npmjs.org/sass-embedded-all-unknown/-/sass-embedded-all-unknown-1.99.0.tgz#/sass-embedded-all-unknown-1.99.0.tgz +Source1417: https://registry.npmjs.org/sass-embedded-android-arm/-/sass-embedded-android-arm-1.99.0.tgz#/sass-embedded-android-arm-1.99.0.tgz +Source1418: https://registry.npmjs.org/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.99.0.tgz#/sass-embedded-android-arm64-1.99.0.tgz +Source1419: https://registry.npmjs.org/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.99.0.tgz#/sass-embedded-android-riscv64-1.99.0.tgz +Source1420: https://registry.npmjs.org/sass-embedded-android-x64/-/sass-embedded-android-x64-1.99.0.tgz#/sass-embedded-android-x64-1.99.0.tgz +Source1421: https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.99.0.tgz#/sass-embedded-darwin-arm64-1.99.0.tgz +Source1422: https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.99.0.tgz#/sass-embedded-darwin-x64-1.99.0.tgz +Source1423: https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.99.0.tgz#/sass-embedded-linux-arm-1.99.0.tgz +Source1424: https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.99.0.tgz#/sass-embedded-linux-arm64-1.99.0.tgz +Source1425: https://registry.npmjs.org/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.99.0.tgz#/sass-embedded-linux-musl-arm-1.99.0.tgz +Source1426: https://registry.npmjs.org/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.99.0.tgz#/sass-embedded-linux-musl-arm64-1.99.0.tgz +Source1427: https://registry.npmjs.org/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.99.0.tgz#/sass-embedded-linux-musl-riscv64-1.99.0.tgz +Source1428: https://registry.npmjs.org/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.99.0.tgz#/sass-embedded-linux-musl-x64-1.99.0.tgz +Source1429: https://registry.npmjs.org/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.99.0.tgz#/sass-embedded-linux-riscv64-1.99.0.tgz +Source1430: https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.99.0.tgz#/sass-embedded-linux-x64-1.99.0.tgz +Source1431: https://registry.npmjs.org/sass-embedded-unknown-all/-/sass-embedded-unknown-all-1.99.0.tgz#/sass-embedded-unknown-all-1.99.0.tgz +Source1432: https://registry.npmjs.org/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.99.0.tgz#/sass-embedded-win32-arm64-1.99.0.tgz +Source1433: https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.99.0.tgz#/sass-embedded-win32-x64-1.99.0.tgz Source1434: https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz#/scheduler-0.23.2.tgz Source1435: https://registry.npmjs.org/semver/-/semver-6.3.1.tgz#/semver-6.3.1.tgz Source1436: https://registry.npmjs.org/semver/-/semver-7.7.4.tgz#/semver-7.7.4.tgz @@ -441,7 +441,7 @@ Source1440: https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#/shebang-command-2.0.0.tgz Source1441: https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#/shebang-regex-3.0.0.tgz Source1442: https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz#/side-channel-1.1.0.tgz -Source1443: https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz#/side-channel-list-1.0.0.tgz +Source1443: https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz#/side-channel-list-1.0.1.tgz Source1444: https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz#/side-channel-map-1.0.1.tgz Source1445: https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#/side-channel-weakmap-1.0.2.tgz Source1446: https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz#/signal-exit-4.1.0.tgz @@ -463,9 +463,9 @@ Source1462: https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz#/strip-ansi-7.2.0.tgz Source1463: https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#/strip-bom-3.0.0.tgz Source1464: https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#/strip-json-comments-3.1.1.tgz -Source1465: https://registry.npmjs.org/stylelint/-/stylelint-17.6.0.tgz#/stylelint-17.6.0.tgz +Source1465: https://registry.npmjs.org/stylelint/-/stylelint-17.7.0.tgz#/stylelint-17.7.0.tgz Source1466: https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-18.0.0.tgz#/stylelint-config-recommended-18.0.0.tgz -Source1467: https://registry.npmjs.org/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-17.0.0.tgz#/stylelint-config-recommended-scss-17.0.0.tgz +Source1467: https://registry.npmjs.org/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-17.0.1.tgz#/stylelint-config-recommended-scss-17.0.1.tgz Source1468: https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-40.0.0.tgz#/stylelint-config-standard-40.0.0.tgz Source1469: https://registry.npmjs.org/stylelint-config-standard-scss/-/stylelint-config-standard-scss-17.0.0.tgz#/stylelint-config-standard-scss-17.0.0.tgz Source1470: https://registry.npmjs.org/stylelint-formatter-pretty/-/stylelint-formatter-pretty-4.0.1.tgz#/stylelint-formatter-pretty-4.0.1.tgz @@ -485,7 +485,7 @@ Source1484: https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#/text-table-0.2.0.tgz Source1485: https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-5.0.2.tgz#/throttle-debounce-5.0.2.tgz Source1486: https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz#/tiny-glob-0.2.9.tgz -Source1487: https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz#/tinyglobby-0.2.15.tgz +Source1487: https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz#/tinyglobby-0.2.16.tgz Source1488: https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#/to-regex-range-5.0.1.tgz Source1489: https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz#/ts-api-utils-2.5.0.tgz Source1490: https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#/tsconfig-paths-3.15.0.tgz @@ -501,7 +501,7 @@ Source1500: https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.4.0.tgz#/unicorn-magic-0.4.0.tgz Source1501: https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz#/uri-js-4.4.1.tgz Source1502: https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#/util-deprecate-1.0.2.tgz -Source1503: https://registry.npmjs.org/uuid/-/uuid-13.0.0.tgz#/uuid-13.0.0.tgz +Source1503: https://registry.npmjs.org/uuid/-/uuid-14.0.0.tgz#/uuid-14.0.0.tgz Source1504: https://registry.npmjs.org/varint/-/varint-6.0.0.tgz#/varint-6.0.0.tgz Source1505: https://registry.npmjs.org/which/-/which-1.3.1.tgz#/which-1.3.1.tgz Source1506: https://registry.npmjs.org/which/-/which-2.0.2.tgz#/which-2.0.2.tgz ++++++ package-lock.json ++++++ ++++ 1115 lines (skipped) ++++ between /work/SRC/openSUSE:Factory/cockpit/package-lock.json ++++ and /work/SRC/openSUSE:Factory/.cockpit.new.1966/package-lock.json
