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

Bump the other group across 1 directory with 25 updates #2775

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 21, 2024

Bumps the other group with 25 updates in the / directory:

Package From To
@apollo/client 3.10.8 3.11.4
@cypress/code-coverage 3.12.39 3.12.45
@okta/okta-auth-js 7.7.0 7.7.1
@okta/okta-signin-widget 7.19.6 7.21.1
@types/enzyme 3.10.8 3.10.18
@types/lodash 4.17.4 4.17.7
@uswds/uswds 3.3.0 3.8.2
dompurify 3.1.5 3.1.6
formik 2.2.9 2.4.6
launchdarkly-react-client-sdk 3.2.0 3.4.0
luxon 3.4.4 3.5.0
react-hook-form 7.51.5 7.52.2
react-table 7.5.1 7.8.0
@types/react-table 7.7.1 7.7.20
sass 1.77.2 1.77.8
@babel/core 7.24.5 7.25.2
@babel/preset-env 7.24.5 7.25.3
@cypress/webpack-preprocessor 6.0.1 6.0.2
@graphql-codegen/client-preset 4.3.0 4.3.3
@vitejs/plugin-react 4.2.1 4.3.1
autoprefixer 10.4.19 10.4.20
cypress 13.12.0 13.13.3
eslint-plugin-jsx-a11y 6.8.0 6.9.0
eslint-plugin-react 7.34.1 7.35.0
webpack 5.91.0 5.93.0

Updates @apollo/client from 3.10.8 to 3.11.4

Release notes

Sourced from @​apollo/client's releases.

v3.11.4

Patch Changes

  • #11994 41b17e5 Thanks @​jerelmiller! - Update the Modifier function type to allow cache.modify to return deeply partial data.

  • #11989 e609156 Thanks @​phryneas! - Fix a potential crash when calling clearStore while a query was running.

    Previously, calling client.clearStore() while a query was running had one of these results:

    • useQuery would stay in a loading: true state.
    • useLazyQuery would stay in a loading: true state, but also crash with a "Cannot read property 'data' of undefined" error.

    Now, in both cases, the hook will enter an error state with a networkError, and the promise returned by the useLazyQuery execute function will return a result in an error state.

  • #11994 41b17e5 Thanks @​jerelmiller! - Prevent accidental distribution on cache.modify field modifiers when a field is a union type array.

v3.11.3

Patch Changes

  • #11984 5db1659 Thanks @​jerelmiller! - Fix an issue where multiple fetches with results that returned errors would sometimes set the data property with an errorPolicy of none.

  • #11974 c95848e Thanks @​jerelmiller! - Fix an issue where fetchMore would write its result data to the cache when using it with a no-cache fetch policy.

  • #11974 c95848e Thanks @​jerelmiller! - Fix an issue where executing fetchMore with a no-cache fetch policy could sometimes result in multiple network requests.

  • #11974 c95848e Thanks @​jerelmiller! -

    Potentially disruptive change

    When calling fetchMore with a query that has a no-cache fetch policy, fetchMore will now throw if an updateQuery function is not provided. This provides a mechanism to merge the results from the fetchMore call with the query's previous result.

v3.11.2

Patch Changes

v3.11.1

Patch Changes

  • #11969 061cab6 Thanks @​jerelmiller! - Remove check for window.__APOLLO_CLIENT__ when determining whether to connect to Apollo Client Devtools when connectToDevtools or devtools.enabled is not specified. This now simply checks to see if the application is in development mode.

  • #11971 ecf77f6 Thanks @​jerelmiller! - Prevent the setTimeout for suggesting devtools from running in non-browser environments.

v3.11.0

Potentially Breaking Fixes

  • #11789 5793301 Thanks @​phryneas! - Changes usages of the GraphQLError type to GraphQLFormattedError.

    This was a type bug - these errors were never GraphQLError instances to begin with, and the GraphQLError class has additional properties that can

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.11.4

Patch Changes

  • #11994 41b17e5 Thanks @​jerelmiller! - Update the Modifier function type to allow cache.modify to return deeply partial data.

  • #11989 e609156 Thanks @​phryneas! - Fix a potential crash when calling clearStore while a query was running.

    Previously, calling client.clearStore() while a query was running had one of these results:

    • useQuery would stay in a loading: true state.
    • useLazyQuery would stay in a loading: true state, but also crash with a "Cannot read property 'data' of undefined" error.

    Now, in both cases, the hook will enter an error state with a networkError, and the promise returned by the useLazyQuery execute function will return a result in an error state.

  • #11994 41b17e5 Thanks @​jerelmiller! - Prevent accidental distribution on cache.modify field modifiers when a field is a union type array.

3.11.3

Patch Changes

  • #11984 5db1659 Thanks @​jerelmiller! - Fix an issue where multiple fetches with results that returned errors would sometimes set the data property with an errorPolicy of none.

  • #11974 c95848e Thanks @​jerelmiller! - Fix an issue where fetchMore would write its result data to the cache when using it with a no-cache fetch policy.

  • #11974 c95848e Thanks @​jerelmiller! - Fix an issue where executing fetchMore with a no-cache fetch policy could sometimes result in multiple network requests.

  • #11974 c95848e Thanks @​jerelmiller! -

    Potentially disruptive change

    When calling fetchMore with a query that has a no-cache fetch policy, fetchMore will now throw if an updateQuery function is not provided. This provides a mechanism to merge the results from the fetchMore call with the query's previous result.

3.11.2

Patch Changes

3.11.1

Patch Changes

  • #11969 061cab6 Thanks @​jerelmiller! - Remove check for window.__APOLLO_CLIENT__ when determining whether to connect to Apollo Client Devtools when connectToDevtools or devtools.enabled is not specified. This now simply checks to see if the application is in development mode.

  • #11971 ecf77f6 Thanks @​jerelmiller! - Prevent the setTimeout for suggesting devtools from running in non-browser environments.

3.11.0

Potentially Breaking Fixes

... (truncated)

Commits
  • c6e8182 Version Packages (#11991)
  • 41b17e5 Fix issue returning arrays from cache.modify modifier functions when the arra...
  • 9e4b798 renovate: don't request reviewers (#11992)
  • e609156 Fix a potential crash when calling clearStore while a query was running. (#...
  • 8aa627f Version Packages (#11985)
  • 5db1659 Fix issue where multiple fetches might report data if result contained erro...
  • c95848e Fix fetchMore for queries with no-cache fetch policies (#11974)
  • 076bb63 Version Packages (#11981)
  • 38c0a2c Fix missing getServerSnapshot function for useSubscription (#11980)
  • 07693a2 chore(deps): update all devdependencies (#11979)
  • Additional commits viewable in compare view

Updates @cypress/code-coverage from 3.12.39 to 3.12.45

Release notes

Sourced from @​cypress/code-coverage's releases.

v3.12.45

3.12.45 (2024-08-12)

Bug Fixes

  • deps: update dependency debug to v4.3.6 (#865) (5e2dbd2)

v3.12.44

3.12.44 (2024-07-21)

Bug Fixes

  • deps: update dependency debug to v4.3.5 (#857) (a0d9014)

v3.12.43

3.12.43 (2024-07-21)

Bug Fixes

  • deps: update dependency dayjs to v1.11.12 (#856) (05a3ee9)

v3.12.42

3.12.42 (2024-07-15)

Bug Fixes

  • deps: update dependency @​cypress/webpack-preprocessor to v6.0.2 (#852) (631fbfe)

v3.12.41

3.12.41 (2024-07-06)

Bug Fixes

  • deps: update dependency @​types/react to v18.3.3 (#838) (6af6991)

v3.12.40

3.12.40 (2024-07-03)

Bug Fixes

  • fix error when testing cross-origin code (#685) (aaf6ad0)
Commits
  • fad15c1 chore(deps): update dependency rimraf to v5.0.10 (#863)
  • 5e2dbd2 fix(deps): update dependency debug to v4.3.6 (#865)
  • b386bed chore(deps): update dependency cypress to v13.13.2 (#862)
  • 4bff658 chore(deps): update babel monorepo (#854)
  • c156c87 chore(deps): update dependency webpack to v5.93.0 (#859)
  • 3c505ea chore(deps): update dependency prettier to v3.3.3 (#858)
  • a0d9014 fix(deps): update dependency debug to v4.3.5 (#857)
  • 87779d5 chore(deps): update dependency cypress to v13.13.1 (#855)
  • 05a3ee9 fix(deps): update dependency dayjs to v1.11.12 (#856)
  • 631fbfe fix(deps): update dependency @​cypress/webpack-preprocessor to v6.0.2 (#852)
  • Additional commits viewable in compare view

Updates @okta/okta-auth-js from 7.7.0 to 7.7.1

Release notes

Sourced from @​okta/okta-auth-js's releases.

7.7.1

okta/okta-auth-js#1529 fix: persist extraParams passed to /authorize and include them during token refresh

Changelog

Sourced from @​okta/okta-auth-js's changelog.

7.7.1

  • #1529 fix: persist extraParams passed to /authorize and include them during token refresh
Commits

Updates @okta/okta-signin-widget from 7.19.6 to 7.21.1

Release notes

Sourced from @​okta/okta-signin-widget's releases.

7.21.1

🐞 Bug fixes

  • Remove space between phone number and punctuation voice verification screen. (#3691) b425a62db
  • [Gen1] Render boolean registration field as Checkbox (#3681) cc61dde2e
  • [Gen3] Wrap text on OV verify w/o QR code screen (#3690) b774e8193
  • [Gen3] Add aria-label to user icon (#3687) 50009d099

7.20.1

🐞 Bug fixes

  • [Gen 2] Updates Okta Verify same device enrollment view UX (#3671 35e19b5f6 and #3672 09afd5f70)

7.20.0

🚀 Features

  • Adds https loopback support to SIW Gen2 and Gen3 (#3650) 05d8bc6380e3ba21dad9beb232636f5f29ce1b2f
  • Supports identifier-first unlock account flow (#3661) 8e8511149d9d77584b4215cb282ad8446060a3b8

🎨 Others 

  • Monthly translations for login (#3666) 48ebd7a8c6fdc38cb44291642b51076a5885a1a1
  • Okta Verify enrolment description update (#3659) 01dd49a7fcf90612af226a5e5cb035bf2d356e00
  • Updates Country label to Country/region (#3664) 61b3fde1848bd96a0453164ae6cdd1b10038d3f0
  • Update barcode references in Google authenticator to QR code (#3665) 2f09584f022820474261a8c78957139fd5ec3b71
Commits
  • 26b13af chore: version bump 7.21.1
  • cc61dde Gen1: Render boolean registration field as Checkbox (#3681)
  • 1e1801a chore: version bump 7.21.1
  • b774e81 removed nowrap to properly wrap text on OV verify w/o QR code screen (#3690)
  • 50009d0 [G3] Adds aria-label to user icon (#3687)
  • d896205 chore: version bump 7.21.0
  • f0fbaca Gen1: Don't throw unhandled exception if security image fetch failed (#3679)
  • 21aa9f5 Fix issue with OV enrolment with only high security methods enabled for mobil...
  • e07d0c5 OKTA-722502 : Same device enrollment flow updates (#3632)
  • 7c4c2d8 Translations for login (#3677)
  • Additional commits viewable in compare view

Updates @types/enzyme from 3.10.8 to 3.10.18

Commits

Updates @types/lodash from 4.17.4 to 4.17.7

Commits

Updates @uswds/uswds from 3.3.0 to 3.8.2

Release notes

Sourced from @​uswds/uswds's releases.

USWDS 3.8.2

What's new in USWDS 3.8.2

Dependencies and security

Removed the classlist-polyfill dependency. This update resolves a Denial of Service (DoS) vulnerability related to the classlist-polyfill dependency that we do not consider exploitable on the front end of applications. (#6012)

[!Important] This release may affect some functionality in Internet Explorer 11 (IE11). This update removes the polyfill that added full classList support to IE11. USWDS no longer supports IE11, but if your project does, test if this update negatively affects your users and add additional support for classList if it does.

Dependency name Previous version New version
classlist-polyfill 1.2.0 --

Thanks @​aduth for the initial work on removing this dependency.

0 vulnerabilities in regular dependencies (dependencies for USWDS projects installed with npm install @uswds/uswds) 5 low, 11 moderate, 44 high vulnerabilities in devDependencies (development dependencies).

Release TGZ SHA-256 hash: 94049e150c2a67dfdb75f140fc664d2e936ef652480a2f88dfdd96922e0a940c

USWDS 3.8.1

What's new in USWDS 3.8.1

Bug fixes

Package A11Y Breaking Markup change Description
usa-button-group Improved styles for nested button groups. Now, nested button groups should match the height of their parents. (#5885)
usa-footer Restored the usa-layout-grid dependency in the footer package and removed layout grid styles from the footer stylesheet. This update prevents visual regressions in footer and other components with layout grid utility classes in their markup. (#5930)
usa-identifier Yes Fixed a bug that added the English word "An" to Spanish variants of the identifier component. This was accidentally added to our component preview templates because of a data error. (#5857)
usa-in-page-navigation Updated an outdated reference to the data-header-selector attribute in an in-page navigation JavaScript error message. The error message now correctly references the data-heading-elements attribute. (#5856)
usa-input-mask Fixed a bug that caused input mask to break when it is not a direct child of a form. Nested input masks will now initialize and work properly. Thanks @​chrislarrycarl! (#5518)
usa-tooltip Yes Updated the behavior of the tooltip component to allow users to hover over tooltip content. This allows the component to meet the "hoverable" standard outlined in WCAG 1.4.13. (#5919)
usa-tooltip Yes Updated tooltip component behavior to close active tooltips when the escape key is pressed. This allows the component to meet the "dismissible" standard outlined in WCAG 1.4.13. (#5909)
usa-validation Yes Fixed a bug that caused non-interactive checklist items in the validation component to receive focus. Now, only the interactive input will receive focus. (#5835)
uswds-utilities Updated the code comments on utility Sass partials. These comments now reflect the correct utility class names and values. Thanks @​aduth! (#5859)

Dependencies and security

Dependency name Previous version New version
@​18f/identity-stylelint-config 2.0.0 4.0.0
@​babel/core 7.23.6 7.24.5
@​babel/preset-env 7.23.6 7.24.5
@​types/node 20.10.4 20.12.11
autoprefixer 10.4.16 10.4.19
axe-core 4.8.2 4.9.1
eslint 8.55.0 8.56.0

... (truncated)

Commits

Updates dompurify from 3.1.5 to 3.1.6

Release notes

Sourced from dompurify's releases.

DOMPurify 3.1.6

  • Fixed an issue with the execution logic of attribute hooks to prevent bypasses, thanks @​kevin-mizu
  • Fixed an issue with element removal leading to uncaught errors through DOM Clobbering, thanks @​realansgar
  • Fixed a minor problem with the bower file pointing to the wrong dist path
  • Fixed several minor typos in docs, comments and comment blocks, thanks @​Rotzbua
  • Updated several development dependencies
Commits
  • 4083a90 Merge pull request #978 from cure53/main
  • 90a10a1 fix: Fixed a typo on the README
  • 65df042 chore: Preparing 3.1.6 release
  • 6e03334 fix: Made sure that remove() is not called directly from node
  • 00fc06c fix: Fixed a DOM clobbering issue leading to an error being thrown
  • f8c2ef5 Merge pull request #977 from cure53/dependabot/npm_and_yarn/multi-99ca4f73d8
  • e5112ec build(deps): bump ws and socket.io-adapter
  • 9978cec docs: Added better security warning about SAFE_FOR_XML to README
  • fa542df fix: Changed the order for attribute checks slightly for safer hooks
  • b8b552c Merge pull request #975 from cure53/dependabot/npm_and_yarn/multi-2d3aef8690
  • Additional commits viewable in compare view

Updates formik from 2.2.9 to 2.4.6

Release notes

Sourced from formik's releases.

formik@2.4.6

Patch Changes

  • f57ca9b #3949 Thanks @​DeveloperRaj! - Changing the state inside formik was changing reference of initialValues provided via props, deep cloning the initialvalues will fix it.

formik@2.4.5

Patch Changes

formik@2.4.4

Patch Changes

formik@2.4.3

Patch Changes

formik@2.4.2

Patch Changes

formik@2.4.1

Patch Changes

  • 2b194c2 #3808 Thanks @​NagaiKoki! - fix type of setFieldValue function

  • 708bcb2 #3813 Thanks @​probablyup! - Revert FieldArray "shouldComponentUpdate" performance optimization. As it turns out, it's a common use case to have JSX controlled via non-Formik state/props inside of FieldArray, so it's not safe to cancel re-renders here.

  • 187e47d #3815 Thanks @​probablyup! - Revert Yup transform support for the time being, this may be re-introduced in a future release under an opt-in prop.

formik@2.4.0

Minor Changes

formik@2.3.3

... (truncated)

Commits
  • c798145 Version Packages (#3966)
  • f57ca9b Fix #3948 - Changing state was also causing change of initial value (#3949)
  • c6ceb65 Fix grammatical error in field.md (#3928)
  • ba15818 Fix broken code example in FastField API docs + update CONTRIBUTING.md `maste...
  • f22eb8e chore: update Evan's handle (#3965)
  • 0f960aa Merge pull request #3879 from jaredpalmer/changeset-release/main
  • 724e0da Version Packages
  • d7db9cd Add missing dependency @​types/hoist-non-react-statics, closes #3837 (#3860)
  • 5edbd85 chore: skip actions if source files have not changed (#3880)
  • ce305f5 Merge pull request #3871 from SophanySC/fix/ISSUE-3846-setValue-docs
  • Additional commits viewable in compare view

Updates launchdarkly-react-client-sdk from 3.2.0 to 3.4.0

Release notes

Sourced from launchdarkly-react-client-sdk's releases.

launchdarkly-react-client-sdk: v3.4.0

3.4.0 (2024-08-02)

Features

  • Support a pre-initialized client using asyncWithLDProvider. (#310) (6f3ad5c)
Changelog

Sourced from launchdarkly-react-client-sdk's changelog.

3.4.0 (2024-08-02)

Features

  • Support a pre-initialized client using asyncWithLDProvider. (#310) (6f3ad5c)

[3.3.2] - 2024-05-28

Fixed:

  • Set esbuild to target ES2015 aka ES6 so the build is backwards compatible. This is needed because rollup-plugin-esbuild v6 now defaults to es2020 by default and no longer respects tsconfig.json's target. Fixes this issue in #283.

[3.3.1] - 2024-05-28

Fixed:

  • Fixed a bug introduced after the init timeout change. The ldClient object was omitted from provider state, causing the useLDClient hook to return undefined.

[3.3.0] - 2024-05-23

Added:

  • Added a new optional timeout to ProviderConfig which gets passed to the underlying Javascript SDK waitForInitialization function.
Commits
  • c1ae8ae chore(main): release launchdarkly-react-client-sdk 3.4.0 (#311)
  • 6f3ad5c feat: Support a pre-initialized client using asyncWithLDProvider. (#310)
  • ca1fdbb build: Correct imports for jest-dom. (#309)
  • 53c926e build(deps-dev): bump typescript-eslint from 7.18.0 to 8.0.0 (#306)
  • 84c6d37 build(deps): bump @​babel/traverse from 7.15.0 to 7.25.3 in /examples/hoc (#307)
  • c2f04e1 build(deps-dev): bump @​testing-library/react from 15.0.7 to 16.0.0 (#299)
  • 8a30a65 build(deps-dev): bump rimraf from 5.0.9 to 6.0.1 (#301)
  • 340da17 build(deps-dev): bump esbuild from 0.21.5 to 0.23.0 (#298)
  • 03c4785 build(deps-dev): bump typescript from 4.9.5 to 5.5.4 (#300)
  • 8b541de build(deps-dev): bump typedoc from 0.25.13 to 0.26.5 (#302)
  • Additional commits viewable in compare view

Updates luxon from 3.4.4 to 3.5.0

Changelog

Sourced from luxon's changelog.

3.5.0 (2024-08-03)

  • Various performance improvements
  • throwOnInvalid causes the constructor to throw if the year is invalid
Commits

Updates react-hook-form from 7.51.5 to 7.52.2

Release notes

Sourced from react-hook-form's releases.

v7.52.2

👍 close #12108 useController should subscribe to exact field name of form's state (#12109) 👍 chore: upgrade app deps 🩻 fix: add useCallback for ref callback (#12078) 🚀 fix: skip call executeBuiltInValidation if no sub-fields left (#12054)

thanks to @​newsiberian, @​Wendystraite and @​abnud11

v7.52.1

🐞 fix #12024 dirty not update issue with values prop (#12041) 🐞 fix: field array validate rules shift errors (#12033)

thanks to @​JardelCheung

v7.52.0

⚛️ close #11932 enable react 19 peer dependency (#11935) 👮‍♀️ close #11954 getFieldState remove unnessaried inValidating and touched subscription (#11995) 🐞 fix #11985 logic createFormControl check field before usage (#11986) ⌨️ fix: enforce type safety for deps property in RegisterOptions (#11969) 🐞 fix #11922 keep dirty on reset with dirty fields (#11958) 🚔 close #11937 add validation in the cleanup process in useController (#11938) Revert "⌨️ close: correct type of error field in getFieldState return object (#11831)" 📖 fix: change info.values type in WatchObserver (#11917)

thanks to @​nakaakist, @​IdoBouskila, @​pincy and @​peinguin

Commits

Bumps the other group with 25 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.10.8` | `3.11.4` |
| [@cypress/code-coverage](https://github.com/cypress-io/code-coverage) | `3.12.39` | `3.12.45` |
| [@okta/okta-auth-js](https://github.com/okta/okta-auth-js) | `7.7.0` | `7.7.1` |
| [@okta/okta-signin-widget](https://github.com/okta/okta-signin-widget) | `7.19.6` | `7.21.1` |
| [@types/enzyme](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/enzyme) | `3.10.8` | `3.10.18` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.4` | `4.17.7` |
| [@uswds/uswds](https://github.com/uswds/uswds) | `3.3.0` | `3.8.2` |
| [dompurify](https://github.com/cure53/DOMPurify) | `3.1.5` | `3.1.6` |
| [formik](https://github.com/jaredpalmer/formik) | `2.2.9` | `2.4.6` |
| [launchdarkly-react-client-sdk](https://github.com/launchdarkly/react-client-sdk) | `3.2.0` | `3.4.0` |
| [luxon](https://github.com/moment/luxon) | `3.4.4` | `3.5.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.51.5` | `7.52.2` |
| [react-table](https://github.com/tannerlinsley/react-table) | `7.5.1` | `7.8.0` |
| [@types/react-table](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-table) | `7.7.1` | `7.7.20` |
| [sass](https://github.com/sass/dart-sass) | `1.77.2` | `1.77.8` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.24.5` | `7.25.2` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.24.5` | `7.25.3` |
| [@cypress/webpack-preprocessor](https://github.com/cypress-io/cypress) | `6.0.1` | `6.0.2` |
| [@graphql-codegen/client-preset](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/presets/client) | `4.3.0` | `4.3.3` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.2.1` | `4.3.1` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.19` | `10.4.20` |
| [cypress](https://github.com/cypress-io/cypress) | `13.12.0` | `13.13.3` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.8.0` | `6.9.0` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.34.1` | `7.35.0` |
| [webpack](https://github.com/webpack/webpack) | `5.91.0` | `5.93.0` |



Updates `@apollo/client` from 3.10.8 to 3.11.4
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.10.8...v3.11.4)

Updates `@cypress/code-coverage` from 3.12.39 to 3.12.45
- [Release notes](https://github.com/cypress-io/code-coverage/releases)
- [Changelog](https://github.com/cypress-io/code-coverage/blob/master/.releaserc)
- [Commits](cypress-io/code-coverage@v3.12.39...v3.12.45)

Updates `@okta/okta-auth-js` from 7.7.0 to 7.7.1
- [Release notes](https://github.com/okta/okta-auth-js/releases)
- [Changelog](https://github.com/okta/okta-auth-js/blob/master/CHANGELOG.md)
- [Commits](okta/okta-auth-js@okta-auth-js-7.7.0...okta-auth-js-7.7.1)

Updates `@okta/okta-signin-widget` from 7.19.6 to 7.21.1
- [Release notes](https://github.com/okta/okta-signin-widget/releases)
- [Changelog](https://github.com/okta/okta-signin-widget/blob/master/webpack.release.config.js)
- [Commits](okta/okta-signin-widget@okta-signin-widget-7.19.6...okta-signin-widget-7.21.1)

Updates `@types/enzyme` from 3.10.8 to 3.10.18
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/enzyme)

Updates `@types/lodash` from 4.17.4 to 4.17.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)

Updates `@uswds/uswds` from 3.3.0 to 3.8.2
- [Release notes](https://github.com/uswds/uswds/releases)
- [Commits](uswds/uswds@v3.3.0...v3.8.2)

Updates `dompurify` from 3.1.5 to 3.1.6
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](cure53/DOMPurify@3.1.5...3.1.6)

Updates `formik` from 2.2.9 to 2.4.6
- [Release notes](https://github.com/jaredpalmer/formik/releases)
- [Commits](https://github.com/jaredpalmer/formik/compare/formik@2.2.9...formik@2.4.6)

Updates `launchdarkly-react-client-sdk` from 3.2.0 to 3.4.0
- [Release notes](https://github.com/launchdarkly/react-client-sdk/releases)
- [Changelog](https://github.com/launchdarkly/react-client-sdk/blob/main/CHANGELOG.md)
- [Commits](launchdarkly/react-client-sdk@3.2.0...launchdarkly-react-client-sdk-v3.4.0)

Updates `luxon` from 3.4.4 to 3.5.0
- [Changelog](https://github.com/moment/luxon/blob/master/CHANGELOG.md)
- [Commits](moment/luxon@3.4.4...3.5.0)

Updates `react-hook-form` from 7.51.5 to 7.52.2
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.51.5...v7.52.2)

Updates `react-table` from 7.5.1 to 7.8.0
- [Release notes](https://github.com/tannerlinsley/react-table/releases)
- [Commits](TanStack/table@v7.5.1...v7.8.0)

Updates `@types/react-table` from 7.7.1 to 7.7.20
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-table)

Updates `sass` from 1.77.2 to 1.77.8
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.77.2...1.77.8)

Updates `@babel/core` from 7.24.5 to 7.25.2
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.25.2/packages/babel-core)

Updates `@babel/preset-env` from 7.24.5 to 7.25.3
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.25.3/packages/babel-preset-env)

Updates `@cypress/webpack-preprocessor` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/cypress-io/cypress/compare/@cypress/webpack-preprocessor-v6.0.1...@cypress/webpack-preprocessor-v6.0.2)

Updates `@graphql-codegen/client-preset` from 4.3.0 to 4.3.3
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/presets/client/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/client-preset@4.3.3/packages/presets/client)

Updates `@vitejs/plugin-react` from 4.2.1 to 4.3.1
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.3.1/packages/plugin-react)

Updates `autoprefixer` from 10.4.19 to 10.4.20
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.19...10.4.20)

Updates `cypress` from 13.12.0 to 13.13.3
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.12.0...v13.13.3)

Updates `eslint-plugin-jsx-a11y` from 6.8.0 to 6.9.0
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-jsx-a11y@v6.8.0...v6.9.0)

Updates `eslint-plugin-react` from 7.34.1 to 7.35.0
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.34.1...v7.35.0)

Updates `webpack` from 5.91.0 to 5.93.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.91.0...v5.93.0)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@cypress/code-coverage"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: "@okta/okta-auth-js"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: "@okta/okta-signin-widget"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@types/enzyme"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: "@types/lodash"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: "@uswds/uswds"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: dompurify
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: formik
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: launchdarkly-react-client-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: luxon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: react-table
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@types/react-table"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: sass
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@cypress/webpack-preprocessor"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: "@graphql-codegen/client-preset"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner August 21, 2024 22:42
@dependabot dependabot bot requested review from adamodd and removed request for a team August 21, 2024 22:42
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 21, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 26, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Aug 26, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/other-afc98d0ccc branch August 26, 2024 16:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants