lowsky / gh-dashboard-relay

Dashboard for all feature branches - linking to the deployed/running in docker containers and showing their states. Live Version:
https://dashboard-gh.vercel.app/
Apache License 2.0
2 stars 0 forks source link

chore(deps): update dependency react-relay to v18.2.0 #2822

Closed renovate[bot] closed 1 week ago

renovate[bot] commented 1 week ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-relay (source) 18.1.0 -> 18.2.0 age adoption passing confidence

Release Notes

facebook/relay (react-relay) ### [`v18.2.0`](https://redirect.github.com/facebook/relay/releases/tag/v18.2.0): Version 18.2.0 Release Notes [Compare Source](https://redirect.github.com/facebook/relay/compare/v18.1.0...v18.2.0) Relay version 18.2.0 comes with several bug fixes and improvements! ##### New compiler capability: Relay Codemods Codemods are tools which enable you to programmatically update your code. These are especially helpful if you want to upgrade an API across your whole codebase without needing to manually change each call site. The Relay compiler, with its understanding of your GraphQL snippets, is well positioned to help with these kinds of tasks. In Relay 18.2.0 we are introducing [Relay Codemods](https://relay.dev/docs/next/guides/codemods/). We currently support two different codemods: - `mark-dangerous-conditional-fragment-spreads` marks places where `@alias` is required to make a fragment spread safe. This can enable you to turn on the `enforce_fragment_alias_where_ambiguous` feature flag. Learn more in the [`@alias` docs](https://relay.dev/docs/next/guides/alias-directive/#enforced-safety). - `remove-unnecessary-required-directives` identifies places where `@required` is unnecessary because it's used on a non-nullable field within a fragment or query that is `@throwOnFieldError`, and removes the `@required` directive. We are looking forward to helping Relay users with more codemods in the future! ##### New experimental hook for pagination with prefetching It is often possible to speed up list pagination by pre-loading one or more pages of results ahead of what the user is currently viewing. Our previous APIs made this difficult to *fetch* the next page of data without also rendering it at the same time. We are currently exploring an **experimental** API to make it easy to manage paginated lists with prefetching. Read more in the docs: [usePrefetchableForwardPaginationFragment](https://relay.dev/docs/next/api-reference/use-prefetchable-forward-pagination-fragment/) ##### Expand places where [@​catch](https://redirect.github.com/catch) can be used The [`@catch`](https://relay.dev/docs/next/guides/catch-directive/) directive can now be used on fragments, queries, mutations and [aliased](https://relay.dev/docs/next/guides/alias-directive/#enforced-safety) inline fragments. This enables more flexibility in controlling how field errors are handled. ##### Bug fixes - \[[`682ac5a`](https://redirect.github.com/facebook/relay/commit/682ac5a)]: Include Relay resolver import type when field is selected on query as well ([#​4820](https://redirect.github.com/facebook/relay/issues/4820)) by Ernie Turner - \[[`d6cb5a2`](https://redirect.github.com/facebook/relay/commit/d6cb5a2)]: Update required-on-non-null validation to also work within [@​catch](https://redirect.github.com/catch) by Gordy French - \[[`356327c`](https://redirect.github.com/facebook/relay/commit/356327c)]: Fix bug in Connections with errors by Evan Yeung - \[[`9571d80`](https://redirect.github.com/facebook/relay/commit/9571d80)]: Fix result type generic for Error to not double-nest by Itamar Kestenbaum - \[[`af35418`](https://redirect.github.com/facebook/relay/commit/af35418)]: Ignore @​dangerously_unaliased_fixme when comparing structs by Jordan Eldredge - \[[`f166d6b`](https://redirect.github.com/facebook/relay/commit/f166d6b)]: Fix dangling resolver artifact by Tianyu Yao ##### Improvements - \[[`81eab03`](https://redirect.github.com/facebook/relay/commit/81eab03)]: Remove unused fieldPath from resolver suspense objects by Jordan Eldredge - \[[`d982b5b`](https://redirect.github.com/facebook/relay/commit/d982b5b)]: Add feature flag to opt in/out of including the path field in [@​required](https://redirect.github.com/required) reader nodes by Jordan Eldredge - \[[`460508a`](https://redirect.github.com/facebook/relay/commit/460508a)]: Remove path from [@​catch](https://redirect.github.com/catch) codegen by Jordan Eldredge - \[[`a88c013`](https://redirect.github.com/facebook/relay/commit/a88c013)]: Derive [@​required](https://redirect.github.com/required) fieldPath at runtime by Jordan Eldredge - \[[`7c9aebb`](https://redirect.github.com/facebook/relay/commit/7c9aebb)]: Add support for [@​catch](https://redirect.github.com/catch) on fragments/queries/mutations and aliased inline fragments ([#​4838](https://redirect.github.com/facebook/relay/issues/4838)) by Jordan Eldredge - \[[`08fef89`](https://redirect.github.com/facebook/relay/commit/08fef89)]: Cleanup resolver cache implementation only used in tests by Jordan Eldredge - \[[`2c3b915`](https://redirect.github.com/facebook/relay/commit/2c3b915)]: Cleanup AVOID_CYCLES_IN_RESOLVER_NOTIFICATION by Jordan Eldredge - \[[`2705e3d`](https://redirect.github.com/facebook/relay/commit/2705e3d)]: Add support for handling field errors on noncompliant lists by Ryan Holdren - \[[`402aa97`](https://redirect.github.com/facebook/relay/commit/402aa97)]: Update message in handlePotentialSnapshotErrors for payload errors by Itamar Kestenbaum - \[[`8421851`](https://redirect.github.com/facebook/relay/commit/8421851)]: Improve error message when directive is used in wrong location by Jordan Eldredge - \[[`3eb627d`](https://redirect.github.com/facebook/relay/commit/3eb627d)]: Add fieldPath to missing data field error logs ([#​4835](https://redirect.github.com/facebook/relay/issues/4835)) by Jordan Eldredge - \[[`bac814f`](https://redirect.github.com/facebook/relay/commit/bac814f)]: Use prefetchable metadata in the prefetchable pagination hook by Tianyu Yao - \[[`d079b29`](https://redirect.github.com/facebook/relay/commit/d079b29)]: Allow [@​required](https://redirect.github.com/required) on connection fields by Jordan Eldredge - \[[`733cc27`](https://redirect.github.com/facebook/relay/commit/733cc27)]: Add schema name to project config by Monica Tang - \[[`ebf028b`](https://redirect.github.com/facebook/relay/commit/ebf028b)]: Use directive location where it makes sense by Gordy French - \[[`d3eb42f`](https://redirect.github.com/facebook/relay/commit/d3eb42f)]: Don't require [@​alias](https://redirect.github.com/alias) on plural fragments spread into plural selections by Jordan Eldredge - \[[`e21e162`](https://redirect.github.com/facebook/relay/commit/e21e162)]: Allow codemod to specify rollout percentage by Gordy French - \[[`e4facf3`](https://redirect.github.com/facebook/relay/commit/e4facf3)]: Allow granular FeatureFlag gating of `@alias` enforcement by Jordan Eldredge - \[[`deb7b09`](https://redirect.github.com/facebook/relay/commit/deb7b09)]: Allow users to return ID built in scalar using DataID by Jordan Eldredge - \[[`3c92504`](https://redirect.github.com/facebook/relay/commit/3c92504)]: Fix slow typegen in adslab by Tianyu Yao - \[[`6e4c120`](https://redirect.github.com/facebook/relay/commit/6e4c120)]: Update error message for clarity by Jordan Eldredge - \[[`5c548bd`](https://redirect.github.com/facebook/relay/commit/5c548bd)]: Allow @​dangerously_unaliased on [@​inline](https://redirect.github.com/inline) fragments by Jordan Eldredge - \[[`2cf6c7f`](https://redirect.github.com/facebook/relay/commit/2cf6c7f)]: Codemod command runs and collects code actions by Gordy French - \[[`ad26284`](https://redirect.github.com/facebook/relay/commit/ad26284)]: Make required-on-non-null-within-throwOnFieldError an LSP warning by Gordy French - \[[`b41ae4c`](https://redirect.github.com/facebook/relay/commit/b41ae4c)]: Support semantic non-nullable RelayResolverValue by Jordan Eldredge - \[[`eba1d97`](https://redirect.github.com/facebook/relay/commit/eba1d97)]: Allow strong resolvers to reference opaque types by Jordan Eldredge ##### Documentation Improvements - \[[`9401e69`](https://redirect.github.com/facebook/relay/commit/9401e69)]: - add new client 3D page in 3D docs by Lynn Yu - \[[`6a51b39`](https://redirect.github.com/facebook/relay/commit/6a51b39)]: - 3D docs starting point by Lynn Yu - \[[`caa040a`](https://redirect.github.com/facebook/relay/commit/caa040a)]: - document all top level functions in relay compiler by Lynn Yu - \[[`1306086`](https://redirect.github.com/facebook/relay/commit/1306086)]: - document all top level structs in relay compiler by Lynn Yu - \[[`86301c7`](https://redirect.github.com/facebook/relay/commit/86301c7)]: - document all modules in relay compiler by Lynn Yu - \[[`bdbe7e0`](https://redirect.github.com/facebook/relay/commit/bdbe7e0)]: Add rust docs for all top level enums in relay compiler by Lynn Yu - \[[`5600502`](https://redirect.github.com/facebook/relay/commit/5600502)]: - document semantic nullability support in resolvers by Lynn Yu - \[[`c3b0dd5`](https://redirect.github.com/facebook/relay/commit/c3b0dd5)]: Docs: Fix fragments tutorial thumbnail typo ([#​4841](https://redirect.github.com/facebook/relay/issues/4841)) by Daniel Stocks - \[[`5b7dc1f`](https://redirect.github.com/facebook/relay/commit/5b7dc1f)]: Add docs for usePrefetchableForwardPaginationFragment by Tianyu Yao - \[[`5cccb7b`](https://redirect.github.com/facebook/relay/commit/5cccb7b)]: - adding docs for abstract types in relay resolvers by Lynn Yu - \[[`ebc4936`](https://redirect.github.com/facebook/relay/commit/ebc4936)]: Minor updates to docs on enabling relay resolvers ([#​4824](https://redirect.github.com/facebook/relay/issues/4824)) by Arthur - \[[`4776175`](https://redirect.github.com/facebook/relay/commit/4776175)]: Update docusaurus to 2.4.3 by Gordy French - \[[`0b4920d`](https://redirect.github.com/facebook/relay/commit/0b4920d)]: - delete old relay doc versions older than 2 years by Lynn Yu - \[[`b8967d2`](https://redirect.github.com/facebook/relay/commit/b8967d2)]: Add documentation for codemods ([#​4826](https://redirect.github.com/facebook/relay/issues/4826)) by gordyf - \[[`7c2b460`](https://redirect.github.com/facebook/relay/commit/7c2b460)]: Update description of dangerously_unaliased_fixme directive by Jordan Eldredge ##### Miscellaneous - \[[`9eb9c94`](https://redirect.github.com/facebook/relay/commit/9eb9c94)]: Update to latest react@experimental ([#​4847](https://redirect.github.com/facebook/relay/issues/4847)) by Lauren Tan - \[[`7e258ca`](https://redirect.github.com/facebook/relay/commit/7e258ca)]: Add [@​relayRequiredVariables](https://redirect.github.com/relayRequiredVariables) to metadata section of generated .graphql files by Jean Zhang - \[[`4360f69`](https://redirect.github.com/facebook/relay/commit/4360f69)]: Deprecate GK relay_enable_load_query_request_deduping by Nithik Balachandran - \[[`15a19e9`](https://redirect.github.com/facebook/relay/commit/15a19e9)]: Update metadata generation for Live Query in Relay compiler by Xiangxin Sun ##### Experimental Changes - \[[`30af003`](https://redirect.github.com/facebook/relay/commit/30af003)]: Add a runtime feature flag for prefixing read-time resolver storageKeys by Evan Yeung - \[[`195d9a2`](https://redirect.github.com/facebook/relay/commit/195d9a2)]: Fix usePrefetchablePagination bug by Tianyu Yao - \[[`57756e6`](https://redirect.github.com/facebook/relay/commit/57756e6)]: Allow reusing fetching options in usePrefetchableForwardPaginationFragment by Tianyu Yao - \[[`023b875`](https://redirect.github.com/facebook/relay/commit/023b875)]: Support dynamic switching of read vs exec time resolvers in reader by Evan Yeung - \[[`53cef9d`](https://redirect.github.com/facebook/relay/commit/53cef9d)]: Update hook to expose data in UNSTABLE_extraVariables by Lynn Yu - \[[`d036d49`](https://redirect.github.com/facebook/relay/commit/d036d49)]: Update normalization artifacts for exec time resolver strong ids by Evan Yeung - \[[`9035b32`](https://redirect.github.com/facebook/relay/commit/9035b32)]: Generate prefetchable pagination ASTs by Tianyu Yao - \[[`dececd1`](https://redirect.github.com/facebook/relay/commit/dececd1)]: Generate metadata for prefetchable pagination by Tianyu Yao - \[[`4a67ddd`](https://redirect.github.com/facebook/relay/commit/4a67ddd)]: Create a separate edge fragment for prefetchable pagination by Tianyu Yao

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 this update again.



This PR was generated by Mend Renovate. View the repository job log.

vercel[bot] commented 1 week ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Skipped Deployment | Name | Status | Preview | Updated (UTC) | | :--- | :----- | :------ | :------ | | **gh-dashboard-relay** | ⬜️ Ignored ([Inspect](https://vercel.com/lowskys-projects/gh-dashboard-relay/nWPeMHiYcG6UZdv64yaS45V38XAx)) | [Visit Preview](https://gh-dashboard-relay-git-renovate-react-r-16e527-lowskys-projects.vercel.app) | Nov 24, 2024 10:29pm |
socket-security[bot] commented 1 week ago

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

Package New capabilities Transitives Size Publisher
npm/@adobe/css-tools@4.4.0 None 0 187 kB adobe-admin
npm/@babel/helper-wrap-function@7.24.7 None 0 73.7 kB nicolo-ribaudo
npm/@babel/regjsgen@0.8.0 None 0 15.4 kB nicolo-ribaudo
npm/@emnapi/runtime@1.2.0 environment, eval 0 411 kB toyobayashi
npm/@jridgewell/source-map@0.3.2 None 0 231 kB jridgewell
npm/@types/aria-query@5.0.4 None 0 12 kB types
npm/@types/babel__core@7.20.5 None 0 33 kB types
npm/@types/babel__generator@7.6.4 None 0 11.7 kB types
npm/@types/babel__template@7.4.1 None 0 6.93 kB types
npm/@types/babel__traverse@7.20.5 None 0 84.1 kB types
npm/@types/doctrine@0.0.9 None 0 8.49 kB types
npm/@types/eslint-scope@3.7.4 None 0 6.62 kB types
npm/@types/eslint@8.4.10 None 0 165 kB types
npm/@types/estree@0.0.51 None 0 24 kB types
npm/@types/html-minifier-terser@6.1.0 None 0 9.56 kB types
npm/@types/resolve@1.20.6 None 0 10.1 kB types
npm/@vitest/pretty-format@2.1.4 None 0 45.5 kB antfu, oreanno, patak, ...1 more
npm/@vitest/utils@2.1.4 None 0 157 kB antfu, oreanno, patak, ...1 more
npm/@webassemblyjs/ast@1.11.1 None 0 201 kB xtuc
npm/@webassemblyjs/floating-point-hex-parser@1.11.1 None 0 6.37 kB xtuc
npm/@webassemblyjs/helper-api-error@1.11.1 None 0 6.25 kB xtuc
npm/@webassemblyjs/helper-buffer@1.11.1 None 0 8.7 kB xtuc
npm/@webassemblyjs/helper-numbers@1.11.1 None 0 10.4 kB xtuc
npm/@webassemblyjs/helper-wasm-bytecode@1.11.1 None 0 32.4 kB xtuc
npm/@webassemblyjs/helper-wasm-section@1.11.1 None 0 19 kB xtuc
npm/@webassemblyjs/ieee754@1.11.1 None 0 5.32 kB xtuc
npm/@webassemblyjs/leb128@1.11.1 None 0 46.3 kB xtuc
npm/@webassemblyjs/utf8@1.11.1 None 0 11.3 kB xtuc
npm/@webassemblyjs/wasm-edit@1.11.1 None 0 29.4 kB xtuc
npm/@webassemblyjs/wasm-gen@1.11.1 None 0 23.9 kB xtuc
npm/@webassemblyjs/wasm-opt@1.11.1 None 0 9.34 kB xtuc
npm/@webassemblyjs/wasm-parser@1.11.1 None 0 124 kB xtuc
npm/@webassemblyjs/wast-printer@1.11.1 None 0 37.4 kB xtuc
npm/@xtuc/ieee754@1.2.0 None 0 8.57 kB xtuc
npm/@xtuc/long@4.2.2 None 0 190 kB xtuc
npm/abort-controller@3.0.0 None 0 76.3 kB mysticatea
npm/acorn-import-assertions@1.8.0 None 0 25.5 kB xtuc
npm/ajv-formats@2.1.1 None 0 52.2 kB esp
npm/ajv-keywords@3.5.2 None 0 72.9 kB esp
npm/asn1.js@5.4.1 None 0 49.8 kB indutny
npm/assertion-error@2.0.1 None 0 5.83 kB chaijs
npm/available-typed-arrays@1.0.5 None 0 14.1 kB ljharb
npm/bn.js@5.2.1 None 0 99 kB fanatid
npm/boolbase@1.0.0 None 0 1.33 kB feedic
npm/browserify-aes@1.2.0 None 0 29.8 kB cwmma
npm/browserify-cipher@1.0.1 None 0 6.45 kB cwmma
npm/browserify-des@1.0.2 None 0 6.27 kB cwmma
npm/browserify-rsa@4.1.0 None 0 3.68 kB cwmma
npm/browserify-sign@4.2.1 None 0 14.5 kB cwmma
npm/buffer-from@1.1.2 None 0 5.05 kB linusu
npm/buffer-xor@1.0.3 None 0 4.83 kB dcousens
npm/builtin-status-codes@3.0.0 network 0 4.5 kB bendrucker
npm/chai@5.1.1 None 0 506 kB chaijs
npm/check-error@2.1.1 None 0 11.4 kB chaijs
npm/chrome-trace-event@1.0.3 None 0 14.2 kB samccone
npm/clean-css@5.3.2 environment, filesystem, network 0 492 kB jakub.pawlowicz
npm/color-string@1.9.1 None 0 10.1 kB qix
npm/commander@8.3.0 environment, filesystem, shell 0 151 kB abetomo
npm/commondir@1.0.1 None 0 4.79 kB substack
npm/create-ecdh@4.0.4 None 0 5.4 kB cwmma
npm/create-hmac@1.1.7 None 0 5.81 kB cwmma
npm/css-select@4.3.0 None 0 82.4 kB feedic
npm/css-what@6.1.0 None 0 66 kB feedic
npm/css.escape@1.5.1 None 0 6.49 kB mathias
npm/cssesc@3.0.0 None 0 17.5 kB mathias
npm/dedent@0.7.0 None 0 4.85 kB dmnd
npm/deep-eql@5.0.2 None 0 23.9 kB chaijs
npm/deepmerge@4.2.2 None 0 30.1 kB tehshrike
npm/define-properties@1.1.4 None 0 10.4 kB ljharb
npm/des.js@1.0.1 None 0 38.6 kB indutny
npm/diffie-hellman@5.0.3 None 0 17.3 kB cwmma
npm/doctrine@3.0.0 None 0 106 kB eslint
npm/dom-accessibility-api@0.5.16 None 0 257 kB eps1lon
npm/dom-converter@0.2.0 None 0 7.9 kB ariaminaei
npm/domhandler@4.3.1 None 0 44.6 kB feedic
npm/domutils@2.8.0 network 0 56.6 kB feedic
npm/elliptic@6.5.4 None 0 118 kB indutny
npm/endent@2.1.0 None 0 11.9 kB zhouhancheng
npm/es6-object-assign@1.1.0 None 0 13.1 kB rubennorte
npm/esrecurse@4.3.0 None 0 13.5 kB michaelficarra
npm/estraverse@4.3.0 None 0 36.3 kB michaelficarra
npm/estree-walker@3.0.3 None 0 17.6 kB rich_harris
npm/event-target-shim@5.0.1 None 0 189 kB mysticatea
npm/fast-json-parse@1.0.3 None 0 6.91 kB matteo.collina
npm/flat-cache@3.0.4 filesystem 0 30 kB royriojas
npm/flatted@3.2.7 None 0 27.2 kB webreflection
npm/for-each@0.3.3 None 0 13 kB ljharb
npm/fs-extra@10.1.0 None 0 63.3 kB ryanzim
npm/fs-monkey@1.0.3 filesystem, unsafe 0 22.9 kB streamich
npm/get-func-name@2.0.2 None 0 8.68 kB keithamus
npm/get-intrinsic@1.2.0 eval 0 38.7 kB ljharb
npm/glob-to-regexp@0.4.1 None 0 18.1 kB nickfitzgerald
npm/gopd@1.0.1 None 0 7.7 kB ljharb
npm/has-property-descriptors@1.0.0 None 0 9.31 kB ljharb
npm/has-tostringtag@1.0.0 None 0 10.9 kB ljharb
npm/hash-base@3.1.0 None 0 6.08 kB fanatid
npm/hash.js@1.1.7 None 0 41.7 kB indutny
npm/hasown@2.0.0 None 0 10.8 kB ljharb
npm/he@1.2.0 None 0 124 kB mathias
npm/hmac-drbg@1.0.1 None 0 25 kB indutny
npm/html-minifier-terser@6.1.0 None 0 99.6 kB sibiraj-s
npm/htmlparser2@6.1.0 network 0 106 kB feedic
npm/is-arguments@1.1.1 None 0 28.8 kB ljharb
npm/is-callable@1.2.7 None 0 28.9 kB ljharb
npm/is-generator-function@1.0.10 eval 0 31.9 kB ljharb
npm/is-nan@1.3.2 None 0 10.8 kB ljharb
npm/is-typed-array@1.1.10 None 0 18.4 kB ljharb
npm/jest-worker@27.5.1 environment, shell 0 81.9 kB simenb
npm/loader-runner@4.3.0 eval, filesystem 0 18.4 kB sokra
npm/lodash.debounce@4.0.8 None 0 14 kB jdalton
npm/loupe@3.1.2 None 0 60.7 kB chaijs
npm/lz-string@1.5.0 None 0 176 kB pieroxy
npm/make-dir@3.1.0 filesystem 0 10 kB sindresorhus
npm/md5.js@1.3.5 None 0 7.67 kB cwmma
npm/memfs@3.4.13 filesystem 0 180 kB streamich
npm/merge-stream@2.0.0 None 0 4.31 kB stevemao
npm/miller-rabin@4.0.1 None 0 6.84 kB indutny
npm/mime-db@1.52.0 None 0 206 kB dougwilson
npm/min-indent@1.0.1 None 0 2.97 kB thejameskyle
npm/minimalistic-crypto-utils@1.0.1 None 0 4.76 kB indutny
npm/node-abort-controller@3.0.1 None 0 14.3 kB southpolesteve
npm/nth-check@2.1.1 None 0 42.6 kB feedic
npm/object-is@1.1.5 None 0 23.3 kB ljharb
npm/object-keys@1.1.1 None 0 26.5 kB ljharb
npm/objectorarray@1.0.5 None 0 3.28 kB zhouhancheng
npm/pako@1.0.11 None 0 788 kB vitaly
npm/pathval@2.0.0 None 0 15 kB chaijs
npm/pbkdf2@3.1.2 None 0 13.8 kB cwmma
npm/pkg-dir@7.0.0 None 0 5.33 kB sindresorhus
npm/pretty-error@4.0.0 None 0 58.9 kB ariaminaei
npm/pretty-format@27.5.1 eval 0 70.1 kB simenb
npm/public-encrypt@4.0.3 None 0 27.8 kB cwmma
npm/querystring@0.2.0 None 0 33.3 kB gozala
npm/randomfill@1.0.4 None 0 6.84 kB cwmma
npm/range-parser@1.2.1 None 0 8.46 kB dougwilson
npm/react-docgen-typescript@2.2.2 filesystem 0 242 kB pvasek
npm/redent@3.0.0 None 0 3.6 kB sindresorhus
npm/regenerate-unicode-properties@10.1.0 None 0 577 kB google-wombot
npm/regenerate@1.4.2 None 0 49.2 kB mathias
npm/regex-parser@2.2.11 None 0 7.59 kB ionicabizau
npm/regexpu-core@5.2.2 None 0 47.9 kB google-wombot
npm/regjsgen@0.7.1 None 0 14.7 kB bnjmnt4n
npm/regjsparser@0.9.1 None 0 65.7 kB jviereck
npm/relateurl@0.2.7 None 0 31.4 kB stevenvachon
npm/renderkid@3.0.0 None 0 169 kB ariaminaei
npm/require-from-string@2.0.2 unsafe 0 3.42 kB floatdrop
npm/serialize-javascript@6.0.1 None 0 16.8 kB okuryu
npm/simple-swizzle@0.2.2 None 0 3.6 kB qix
npm/source-map-support@0.5.21 filesystem 0 85.2 kB linusu
npm/strip-indent@4.0.0 None 0 3.64 kB sindresorhus
npm/terser@5.16.1 environment, eval 0 2.06 MB fabiosantoscode
npm/tinyrainbow@1.2.0 None 0 7.91 kB oreanno
npm/tinyspy@3.0.2 None 0 17.6 kB antfu, aslemammad, oreanno
npm/unicode-canonical-property-names-ecmascript@2.0.0 None 0 5.01 kB google-wombot
npm/unicode-match-property-ecmascript@2.0.0 None 0 5.05 kB google-wombot
npm/unicode-match-property-value-ecmascript@2.1.0 None 0 25.7 kB google-wombot
npm/unicode-property-aliases-ecmascript@2.1.0 None 0 5.98 kB google-wombot
npm/utila@0.4.0 None 0 24.2 kB ariaminaei
npm/watchpack@2.4.0 environment, filesystem 0 56.9 kB sokra
npm/which-typed-array@1.1.9 None 0 32 kB ljharb
npm/xtend@4.0.2 None 0 6.46 kB raynos

🚮 Removed packages: npm/@graphql-codegen/typescript-document-nodes@4.0.11, npm/@graphql-codegen/typescript-resolvers@4.4.0

View full report↗︎