diff --git a/README.md b/README.md index 1152abfd..c8fb9869 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli $ sf COMMAND running command... $ sf (--version|-v) -@salesforce/cli/2.17.1 linux-x64 node-v20.9.0 +@salesforce/cli/2.17.2 linux-x64 node-v20.9.0 $ sf --help [COMMAND] USAGE $ sf COMMAND @@ -100,8 +100,6 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI. - [`sf lightning generate event`](#sf-lightning-generate-event) - [`sf lightning generate interface`](#sf-lightning-generate-interface) - [`sf lightning generate test`](#sf-lightning-generate-test) -- [`sf limits api display`](#sf-limits-api-display) -- [`sf limits recordcounts display`](#sf-limits-recordcounts-display) - [`sf login`](#sf-login) - [`sf logout`](#sf-logout) - [`sf org assign permset`](#sf-org-assign-permset) @@ -116,8 +114,10 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI. - [`sf org generate password`](#sf-org-generate-password) - [`sf org list`](#sf-org-list) - [`sf org list auth`](#sf-org-list-auth) +- [`sf org list limits`](#sf-org-list-limits) - [`sf org list metadata`](#sf-org-list-metadata) - [`sf org list metadata-types`](#sf-org-list-metadata-types) +- [`sf org list sobject record-counts`](#sf-org-list-sobject-record-counts) - [`sf org list users`](#sf-org-list-users) - [`sf org login access-token`](#sf-org-login-access-token) - [`sf org login device`](#sf-org-login-device) @@ -3487,88 +3487,6 @@ FLAG DESCRIPTIONS _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/55.5.17/src/commands/lightning/generate/test.ts)_ -## `sf limits api display` - -Display information about limits in your org. - -``` -USAGE - $ sf limits api display -o [--json] [--api-version ] - -FLAGS - -o, --target-org= (required) Username or alias of the target org. - --api-version= Override the api version used for api requests made by this command - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Display information about limits in your org. - - For each limit, this command returns the maximum allocation and the remaining allocation based on usage. See this - topic for a description of each limit: - https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_limits.htm. - -ALIASES - $ sf force limits api display - $ sf org list limits - -EXAMPLES - Display limits in your default org: - - $ sf limits api display - - Display limits in the org with alias "my-scratch-org": - - $ sf limits api display --target-org my-scratch-org -``` - -_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/2.3.41/src/commands/limits/api/display.ts)_ - -## `sf limits recordcounts display` - -Display record counts for the specified standard or custom objects. - -``` -USAGE - $ sf limits recordcounts display -o [--json] [-s ] [--api-version ] - -FLAGS - -o, --target-org= (required) Username or alias of the target org. - -s, --sobject=... [default: ] API name of the standard or custom object for which to display record counts. - --api-version= Override the api version used for api requests made by this command - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Display record counts for the specified standard or custom objects. - - Use this command to get an approximate count of the records in standard or custom objects in your org. These record - counts are the same as the counts listed in the Storage Usage page in the Setup UI. The record counts are approximate - because they're calculated asynchronously and your org's storage usage isn't updated immediately. To display all - available record counts, run the command without the --sobject flag. - -ALIASES - $ sf force limits recordcounts display - $ sf org list sobject record-counts - -EXAMPLES - Display all available record counts in your default org: - - $ sf limits recordcounts display - - Display record counts for the Account, Contact, Lead, and Opportunity objects in your default org: - - $ sf limits recordcounts display --sobject Account --sobject Contact --sobject Lead --sobject Opportunity - - Display record counts for the Account and Lead objects for the org with alias "my-scratch-org": - - $ sf limits recordcounts display --sobject Account --sobject Lead --target-org my-scratch-org -``` - -_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/2.3.41/src/commands/limits/recordcounts/display.ts)_ - ## `sf login` Log interactively into an environment. @@ -4366,6 +4284,44 @@ EXAMPLES _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.25/src/commands/org/list/auth.ts)_ +## `sf org list limits` + +Display information about limits in your org. + +``` +USAGE + $ sf org list limits -o [--json] [--api-version ] + +FLAGS + -o, --target-org= (required) Username or alias of the target org. + --api-version= Override the api version used for api requests made by this command + +GLOBAL FLAGS + --json Format output as json. + +DESCRIPTION + Display information about limits in your org. + + For each limit, this command returns the maximum allocation and the remaining allocation based on usage. See this + topic for a description of each limit: + https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_limits.htm. + +ALIASES + $ sf force limits api display + $ sf limits api display + +EXAMPLES + Display limits in your default org: + + $ sf org list limits + + Display limits in the org with alias "my-scratch-org": + + $ sf org list limits --target-org my-scratch-org +``` + +_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.0.1/src/commands/org/list/limits.ts)_ + ## `sf org list metadata` List the metadata components and properties of a specified type. @@ -4483,6 +4439,50 @@ FLAG DESCRIPTIONS _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.7/src/commands/org/list/metadata-types.ts)_ +## `sf org list sobject record-counts` + +Display record counts for the specified standard or custom objects. + +``` +USAGE + $ sf org list sobject record-counts -o [--json] [-s ] [--api-version ] + +FLAGS + -o, --target-org= (required) Username or alias of the target org. + -s, --sobject=... [default: ] API name of the standard or custom object for which to display record counts. + --api-version= Override the api version used for api requests made by this command + +GLOBAL FLAGS + --json Format output as json. + +DESCRIPTION + Display record counts for the specified standard or custom objects. + + Use this command to get an approximate count of the records in standard or custom objects in your org. These record + counts are the same as the counts listed in the Storage Usage page in the Setup UI. The record counts are approximate + because they're calculated asynchronously and your org's storage usage isn't updated immediately. To display all + available record counts, run the command without the --sobject flag. + +ALIASES + $ sf force limits recordcounts display + $ sf limits recordcounts display + +EXAMPLES + Display all available record counts in your default org: + + $ sf org list sobject record-counts + + Display record counts for the Account, Contact, Lead, and Opportunity objects in your default org: + + $ sf org list sobject record-counts --sobject Account --sobject Contact --sobject Lead --sobject Opportunity + + Display record counts for the Account and Lead objects for the org with alias "my-scratch-org": + + $ sf org list sobject record-counts --sobject Account --sobject Lead --target-org my-scratch-org +``` + +_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.0.1/src/commands/org/list/sobject/record-counts.ts)_ + ## `sf org list users` List all locally-authenticated users of an org. @@ -5134,7 +5134,7 @@ EXAMPLES $ sf plugins discover ``` -_See code: [@salesforce/plugin-marketplace](https://github.com/salesforcecli/plugin-template-sf/blob/0.3.2/src/commands/plugins/discover.ts)_ +_See code: [@salesforce/plugin-marketplace](https://github.com/salesforcecli/plugin-template-sf/blob/1.0.1/src/commands/plugins/discover.ts)_ ## `sf plugins:inspect PLUGIN...` @@ -7156,16 +7156,16 @@ EXAMPLES $ sf sobject describe --sobject Account - Display the metadata of the "MyObject\_\_c" custom object in the org with alias "my-scratch-org": + Display the metadata of the "MyObject__c" custom object in the org with alias "my-scratch-org": - $ sf sobject describe --sobject MyObject\_\_c --target-org my-scratch-org + $ sf sobject describe --sobject MyObject__c --target-org my-scratch-org Display the metadata of the ApexCodeCoverage Tooling API object in your default org: $ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api ``` -_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/2.3.32/src/commands/sobject/describe.ts)_ +_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/2.3.33/src/commands/sobject/describe.ts)_ ## `sf sobject list` @@ -7202,7 +7202,7 @@ EXAMPLES $ sf sobject list --sobject custom --target-org my-scratch-org ``` -_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/2.3.32/src/commands/sobject/list.ts)_ +_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/2.3.33/src/commands/sobject/list.ts)_ ## `sf static-resource generate` diff --git a/package.json b/package.json index 4bcbec07..b9f30f7a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.17.1", + "version": "2.17.2", "author": "Salesforce", "bin": { "sf": "./bin/run.js", @@ -125,7 +125,7 @@ } }, "dependencies": { - "@oclif/core": "3.10.0", + "@oclif/core": "3.10.1", "@oclif/plugin-autocomplete": "3.0.1", "@oclif/plugin-commands": "3.0.5", "@oclif/plugin-help": "6.0.5", @@ -142,11 +142,11 @@ "@salesforce/plugin-data": "2.6.1", "@salesforce/plugin-deploy-retrieve": "1.19.3", "@salesforce/plugin-info": "2.6.51", - "@salesforce/plugin-limits": "2.3.41", + "@salesforce/plugin-limits": "3.0.1", "@salesforce/plugin-login": "1.2.40", - "@salesforce/plugin-marketplace": "0.3.2", + "@salesforce/plugin-marketplace": "1.0.1", "@salesforce/plugin-org": "2.11.7", - "@salesforce/plugin-schema": "2.3.32", + "@salesforce/plugin-schema": "2.3.33", "@salesforce/plugin-settings": "2.0.1", "@salesforce/plugin-sobject": "0.2.14", "@salesforce/plugin-source": "2.10.46", diff --git a/yarn.lock b/yarn.lock index 8bb726ac..34f4713c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1090,10 +1090,10 @@ read-package-json-fast "^3.0.0" which "^4.0.0" -"@oclif/core@3.10.0", "@oclif/core@^3.0.0", "@oclif/core@^3.0.4", "@oclif/core@^3.2.1", "@oclif/core@^3.3.1", "@oclif/core@^3.5.0", "@oclif/core@^3.7.1", "@oclif/core@^3.8.0", "@oclif/core@^3.9.0", "@oclif/core@^3.9.1": - version "3.10.0" - resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.10.0.tgz#d9aac186b9300b448479fdee75f1774b4ff4626f" - integrity sha512-gXats+3wTQRztZS2gy8rcZgkKqLY/FexCzcAkNe8Z4E+268hagAHMFxA8tsiUcOKaywgQAL55TCHD1bgni54GA== +"@oclif/core@3.10.1", "@oclif/core@^3.0.0", "@oclif/core@^3.0.4", "@oclif/core@^3.10.0", "@oclif/core@^3.2.1", "@oclif/core@^3.3.1", "@oclif/core@^3.5.0", "@oclif/core@^3.7.1", "@oclif/core@^3.8.0", "@oclif/core@^3.9.0", "@oclif/core@^3.9.1": + version "3.10.1" + resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.10.1.tgz#c8e6c7a557983de1c55990177c16c78d26e10083" + integrity sha512-zBjujYmLyEu7T6PBlaPqmsum/Cc5KMwc6XmcKzUC/PUQspENGd4z0n4eBlNlKjfO/1sLdts99xUlSoIYXoFimg== dependencies: ansi-escapes "^4.3.2" ansi-styles "^4.3.0" @@ -1555,10 +1555,10 @@ strip-ansi "6.0.1" ts-retry-promise "^0.7.1" -"@salesforce/core@^5.2.0", "@salesforce/core@^5.2.9", "@salesforce/core@^5.3.1", "@salesforce/core@^5.3.10", "@salesforce/core@^5.3.14", "@salesforce/core@^5.3.16", "@salesforce/core@^5.3.5", "@salesforce/core@^5.3.9": - version "5.3.16" - resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-5.3.16.tgz#93987b0bbe37b73146929ceab658b653215adbe6" - integrity sha512-Q5BOFPwACXe/ebwROzpacwPA/WSRfOM7W63exX4b0Gv2rQoMB2NZLxHBQP3FZ4eH4PMHvBB16IzmtNq8vSJktw== +"@salesforce/core@^5.2.0", "@salesforce/core@^5.2.9", "@salesforce/core@^5.3.1", "@salesforce/core@^5.3.10", "@salesforce/core@^5.3.14", "@salesforce/core@^5.3.16", "@salesforce/core@^5.3.17", "@salesforce/core@^5.3.5", "@salesforce/core@^5.3.9": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-5.3.17.tgz#fe7e5b89bdfffc9c1634e0371fab6115b23fe312" + integrity sha512-3BYdpRwQrtaTNHINk+NSrXwlr0xZjKSkJWhMeryjGyTGf9YPRu1JNawl6PPbEpGCQp2y+NLUdp6vMy64jwIDBg== dependencies: "@salesforce/kit" "^3.0.15" "@salesforce/schemas" "^1.6.1" @@ -1721,17 +1721,16 @@ semver "^7.5.4" tslib "^2" -"@salesforce/plugin-limits@2.3.41": - version "2.3.41" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-limits/-/plugin-limits-2.3.41.tgz#a54a6e3af88dfdd2d9e1ae93746997cd049acd9d" - integrity sha512-kDf1/COrx4Z+jwjnOZxHe7qIbkICpj5PyDjO0X+ueWStN5HT3s27FKfEYlSn7P+XBF11MTR8dmxbaVYt+AEjdg== +"@salesforce/plugin-limits@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-limits/-/plugin-limits-3.0.1.tgz#26d2bf2dba6496068af2a9dc3146c4cbe334c868" + integrity sha512-R5MHAYT3NyZ9d/pRrgwbUx+K/3slwPm81f/x5DWBltapMJQB7lA5ZkAQ1eOPTFg3brdMyqrvyAV+rBbsrCkxbQ== dependencies: - "@oclif/core" "^2.15.0" - "@salesforce/core" "^5.3.10" + "@oclif/core" "^3.9.0" + "@salesforce/core" "^5.3.17" "@salesforce/kit" "^3.0.11" - "@salesforce/sf-plugins-core" "^3.1.28" + "@salesforce/sf-plugins-core" "^4.0.0" "@salesforce/ts-types" "^2.0.9" - tslib "^2" "@salesforce/plugin-login@1.2.40": version "1.2.40" @@ -1745,18 +1744,17 @@ inquirer "^8.2.6" tslib "^2" -"@salesforce/plugin-marketplace@0.3.2": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-marketplace/-/plugin-marketplace-0.3.2.tgz#f50ddfc2ccbb7220b09a96e8357f2252838f4ae2" - integrity sha512-k33B77dEuMU2Jy5tFejCdfpWTZndT+nglKJ5UKC4e3gCwabbHstXgQw+6x1jjJzcfzY6E93TuG8/mAnRtvwKww== +"@salesforce/plugin-marketplace@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-marketplace/-/plugin-marketplace-1.0.1.tgz#2d56ba7353dfe92b638e8ac4965fc86a8e791b07" + integrity sha512-7BTE0JhkU9f/Oq/slrCzKPdoIOy4zQP/VrDRoGfP9phWxWiWw+lJ/qmzBOj4NkvgwggRd8BpGFCQUiC4st0vbw== dependencies: - "@oclif/core" "^2.15.0" - "@salesforce/core" "^5.2.9" + "@oclif/core" "^3.10.0" + "@salesforce/core" "^5.3.17" "@salesforce/kit" "^3.0.15" - "@salesforce/sf-plugins-core" "^3.1.14" - got "^11" + "@salesforce/sf-plugins-core" "^4.0.0" + got "^13.0.0" proxy-agent "^6.3.1" - tslib "^2" "@salesforce/plugin-org@2.11.7": version "2.11.7" @@ -1800,10 +1798,10 @@ tslib "^2" yarn-deduplicate "^3.1.0" -"@salesforce/plugin-schema@2.3.32": - version "2.3.32" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-schema/-/plugin-schema-2.3.32.tgz#f25bca8b48c62d5e1c57cc904a69ea16915df9e8" - integrity sha512-xigwrpeuDfhNrzH/rq1ZtxZPhlaG4eBjZqIIla0mjnFNK2vAXGlIeS9ShTBGHUoLV9dyzQpejZ48otdCxUT2Eg== +"@salesforce/plugin-schema@2.3.33": + version "2.3.33" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-schema/-/plugin-schema-2.3.33.tgz#0c3f0e48ea0b17b376ee3e46575b948840a7c696" + integrity sha512-8Q3M1/hOlkPYPE+fe1dD1MSHe4GZhTJuYufiHC4XSVShVVBUIuTYcnFKiHNoO8wNpBcrgdl8B17bOF5EHQF86Q== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.3.10" @@ -1926,7 +1924,7 @@ chalk "^4" inquirer "^8.2.5" -"@salesforce/sf-plugins-core@^3.1.14", "@salesforce/sf-plugins-core@^3.1.20", "@salesforce/sf-plugins-core@^3.1.22", "@salesforce/sf-plugins-core@^3.1.23", "@salesforce/sf-plugins-core@^3.1.25", "@salesforce/sf-plugins-core@^3.1.26", "@salesforce/sf-plugins-core@^3.1.28": +"@salesforce/sf-plugins-core@^3.1.20", "@salesforce/sf-plugins-core@^3.1.22", "@salesforce/sf-plugins-core@^3.1.23", "@salesforce/sf-plugins-core@^3.1.25", "@salesforce/sf-plugins-core@^3.1.26", "@salesforce/sf-plugins-core@^3.1.28": version "3.1.28" resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-3.1.28.tgz#7714c5b1ce26052bb5cbc524c5990bc52eb601cd" integrity sha512-Z1fVS/pqLCX/3ESrjvtzyuvDFwXu8qxjqs5Gana0J7RKkhDL0f7w+pz3DR1/YfQPeHK8rk9pFDOKB3tOnXf9Lw== @@ -2070,6 +2068,11 @@ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== +"@sindresorhus/is@^5.2.0": + version "5.6.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-5.6.0.tgz#41dd6093d34652cddb5d5bdeee04eafc33826668" + integrity sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g== + "@sinonjs/commons@^1", "@sinonjs/commons@^1.3.0", "@sinonjs/commons@^1.6.0", "@sinonjs/commons@^1.7.0", "@sinonjs/commons@^1.8.1": version "1.8.6" resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9" @@ -2159,6 +2162,13 @@ dependencies: defer-to-connect "^2.0.0" +"@szmarczak/http-timer@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-5.0.1.tgz#c7c1bf1141cdd4751b0399c8fc7b8b664cd5be3a" + integrity sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw== + dependencies: + defer-to-connect "^2.0.1" + "@tootallnate/once@1": version "1.1.2" resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" @@ -2262,10 +2272,10 @@ "@types/minimatch" "*" "@types/node" "*" -"@types/http-cache-semantics@*": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812" - integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ== +"@types/http-cache-semantics@*", "@types/http-cache-semantics@^4.0.2": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz#a3ff232bf7d5c55f38e4e45693eda2ebb545794d" + integrity sha512-V46MYLFp08Wf2mmaBhvgjStM3tPa+2GAdy/iqoX+noX1//zje2x4XmrIU0cAwyClATsTmahbtoQ2EwP7I5WSiA== "@types/istanbul-lib-coverage@*": version "2.0.4" @@ -3307,6 +3317,24 @@ cacheable-lookup@^5.0.3: resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== +cacheable-lookup@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz#3476a8215d046e5a3202a9209dd13fec1f933a27" + integrity sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w== + +cacheable-request@^10.2.8: + version "10.2.14" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-10.2.14.tgz#eb915b665fda41b79652782df3f553449c406b9d" + integrity sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ== + dependencies: + "@types/http-cache-semantics" "^4.0.2" + get-stream "^6.0.1" + http-cache-semantics "^4.1.1" + keyv "^4.5.3" + mimic-response "^4.0.0" + normalize-url "^8.0.0" + responselike "^3.0.0" + cacheable-request@^7.0.2: version "7.0.4" resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz#7a33ebf08613178b403635be7b899d3e69bbe817" @@ -4195,7 +4223,7 @@ defaults@^1.0.3: dependencies: clone "^1.0.2" -defer-to-connect@^2.0.0: +defer-to-connect@^2.0.0, defer-to-connect@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== @@ -5171,6 +5199,11 @@ foreground-child@^3.1.0: cross-spawn "^7.0.0" signal-exit "^4.0.1" +form-data-encoder@^2.1.2: + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-2.1.4.tgz#261ea35d2a70d48d30ec7a9603130fa5515e9cd5" + integrity sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw== + form-data@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" @@ -5342,7 +5375,7 @@ get-stream@^5.0.0, get-stream@^5.1.0: dependencies: pump "^3.0.0" -get-stream@^6.0.0: +get-stream@^6.0.0, get-stream@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== @@ -5540,6 +5573,23 @@ got@^11, got@^11.8.2, got@^11.8.6: p-cancelable "^2.0.0" responselike "^2.0.0" +got@^13.0.0: + version "13.0.0" + resolved "https://registry.yarnpkg.com/got/-/got-13.0.0.tgz#a2402862cef27a5d0d1b07c0fb25d12b58175422" + integrity sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA== + dependencies: + "@sindresorhus/is" "^5.2.0" + "@szmarczak/http-timer" "^5.0.1" + cacheable-lookup "^7.0.0" + cacheable-request "^10.2.8" + decompress-response "^6.0.0" + form-data-encoder "^2.1.2" + get-stream "^6.0.1" + http2-wrapper "^2.1.10" + lowercase-keys "^3.0.0" + p-cancelable "^3.0.0" + responselike "^3.0.0" + graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" @@ -5751,6 +5801,14 @@ http2-wrapper@^1.0.0-beta.5.2: quick-lru "^5.1.1" resolve-alpn "^1.0.0" +http2-wrapper@^2.1.10: + version "2.2.0" + resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.2.0.tgz#b80ad199d216b7d3680195077bd7b9060fa9d7f3" + integrity sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ== + dependencies: + quick-lru "^5.1.1" + resolve-alpn "^1.2.0" + https-proxy-agent@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" @@ -6628,10 +6686,10 @@ jws@^3.2.2: jwa "^1.4.1" safe-buffer "^5.0.1" -keyv@^4.0.0: - version "4.5.2" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz#0e310ce73bf7851ec702f2eaf46ec4e3805cce56" - integrity sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g== +keyv@^4.0.0, keyv@^4.5.3: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== dependencies: json-buffer "3.0.1" @@ -7002,6 +7060,11 @@ lowercase-keys@^2.0.0: resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== +lowercase-keys@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz#c5e7d442e37ead247ae9db117a9d0a467c89d4f2" + integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ== + lru-cache@^10.0.1, "lru-cache@^9.1.1 || ^10.0.0": version "10.0.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.1.tgz#0a3be479df549cca0e5d693ac402ff19537a6b7a" @@ -7252,6 +7315,11 @@ mimic-response@^3.1.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== +mimic-response@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-4.0.0.tgz#35468b19e7c75d10f5165ea25e75a5ceea7cf70f" + integrity sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg== + min-indent@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" @@ -7771,6 +7839,11 @@ normalize-url@^6.0.1: resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== +normalize-url@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-8.0.0.tgz#593dbd284f743e8dcf6a5ddf8fadff149c82701a" + integrity sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw== + npm-audit-report@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/npm-audit-report/-/npm-audit-report-5.0.0.tgz#83ac14aeff249484bde81eff53c3771d5048cf95" @@ -8252,6 +8325,11 @@ p-cancelable@^2.0.0: resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== +p-cancelable@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-3.0.0.tgz#63826694b54d61ca1c20ebcb6d3ecf5e14cd8050" + integrity sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw== + p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" @@ -9141,7 +9219,7 @@ requires-port@^1.0.0: resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== -resolve-alpn@^1.0.0: +resolve-alpn@^1.0.0, resolve-alpn@^1.2.0: version "1.2.1" resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== @@ -9184,6 +9262,13 @@ responselike@^2.0.0: dependencies: lowercase-keys "^2.0.0" +responselike@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-3.0.0.tgz#20decb6c298aff0dbee1c355ca95461d42823626" + integrity sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg== + dependencies: + lowercase-keys "^3.0.0" + restore-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"