Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency zod to v3.22.3 [security] #1062

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 6, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
zod (source) 3.21.4 -> 3.22.3 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.

GitHub Vulnerability Alerts

CVE-2023-4316

Zod version 3.22.2 allows an attacker to perform a denial of service while validating emails.


Release Notes

colinhacks/zod (zod)

v3.22.3

Compare Source

Commits:

v3.22.2

Compare Source

Commits:

v3.22.1

Compare Source

Commits:

Fix handing of this in ZodFunction schemas. The parse logic for function schemas now requires the Reflect API.

const methodObject = z.object({
  property: z.number(),
  method: z.function().args(z.string()).returns(z.number()),
});
const methodInstance = {
  property: 3,
  method: function (s: string) {
    return s.length + this.property;
  },
};
const parsed = methodObject.parse(methodInstance);
parsed.method("length=8"); // => 11 (8 length + 3 property)

v3.22.0

Compare Source

ZodReadonly

This release introduces ZodReadonly and the .readonly() method on ZodType.

Calling .readonly() on any schema returns a ZodReadonly instance that wraps the original schema. The new schema parses all inputs using the original schema, then calls Object.freeze() on the result. The inferred type is also marked as readonly.

const schema = z.object({ name: string }).readonly();
type schema = z.infer<typeof schema>;
// Readonly<{name: string}>

const result = schema.parse({ name: "fido" });
result.name = "simba"; // error

The inferred type uses TypeScript's built-in readonly types when relevant.

z.array(z.string()).readonly();
// readonly string[]

z.tuple([z.string(), z.number()]).readonly();
// readonly [string, number]

z.map(z.string(), z.date()).readonly();
// ReadonlyMap<string, Date>

z.set(z.string()).readonly();
// ReadonlySet<Promise<string>>

Commits:


Configuration

📅 Schedule: Branch creation - "" in timezone Europe/Paris, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies label Oct 6, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Oct 6, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
➤ YN0000: ┌ Resolution step
➤ YN0002: │ @aws-sdk/token-providers@npm:3.523.0 doesn't provide @aws-sdk/credential-provider-node (pc9a53), requested by @aws-sdk/client-sso-oidc
➤ YN0002: │ @aws-sdk/token-providers@npm:3.525.0 doesn't provide @aws-sdk/credential-provider-node (pcac39), requested by @aws-sdk/client-sso-oidc
➤ YN0002: │ @lerna/version@npm:5.6.2 doesn't provide nx (p20b2d), requested by @nrwl/devkit
➤ YN0002: │ @shared/utils@workspace:shared/utils doesn't provide @swc/core (p28398), requested by @swc/jest
➤ YN0002: │ @socialgouv/cdtn-ui@npm:4.102.2 doesn't provide react (p25b1e), requested by @reach/dialog
➤ YN0002: │ @socialgouv/cdtn-ui@npm:4.102.2 doesn't provide react (p2322a), requested by @socialgouv/react-accessible-accordion
➤ YN0002: │ @socialgouv/cdtn-ui@npm:4.102.2 doesn't provide react (pda81a), requested by react-feather
➤ YN0002: │ @socialgouv/cdtn-ui@npm:4.102.2 doesn't provide react (pc8483), requested by react-tabs
➤ YN0002: │ @socialgouv/cdtn-ui@npm:4.102.2 doesn't provide react (pae870), requested by styled-components
➤ YN0002: │ @socialgouv/cdtn-ui@npm:4.102.2 doesn't provide react (p5018a), requested by use-onclickoutside
➤ YN0002: │ @socialgouv/cdtn-ui@npm:4.102.2 doesn't provide react-dom (p7bd1d), requested by @reach/dialog
➤ YN0002: │ @socialgouv/cdtn-ui@npm:4.102.2 doesn't provide react-dom (p315a7), requested by @socialgouv/react-accessible-accordion
➤ YN0002: │ @socialgouv/cdtn-ui@npm:4.102.2 doesn't provide react-dom (p463ae), requested by styled-components
➤ YN0002: │ @socialgouv/cdtn-ui@npm:4.102.2 doesn't provide react-is (p5206e), requested by styled-components
➤ YN0002: │ @tiptap/starter-kit@npm:2.1.12 doesn't provide @tiptap/pm (p6560d), requested by @tiptap/core
➤ YN0002: │ @tiptap/starter-kit@npm:2.1.12 doesn't provide @tiptap/pm (p1fe9b), requested by @tiptap/extension-code-block
➤ YN0002: │ @tiptap/starter-kit@npm:2.1.12 doesn't provide @tiptap/pm (pda644), requested by @tiptap/extension-dropcursor
➤ YN0002: │ @tiptap/starter-kit@npm:2.1.12 doesn't provide @tiptap/pm (pa1b36), requested by @tiptap/extension-gapcursor
➤ YN0002: │ @tiptap/starter-kit@npm:2.1.12 doesn't provide @tiptap/pm (p6fff9), requested by @tiptap/extension-history
➤ YN0002: │ @tiptap/starter-kit@npm:2.1.12 doesn't provide @tiptap/pm (p85123), requested by @tiptap/extension-horizontal-rule
➤ YN0002: │ babel-plugin-styled-components@npm:2.1.4 [bb3ef] doesn't provide @babel/core (p6f303), requested by @babel/plugin-syntax-jsx
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide @testing-library/dom (p3b203), requested by @testing-library/user-event
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide @tiptap/core (p76d20), requested by @tiptap-pro/extension-details-content
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide @tiptap/core (p17edc), requested by @tiptap-pro/extension-details-summary
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide @tiptap/core (pd7d9d), requested by @tiptap-pro/extension-details
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide @tiptap/core (pb6f97), requested by @tiptap/extension-link
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide @tiptap/core (p06ec2), requested by @tiptap/extension-placeholder
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide @tiptap/core (pb36e0), requested by @tiptap/extension-table-cell
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide @tiptap/core (pe4bdb), requested by @tiptap/extension-table-header
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide @tiptap/core (p2de94), requested by @tiptap/extension-table-row
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide @tiptap/core (p2e5c3), requested by @tiptap/extension-table
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide @tiptap/core (pbd616), requested by @tiptap/react
➤ YN0060: │ frontend@workspace:targets/frontend provides react (pf2b7a) with version 18.2.0, which doesn't satisfy what @reach/accordion and some of its descendants request
➤ YN0060: │ frontend@workspace:targets/frontend provides react (p6bbce) with version 18.2.0, which doesn't satisfy what @reach/dialog and some of its descendants request
➤ YN0060: │ frontend@workspace:targets/frontend provides react (p33600) with version 18.2.0, which doesn't satisfy what @reach/menu-button and some of its descendants request
➤ YN0060: │ frontend@workspace:targets/frontend provides react (pfc100) with version 18.2.0, which doesn't satisfy what @reach/visually-hidden requests
➤ YN0060: │ frontend@workspace:targets/frontend provides react (p90d1a) with version 18.2.0, which doesn't satisfy what react-sortable-hoc requests
➤ YN0060: │ frontend@workspace:targets/frontend provides react-dom (p19c5b) with version 18.2.0, which doesn't satisfy what @reach/accordion and some of its descendants request
➤ YN0060: │ frontend@workspace:targets/frontend provides react-dom (p3bf58) with version 18.2.0, which doesn't satisfy what @reach/dialog and some of its descendants request
➤ YN0060: │ frontend@workspace:targets/frontend provides react-dom (p9cf59) with version 18.2.0, which doesn't satisfy what @reach/menu-button and some of its descendants request
➤ YN0060: │ frontend@workspace:targets/frontend provides react-dom (p29f85) with version 18.2.0, which doesn't satisfy what @reach/visually-hidden requests
➤ YN0060: │ frontend@workspace:targets/frontend provides react-dom (pe4e63) with version 18.2.0, which doesn't satisfy what react-sortable-hoc requests
➤ YN0002: │ frontend@workspace:targets/frontend doesn't provide react-is (pd0ac5), requested by @reach/menu-button
➤ YN0060: │ ingester@workspace:targets/ingester provides typescript (p0efae) with version 5.4.3, which doesn't satisfy what ts-jest requests
➤ YN0000: │ Some peer dependencies are incorrectly met; run yarn explain peer-requirements <hash> for details, where <hash> is the six-letter p-prefixed code
➤ YN0000: └ Completed in 3s 138ms
➤ YN0000: ┌ Fetch step
➤ YN0035: │ @tiptap-pro/extension-details@npm:2.3.3: The remote server failed to provide the requested resource
➤ YN0035: │   Response Code: 403 (Forbidden)
➤ YN0035: │   Request Method: GET
➤ YN0035: │   Request URL: https://registry.tiptap.dev/@tiptap-pro/extension-details/-/extension-details-2.3.3.tgz
➤ YN0035: │ @tiptap-pro/extension-details-content@npm:2.3.3: The remote server failed to provide the requested resource
➤ YN0035: │   Response Code: 403 (Forbidden)
➤ YN0035: │   Request Method: GET
➤ YN0035: │   Request URL: https://registry.tiptap.dev/@tiptap-pro/extension-details-content/-/extension-details-content-2.3.3.tgz
➤ YN0035: │ @tiptap-pro/extension-details-summary@npm:2.3.3: The remote server failed to provide the requested resource
➤ YN0035: │   Response Code: 403 (Forbidden)
➤ YN0035: │   Request Method: GET
➤ YN0035: │   Request URL: https://registry.tiptap.dev/@tiptap-pro/extension-details-summary/-/extension-details-summary-2.3.3.tgz
➤ YN0013: │ 2204 packages were already cached, 7 had to be fetched
➤ YN0000: └ Completed in 5s 213ms
➤ YN0000: Failed with errors in 8s 361ms

@sonarcloud
Copy link

sonarcloud bot commented Oct 6, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@socket-security
Copy link

socket-security bot commented Oct 6, 2023

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@babel/code-frame@7.24.2 environment 0 24.1 kB nicolo-ribaudo
npm/@babel/generator@7.24.4 None 0 493 kB nicolo-ribaudo
npm/@babel/helper-annotate-as-pure@7.22.5 None 0 4.02 kB nicolo-ribaudo
npm/@babel/helper-function-name@7.23.0 None 0 21.6 kB nicolo-ribaudo
npm/@babel/helper-hoist-variables@7.22.5 None 0 7.03 kB nicolo-ribaudo
npm/@babel/helper-module-imports@7.24.3 None 0 63.8 kB nicolo-ribaudo
npm/@babel/helper-module-transforms@7.23.3 None 0 158 kB nicolo-ribaudo
npm/@babel/helper-simple-access@7.22.5 None 0 14.1 kB nicolo-ribaudo
npm/@babel/helper-split-export-declaration@7.22.6 None 0 10.7 kB nicolo-ribaudo
npm/@babel/helpers@7.24.4 None 0 650 kB nicolo-ribaudo
npm/@babel/plugin-syntax-async-generators@7.8.4 None 0 2.52 kB nicolo-ribaudo
npm/@babel/plugin-syntax-class-properties@7.12.13 None 0 2.68 kB nicolo-ribaudo
npm/@babel/plugin-syntax-dynamic-import@7.8.3 None 0 2.47 kB nicolo-ribaudo
npm/@babel/plugin-syntax-export-namespace-from@7.8.3 None 0 2.62 kB nicolo-ribaudo
npm/@babel/plugin-syntax-import-meta@7.10.4 None 0 2.56 kB jlhwung
npm/@babel/plugin-syntax-json-strings@7.8.3 None 0 2.58 kB nicolo-ribaudo
npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4 None 0 2.74 kB jlhwung
npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3 None 0 2.63 kB nicolo-ribaudo
npm/@babel/plugin-syntax-numeric-separator@7.10.4 None 0 2.75 kB jlhwung
npm/@babel/plugin-syntax-object-rest-spread@7.8.3 None 0 2.53 kB nicolo-ribaudo
npm/@babel/plugin-syntax-optional-catch-binding@7.8.3 None 0 2.57 kB nicolo-ribaudo
npm/@babel/plugin-syntax-optional-chaining@7.8.3 None 0 2.52 kB nicolo-ribaudo
npm/@babel/template@7.24.0 None 0 68.9 kB nicolo-ribaudo
npm/@babel/types@7.24.0 environment 0 2.41 MB nicolo-ribaudo
npm/@jridgewell/gen-mapping@0.3.5 None 0 81.6 kB jridgewell
npm/@jridgewell/trace-mapping@0.3.25 None 0 169 kB jridgewell
npm/@npmcli/promise-spawn@3.0.0 shell 0 6 kB gar
npm/@sinclair/typebox@0.27.8 None 0 442 kB sinclair
npm/@types/node@20.12.5 None 0 2.03 MB types
npm/@types/throttle-debounce@2.1.0 None 0 7.25 kB types
npm/@types/tough-cookie@4.0.5 None 0 13.5 kB types
npm/accepts@1.3.8 None 0 16.8 kB dougwilson
npm/ansi-align@3.0.1 None 0 7.68 kB nexdrew
npm/ansi-escapes@4.3.2 None +1 135 kB sindresorhus
npm/anymatch@3.1.3 None 0 9.65 kB phated
npm/brace-expansion@2.0.1 None 0 11.5 kB juliangruber
npm/braces@3.0.2 None 0 49.2 kB doowb
npm/browserslist@4.23.0 environment, filesystem 0 62.8 kB ai
npm/call-bind@1.0.7 None 0 22.1 kB ljharb
npm/cli-boxes@2.2.1 None 0 6.14 kB sindresorhus
npm/cli-cursor@3.1.0 None 0 4.37 kB sindresorhus
npm/cuint@0.2.2 None 0 125 kB pierrec
npm/define-properties@1.2.1 None 0 12.9 kB ljharb
npm/ejs@3.1.9 eval, filesystem 0 142 kB mde
npm/entities@4.5.0 None 0 413 kB feedic
npm/error-ex@1.3.2 None 0 9.04 kB qix
npm/exponential-backoff@3.1.1 None 0 37.3 kB sssayegh
npm/fill-range@7.0.1 None 0 16.4 kB jonschlinkert
npm/flat@5.0.2 None 0 26.6 kB timoxley
npm/fs-minipass@2.1.0 filesystem 0 14.1 kB isaacs
npm/git-up@7.0.0 None 0 10.9 kB ionicabizau
npm/glob@8.1.0 filesystem 0 56.2 kB isaacs
npm/gopd@1.0.1 None 0 7.7 kB ljharb
npm/graphql-tag@2.12.6 None 0 172 kB apollo-bot
npm/graphql@16.8.1 None 0 1.34 MB i1g
npm/has-tostringtag@1.0.2 None 0 17.6 kB ljharb
npm/hasown@2.0.2 None 0 8.77 kB ljharb
npm/hoist-non-react-statics@3.3.2 None 0 38.9 kB mridgway
npm/hosted-git-info@5.2.1 None +1 160 kB lukekarrys
npm/http-errors@2.0.0 None 0 18.8 kB dougwilson
npm/iconv-lite@0.4.24 None 0 336 kB ashtuchkin
npm/inflight@1.0.6 None 0 3.76 kB isaacs
npm/ip@2.0.0 None 0 13.6 kB indutny
npm/is-binary-path@2.1.0 None 0 3.08 kB sindresorhus
npm/is-core-module@2.13.1 None 0 30.2 kB ljharb
npm/is-plain-object@5.0.0 None 0 9.16 kB trysound
npm/is-ssh@1.4.0 None 0 17.5 kB ionicabizau
npm/jsonfile@6.1.0 filesystem 0 19.8 kB ryanzim
npm/loose-envify@1.4.0 environment 0 5.81 kB zertosh
npm/lru-cache@6.0.0 None 0 15.6 kB isaacs
npm/mime-types@2.1.35 None 0 18.3 kB dougwilson
npm/minipass-collect@1.0.2 None 0 4.87 kB isaacs
npm/minipass-flush@1.0.5 None 0 3.77 kB isaacs
npm/minipass-pipeline@1.2.4 None 0 7 kB isaacs
npm/minipass@3.3.6 None 0 48.1 kB isaacs
npm/minizlib@2.1.2 None 0 17.3 kB isaacs
npm/node-gyp@9.4.1 environment, shell Transitive: filesystem +1 2.12 MB lukekarrys
npm/npm-bundled@1.1.2 filesystem 0 9.74 kB isaacs
npm/npm-pick-manifest@7.0.2 None 0 16.3 kB lukekarrys
npm/npm-run-path@4.0.1 environment 0 8.13 kB sindresorhus
npm/object.pick@1.3.0 None 0 6.36 kB phated
npm/on-finished@2.4.1 unsafe 0 13.7 kB dougwilson
npm/once@1.4.0 None 0 4.05 kB isaacs
npm/onetime@5.1.2 None 0 6.17 kB sindresorhus
npm/parse-conflict-json@2.0.2 None 0 6.43 kB gar
npm/parse-path@7.0.0 None 0 13.1 kB ionicabizau
npm/parse-url@8.1.0 None 0 36.3 kB ionicabizau
npm/pkg-dir@4.2.0 None 0 4.75 kB sindresorhus
npm/proc-log@2.0.1 None 0 5.25 kB gar
npm/prop-types@15.8.1 environment 0 94.5 kB ljharb
npm/protocols@2.0.1 None 0 9.29 kB ionicabizau
npm/proxy-addr@2.0.7 None 0 15.4 kB dougwilson
npm/pure-rand@6.1.0 None 0 84 kB ndubien
npm/qs@6.11.0 None 0 229 kB ljharb
npm/read-package-json-fast@2.0.3 filesystem 0 8.25 kB isaacs
npm/readdir-scoped-modules@1.1.0 None 0 4.93 kB isaacs
npm/readdirp@3.6.0 filesystem 0 20.5 kB paulmillr
npm/resolve@1.22.8 environment, filesystem 0 145 kB ljharb
npm/safe-array-concat@1.1.2 None 0 16.4 kB ljharb
npm/serve-static@1.15.0 None 0 25.2 kB dougwilson
npm/source-map-support@0.5.21 filesystem 0 85.2 kB linusu
npm/stack-trace@0.0.10 None 0 8.85 kB felixge
npm/tmp@0.2.3 filesystem 0 54.4 kB raszi
npm/to-regex-range@5.0.1 None 0 22.9 kB jonschlinkert
npm/treeverse@2.0.0 None 0 13 kB gar
npm/type-is@1.6.18 None 0 18.5 kB dougwilson
npm/unfetch@5.0.0 None 0 30.1 kB developit
npm/update-browserslist-db@1.0.13 filesystem, shell 0 13.9 kB ai
npm/whatwg-url@5.0.0 None 0 49.9 kB domenic
npm/widest-line@3.1.0 None 0 3.73 kB sindresorhus
npm/xxhashjs@0.2.2 None 0 182 kB pierrec

🚮 Removed packages: npm/@gar/promisify@1.1.3, npm/@sindresorhus/is@0.14.0, npm/@types/aria-query@5.0.4, npm/@types/http-cache-semantics@4.0.4, npm/@types/lodash@4.17.0, npm/@types/node@16.18.95, npm/@types/prettier@2.7.3, npm/@types/prop-types@15.7.12, npm/@xmldom/xmldom@0.8.10, npm/abbrev@1.1.1, npm/acorn-walk@7.2.0, npm/ansi-regex@4.1.1, npm/aproba@2.0.0, npm/arrify@1.0.1, npm/asap@2.0.6, npm/astral-regex@2.0.0, npm/async@3.2.5, npm/big-integer@1.6.52, npm/bluebird@3.4.7, npm/browser-process-hrtime@1.0.0, npm/buffer-equal-constant-time@1.0.1, npm/builtins@1.0.3, npm/cacheable-lookup@5.0.4, npm/ci-info@2.0.0, npm/clone@1.0.4, npm/color-support@1.1.3, npm/common-tags@1.8.2, npm/component-emitter@1.3.0, npm/console-control-strings@1.1.0, npm/convert-source-map@1.9.0, npm/crypto-random-string@2.0.0, npm/css.escape@1.5.1, npm/cssom@0.4.4, npm/debuglog@1.0.1, npm/decamelize@1.2.0, npm/decode-uri-component@0.2.2, npm/deep-extend@0.6.0, npm/defer-to-connect@1.1.3, npm/delegates@1.0.0, npm/detect-libc@2.0.3, npm/diff-sequences@27.5.1, npm/dom-accessibility-api@0.5.16, npm/dotenv@10.0.0, npm/emittery@0.8.1, npm/emoji-regex@7.0.3, npm/escape-goat@2.1.1, npm/expand-template@2.0.3, npm/extend@3.0.2, npm/from@0.1.7, npm/fs-constants@1.0.0, npm/functions-have-names@1.2.3, npm/github-from-package@0.0.0, npm/has-bigints@1.0.2, npm/has-yarn@2.1.0, npm/ignore-by-default@1.0.1, npm/import-lazy@2.1.0, npm/is-callable@1.2.7, npm/is-fullwidth-code-point@2.0.0, npm/is-interactive@1.0.0, npm/is-obj@2.0.0, npm/is-typedarray@1.0.0, npm/is-unicode-supported@0.1.0, npm/is-utf8@0.2.1, npm/is-windows@1.0.2, npm/is-yarn-global@0.3.0, npm/jest-get-type@27.5.1, npm/jest-regex-util@27.5.1, npm/json-stringify-safe@5.0.1, npm/jsonparse@1.3.1, npm/jsonwebtoken@9.0.2, npm/just-diff-apply@5.5.0, npm/just-diff@5.2.0, npm/lodash.includes@4.3.0, npm/lodash.isboolean@3.0.3, npm/lodash.isinteger@4.0.4, npm/lodash.isnumber@3.0.3, npm/lodash.isplainobject@4.0.6, npm/lodash.isstring@4.0.1, npm/lodash.once@4.1.1, npm/lowercase-keys@2.0.0, npm/lz-string@1.5.0, npm/map-stream@0.1.0, npm/mimic-response@1.0.1, npm/min-indent@1.0.1, npm/mkdirp-classic@0.5.3, npm/napi-build-utils@1.0.2, npm/normalize-url@4.5.1, npm/p-cancelable@2.1.1, npm/p-finally@1.0.0, npm/p-try@1.0.0, npm/parse5@6.0.1, npm/pinkie@2.0.4, npm/prepend-http@2.0.0, npm/proto-list@1.2.4, npm/proxy-from-env@1.1.0, npm/pstree.remy@1.1.8, npm/q@1.5.1, npm/querystringify@2.2.0, npm/readline-sync@1.4.10, npm/regenerator-runtime@0.13.11, npm/require-main-filename@2.0.0, npm/resolve-alpn@1.2.1, npm/resolve.exports@1.1.1, npm/set-blocking@2.0.0, npm/setimmediate@1.0.5, npm/shebang-regex@1.0.0, npm/simple-concat@1.0.1, npm/strnum@1.0.5, npm/throat@6.0.2, npm/tiny-warning@1.0.3, npm/to-readable-stream@1.0.0, npm/tree-kill@1.2.2, npm/typedarray@0.0.6, npm/underscore@1.13.6, npm/whatwg-mimetype@2.3.0, npm/wordwrap@1.0.0, npm/xdg-basedir@4.0.0, npm/xml-name-validator@3.0.0, npm/xmlchars@2.2.0, npm/xtend@4.0.2

View full report↗︎

Copy link

sonarcloud bot commented Apr 8, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants