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 39 updates #2965

Merged
merged 3 commits into from
Jan 28, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 27, 2025

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

Package From To
@apollo/client 3.11.8 3.12.8
@cypress/code-coverage 3.13.2 3.13.10
@okta/okta-auth-js 7.8.0 7.10.1
@okta/okta-signin-widget 7.23.0 7.27.3
@tiptap/core 2.10.2 2.11.3
@tiptap/extension-document 2.10.2 2.11.3
@tiptap/extension-mention 2.9.1 2.11.3
@tiptap/extension-paragraph 2.10.2 2.11.3
@tiptap/extension-text 2.10.2 2.11.3
@tiptap/pm 2.9.1 2.11.3
@tiptap/react 2.9.1 2.11.3
@tiptap/suggestion 2.9.1 2.11.3
@types/lodash 4.17.4 4.17.14
@types/text-encoding 0.0.39 0.0.40
@uswds/uswds 3.3.0 3.11.0
axios 1.7.7 1.7.9
dompurify 3.2.0 3.2.3
@types/dompurify 3.0.5 3.2.0
formik 2.2.9 2.4.6
launchdarkly-react-client-sdk 3.2.0 3.6.0
react-hook-form 7.51.5 7.54.2
react-modal 3.16.1 3.16.3
react-select 5.8.0 5.10.0
react-table 7.5.1 7.8.0
@types/react-table 7.7.1 7.7.20
@babel/core 7.25.2 7.26.7
@babel/preset-env 7.25.4 7.26.7
@graphql-codegen/cli 5.0.2 5.0.3
@graphql-codegen/typed-document-node 5.0.9 5.0.12
@vitejs/plugin-react 4.2.1 4.3.4
autoprefixer 10.4.19 10.4.20
eslint-plugin-prettier 5.2.1 5.2.3
prettier 3.3.3 3.4.2
redux-mock-store 1.5.4 1.5.5
@types/redux-mock-store 1.0.6 1.5.0
sass 1.79.3 1.83.4
vite-plugin-svgr 4.2.0 4.3.0
webpack 5.95.0 5.97.1

Updates @apollo/client from 3.11.8 to 3.12.8

Release notes

Sourced from @​apollo/client's releases.

v3.12.8

Patch Changes

  • #12292 3abd944 Thanks @​phryneas! - Remove unused dependency response-iterator

  • #12287 bf313a3 Thanks @​phryneas! - Fixes an issue where client.watchFragment/useFragment with @includes crashes when a separate cache update writes to the conditionally included fields.

v3.12.7

Patch Changes

  • #12281 d638ec3 Thanks @​jerelmiller! - Make fatal tranport-level errors from multipart subscriptions available to the error link with the protocolErrors property.

    const errorLink = onError(({ protocolErrors }) => {
      if (protocolErrors) {
        console.log(protocolErrors);
      }
    });
  • #12281 d638ec3 Thanks @​jerelmiller! - Fix the array type for the errors field on the ApolloPayloadResult type. This type was always in the shape of the GraphQL error format, per the multipart subscriptions protocol and never a plain string or a JavaScript error object.

v3.12.6

Patch Changes

  • #12267 d57429d Thanks @​jerelmiller! - Maintain the TData type when used with Unmasked when TData is not a masked type generated from GraphQL Codegen.

  • #12270 3601246 Thanks @​jerelmiller! - Fix handling of tagged/branded primitive types when used as scalar values with Unmasked.

v3.12.5

Patch Changes

  • #12252 cb9cd4e Thanks @​jerelmiller! - Changes the default behavior of the MaybeMasked type to preserve types unless otherwise specified. This change makes it easier to upgrade from older versions of the client where types could have unexpectedly changed in the application due to the default of trying to unwrap types into unmasked types. This change also fixes the compilation performance regression experienced when simply upgrading the client since types are now preserved by default.

    A new mode option has now been introduced to allow for the old behavior. See the next section on migrating if you wish to maintain the old default behavior after upgrading to this version.

    Migrating from <= v3.12.4

    If you've adopted data masking and have opted in to using masked types by setting the enabled property to true, you can remove this configuration entirely:

    -declare module "@apollo/client" {
    -  interface DataMasking {
    -    mode: "unmask"
    -  }
    -}

    If you prefer to specify the behavior explicitly, change the property from enabled: true, to mode: "preserveTypes":

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.12.8

Patch Changes

  • #12292 3abd944 Thanks @​phryneas! - Remove unused dependency response-iterator

  • #12287 bf313a3 Thanks @​phryneas! - Fixes an issue where client.watchFragment/useFragment with @includes crashes when a separate cache update writes to the conditionally included fields.

3.12.7

Patch Changes

  • #12281 d638ec3 Thanks @​jerelmiller! - Make fatal tranport-level errors from multipart subscriptions available to the error link with the protocolErrors property.

    const errorLink = onError(({ protocolErrors }) => {
      if (protocolErrors) {
        console.log(protocolErrors);
      }
    });
  • #12281 d638ec3 Thanks @​jerelmiller! - Fix the array type for the errors field on the ApolloPayloadResult type. This type was always in the shape of the GraphQL error format, per the multipart subscriptions protocol and never a plain string or a JavaScript error object.

3.12.6

Patch Changes

  • #12267 d57429d Thanks @​jerelmiller! - Maintain the TData type when used with Unmasked when TData is not a masked type generated from GraphQL Codegen.

  • #12270 3601246 Thanks @​jerelmiller! - Fix handling of tagged/branded primitive types when used as scalar values with Unmasked.

3.12.5

Patch Changes

  • #12252 cb9cd4e Thanks @​jerelmiller! - Changes the default behavior of the MaybeMasked type to preserve types unless otherwise specified. This change makes it easier to upgrade from older versions of the client where types could have unexpectedly changed in the application due to the default of trying to unwrap types into unmasked types. This change also fixes the compilation performance regression experienced when simply upgrading the client since types are now preserved by default.

    A new mode option has now been introduced to allow for the old behavior. See the next section on migrating if you wish to maintain the old default behavior after upgrading to this version.

    Migrating from <= v3.12.4

    If you've adopted data masking and have opted in to using masked types by setting the enabled property to true, you can remove this configuration entirely:

    -declare module "@apollo/client" {
    -  interface DataMasking {
    -    mode: "unmask"
    -  }
    -}

... (truncated)

Commits
  • 0ea97e5 Version Packages (#12293)
  • 1c5e795 ci: add write permissions for issues in cleanup checks workflow
  • 4bd6362 Add peek to ObservableStream and use ObservableStream in an existing te...
  • ee36d9f Minor tweaks to diffAgainstStore tests (#12303)
  • bf313a3 Ensure watchFragment used with variables does not crash when the cache upda...
  • 3abd944 Remove unused dependency response-iterator (#12292)
  • fab4053 Update ROADMAP.md
  • de8196e Version Packages (#12289)
  • d638ec3 Make protocol errors available in the error link (#12281)
  • 7b5c73f Bump undici from 6.19.8 to 6.21.1 (#12288)
  • Additional commits viewable in compare view

Updates @cypress/code-coverage from 3.13.2 to 3.13.10

Release notes

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

v3.13.10

3.13.10 (2025-01-07)

Bug Fixes

  • deps: update dependency @​types/node to v22.10.5 (#915) (ca77670)
  • deps: update react monorepo (#916) (b43adc7)

v3.13.9

3.13.9 (2024-12-09)

Bug Fixes

v3.13.8

3.13.8 (2024-11-30)

Bug Fixes

  • deps: update dependency @​types/node to v22.10.1 (#903) (063c8de)

v3.13.7

3.13.7 (2024-11-18)

Bug Fixes

  • deps: update dependency @​types/node to v22 (#902) (2631db8)

v3.13.6

3.13.6 (2024-11-04)

Bug Fixes

  • deps: update dependency @​types/jest to v29.5.14 (#896) (cac8a4b)

v3.13.5

3.13.5 (2024-10-29)

Bug Fixes

... (truncated)

Commits
  • b43adc7 fix(deps): update react monorepo (#916)
  • ca77670 fix(deps): update dependency @​types/node to v22.10.5 (#915)
  • b971006 chore(deps): update dependency start-server-and-test to v2.0.9 (#914)
  • b3adfa7 chore(deps): update node.js to v22.12.0 (#911)
  • b39f10b fix(deps): update react monorepo (#912)
  • f66c3fa chore(deps): update dependency cypress to v13.16.1 (#909)
  • 384883d chore(deps): update dependency express to v4.21.2 (#910)
  • 21984b6 chore(deps): update dependency webpack to v5.97.1 (#913)
  • 1030da8 chore(deps): update dependency prettier to v3.4.2 (#907)
  • 063c8de fix(deps): update dependency @​types/node to v22.10.1 (#903)
  • Additional commits viewable in compare view

Updates @okta/okta-auth-js from 7.8.0 to 7.10.1

Release notes

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

7.10.1

Fixes

  • #1562 - replaces dependency of ua-parser-js due to incompatible licensing

7.10.0

Fixes

7.9.0

Fix

  • #1551 - fixes authn polling on iOS18 devices (Safari 18.x)

7.8.1

Bug Fix

Changelog

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

7.10.1

Other

  • #1562 chore: Remove ua-parser-js. Change isMobileSafari18 to isSafari18

7.10.0

Bug Fix

  • #1552 fix: start poll request when document is visible and awaken in Mobile Safari 18.x

7.8.1

Bug Fix

Commits
  • 45e1ed3 Remove ua-parser-js. Change isMobileSafari18 to isSafari18 (#1562)
  • 2d4639f chore: manual version bump (7.10.0) (#1558)
  • 4413b3e Fix bug in Mobile Safari 18.x: start poll request when document is visible an...
  • d0134cf chore: deps update (#1553)
  • 3b91c02 fix: authn polling on iOS18 devices (#1551)
  • 92e6158 Updates samples to encourage refresh tokens (#1549)
  • 38c355d Merge remote-tracking branch 'origin/7.8' into jp-backport-7-8-1
  • 710288d replaces jsonpath-plus module (#1547)
  • 377fd0d chore: manual version bump (#1535)
  • See full diff in compare view

Updates @okta/okta-signin-widget from 7.23.0 to 7.27.3

Release notes

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

7.27.3

🐞 Bug fixes

  • Upgrades @​okta/okta-auth-js version to 7.10.1 to remove ua-parser-js dependency (#3773 ) 2de3e763c399587eff246ca17d339c5194253295

7.27.2

🐞 Bug fixes

  • Upgrades @​okta/okta-auth-js version to include iOS 18 related polling issues (#3771) e4607caf56e9b3b3d87e29926f84b6dd2065eb10

7.27.1

🐞 Bug fixes

  • Removes dependency on redirect_uri query parameter for detecting Android OV enrollment (#3762) ccc69e0e2

7.27.0

🐞 Bug fixes

  • [Gen2] Fixes UI bug with select dropdown (#3763) 7865c7730
  • [Gen3] Uses bootstrap widget logic as fallback for Okta-hosted back to sign link (#3765) c76a5a6b5
  • [Gen3] Removes empty optional fields from form data on submission (#3764) 6bf6b4cbd

7.26.1

🐞 Bug fixes

  • fix(Gen1): fix: iOS18 background polling issue (#3757 ) 1d943506ad37641dbb9ac637e315bc73eacfdae6

7.26.0

🐞 Bug fixes

  • fix(Gen2): hides resend callout after entering wrong MFA code and show after timeout (#3755 ) 352404601e6fe9ba7eade5628d1e2dc64d77c4b6
  • fix(Gen2): remove unexpected form error when cancel OV view (#3751 ) 0e17379e909494fc50401df365451f7cd832c118

7.25.1

🐞 Bug fixes

  • fix(vuln): respects translation overrides for errors.E0xxx in i18n of widget config (#3744 ) 49d7f7b2b511d17b36ee01454c280bdc29186425

7.25.0

🐞 Bug fixes

  • fix(vuln): Upgrades @okta/okta-auth-js to 7.8.1 (#3740) bdbdf7a50

... (truncated)

Commits
  • d414559 chore: version bump 7.27.3
  • 2de3e76 Bump okta-auth-js version to 7.10.1 (#3773)
  • fb135ef chore: version bump 7.27.2
  • d3efb69 chore: version bump 7.27.1
  • e4607ca OKTA-851203: upgrade authjs 7.10 (#3771)
  • ac30c96 chore: version bump 7.27.1
  • ccc69e0 Gen 2/3: Use redirect URI from IDX response for Util.isAndroidOVEnrollment ...
  • ded0cb3 chore: version bump 7.27.0
  • 6bf6b4c [Gen3] Remove empty optional fields from form data on submission (#3764)
  • c76a5a6 [Gen3] Use bootstrap widget logic as fallback for Okta-hosted back to sign li...
  • Additional commits viewable in compare view

Updates @tiptap/core from 2.10.2 to 2.11.3

Release notes

Sourced from @​tiptap/core's releases.

v2.11.3

What's Changed

New Contributors

Full Changelog: ueberdosis/tiptap@v2.11.1...v2.11.3

v2.11.1

What's Changed

New Contributors

Full Changelog: ueberdosis/tiptap@v2.11.0...v2.11.1

v2.11.0

What's Changed

... (truncated)

Changelog

Sourced from @​tiptap/core's changelog.

2.11.3

Patch Changes

  • a44a7c3: fix(core): do not reset marks, or nodes when using IME on mobile devices
  • fa63c47: Focus synchronously only if on iOS or Android #4448

2.11.2

Patch Changes

  • 2abd4df: Re-release

2.11.1

2.11.0

Minor Changes

  • 8c619c6: Add rewriteUnknownContent helper, which can strip your editor JSON of content which is invalid within the current editor's schema

Patch Changes

  • 283e606: Fixed an issue on Android where the focus command would cause the keyboard to flash
  • ca6269e: Added support for drag-and-drop between multiple editors
  • e0dfecc: Updates the typings to be inline with prosemirror-view #5867
  • 722ec00: Use an AllSelection for the selectAll command #5516
  • b7ef150: Fixed an issue with nodeviews preventing any drag events in child nodes of the nodeview wrapper element

2.10.4

2.10.3

Patch Changes

  • 7c6774e: Updates the typings to be inline with Prosemirror-view #5867
Commits
  • 4d9cc05 chore(release): publish version v2.11.3 (#6035)
  • fa63c47 fix(core): resolve focus regression (#6043)
  • a44a7c3 fix(core): do not reset marks, or nodes when using IME on mobile devices #573...
  • 75258f3 chore(release): version 2.11.2 (#6013)
  • 9a6fde0 chore(release): publish a new pre-release version (#5983)
  • 4d28af4 fix(core): convert class attribute to string (#6011)
  • 44cae5b chore: update eslint
  • 483f743 chore(release): publish version 2.11.0 (#5836)
  • c791254 Merge branch 'main' into develop
  • 8c619c6 feat(core): add rewriteUnknownContent utility for cleaning JSON (#5915)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by tiptap-bot, a new releaser for @​tiptap/core since your current version.


Updates @tiptap/extension-document from 2.10.2 to 2.11.3

Release notes

Sourced from @​tiptap/extension-document's releases.

v2.11.3

What's Changed

New Contributors

Full Changelog: ueberdosis/tiptap@v2.11.1...v2.11.3

v2.11.1

What's Changed

New Contributors

Full Changelog: ueberdosis/tiptap@v2.11.0...v2.11.1

v2.11.0

What's Changed

... (truncated)

Changelog

Sourced from @​tiptap/extension-document's changelog.

2.11.3

2.11.2

2.11.1

2.11.0

2.10.4

2.10.3

Commits
Maintainer changes

This version was pushed to npm by tiptap-bot, a new releaser for @​tiptap/extension-document since your current version.


Updates @tiptap/extension-mention from 2.9.1 to 2.11.3

Release notes

Sourced from @​tiptap/extension-mention's releases.

v2.11.3

What's Changed

New Contributors

Full Changelog: ueberdosis/tiptap@v2.11.1...v2.11.3

v2.11.1

What's Changed

New Contributors

Full Changelog: ueberdosis/tiptap@v2.11.0...v2.11.1

v2.11.0

What's Changed

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

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.11.8` | `3.12.8` |
| [@cypress/code-coverage](https://github.com/cypress-io/code-coverage) | `3.13.2` | `3.13.10` |
| [@okta/okta-auth-js](https://github.com/okta/okta-auth-js) | `7.8.0` | `7.10.1` |
| [@okta/okta-signin-widget](https://github.com/okta/okta-signin-widget) | `7.23.0` | `7.27.3` |
| [@tiptap/core](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/core) | `2.10.2` | `2.11.3` |
| [@tiptap/extension-document](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-document) | `2.10.2` | `2.11.3` |
| [@tiptap/extension-mention](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-mention) | `2.9.1` | `2.11.3` |
| [@tiptap/extension-paragraph](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-paragraph) | `2.10.2` | `2.11.3` |
| [@tiptap/extension-text](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-text) | `2.10.2` | `2.11.3` |
| [@tiptap/pm](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/pm) | `2.9.1` | `2.11.3` |
| [@tiptap/react](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react) | `2.9.1` | `2.11.3` |
| [@tiptap/suggestion](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/suggestion) | `2.9.1` | `2.11.3` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.4` | `4.17.14` |
| [@types/text-encoding](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/text-encoding) | `0.0.39` | `0.0.40` |
| [@uswds/uswds](https://github.com/uswds/uswds) | `3.3.0` | `3.11.0` |
| [axios](https://github.com/axios/axios) | `1.7.7` | `1.7.9` |
| [dompurify](https://github.com/cure53/DOMPurify) | `3.2.0` | `3.2.3` |
| [@types/dompurify](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/dompurify) | `3.0.5` | `3.2.0` |
| [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.6.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.51.5` | `7.54.2` |
| [react-modal](https://github.com/reactjs/react-modal) | `3.16.1` | `3.16.3` |
| [react-select](https://github.com/JedWatson/react-select) | `5.8.0` | `5.10.0` |
| [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` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.25.2` | `7.26.7` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.25.4` | `7.26.7` |
| [@graphql-codegen/cli](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli) | `5.0.2` | `5.0.3` |
| [@graphql-codegen/typed-document-node](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typed-document-node) | `5.0.9` | `5.0.12` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.2.1` | `4.3.4` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.19` | `10.4.20` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.2.1` | `5.2.3` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.4.2` |
| [redux-mock-store](https://github.com/arnaudbenard/redux-mock-store) | `1.5.4` | `1.5.5` |
| [@types/redux-mock-store](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/redux-mock-store) | `1.0.6` | `1.5.0` |
| [sass](https://github.com/sass/dart-sass) | `1.79.3` | `1.83.4` |
| [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.2.0` | `4.3.0` |
| [webpack](https://github.com/webpack/webpack) | `5.95.0` | `5.97.1` |



Updates `@apollo/client` from 3.11.8 to 3.12.8
- [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.11.8...v3.12.8)

Updates `@cypress/code-coverage` from 3.13.2 to 3.13.10
- [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.13.2...v3.13.10)

Updates `@okta/okta-auth-js` from 7.8.0 to 7.10.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.8.0...okta-auth-js-7.10.1)

Updates `@okta/okta-signin-widget` from 7.23.0 to 7.27.3
- [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.23.0...okta-signin-widget-7.27.3)

Updates `@tiptap/core` from 2.10.2 to 2.11.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/core/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/[email protected]/packages/core)

Updates `@tiptap/extension-document` from 2.10.2 to 2.11.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/extension-document/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/[email protected]/packages/extension-document)

Updates `@tiptap/extension-mention` from 2.9.1 to 2.11.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/extension-mention/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/[email protected]/packages/extension-mention)

Updates `@tiptap/extension-paragraph` from 2.10.2 to 2.11.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/extension-paragraph/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/[email protected]/packages/extension-paragraph)

Updates `@tiptap/extension-text` from 2.10.2 to 2.11.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/extension-text/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/[email protected]/packages/extension-text)

Updates `@tiptap/pm` from 2.9.1 to 2.11.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/pm/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/[email protected]/packages/pm)

Updates `@tiptap/react` from 2.9.1 to 2.11.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/react/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/[email protected]/packages/react)

Updates `@tiptap/suggestion` from 2.9.1 to 2.11.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/suggestion/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/[email protected]/packages/suggestion)

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

Updates `@types/text-encoding` from 0.0.39 to 0.0.40
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/text-encoding)

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

Updates `axios` from 1.7.7 to 1.7.9
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.7...v1.7.9)

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

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

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/[email protected]@2.4.6)

Updates `launchdarkly-react-client-sdk` from 3.2.0 to 3.6.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.6.0)

Updates `react-hook-form` from 7.51.5 to 7.54.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.54.2)

Updates `react-modal` from 3.16.1 to 3.16.3
- [Release notes](https://github.com/reactjs/react-modal/releases)
- [Changelog](https://github.com/reactjs/react-modal/blob/master/CHANGELOG.md)
- [Commits](reactjs/react-modal@v3.16.1...v3.16.3)

Updates `react-select` from 5.8.0 to 5.10.0
- [Release notes](https://github.com/JedWatson/react-select/releases)
- [Changelog](https://github.com/JedWatson/react-select/blob/master/docs/CHANGELOG.md)
- [Commits](https://github.com/JedWatson/react-select/compare/[email protected]@5.10.0)

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 `@babel/core` from 7.25.2 to 7.26.7
- [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.26.7/packages/babel-core)

Updates `@babel/preset-env` from 7.25.4 to 7.26.7
- [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.26.7/packages/babel-preset-env)

Updates `@graphql-codegen/cli` from 5.0.2 to 5.0.3
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/graphql-codegen-cli/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/graphql-codegen-cli)

Updates `@graphql-codegen/client-preset` from 4.3.3 to 4.5.1
- [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/[email protected]/packages/presets/client)

Updates `@graphql-codegen/typed-document-node` from 5.0.9 to 5.0.12
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/typed-document-node/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/plugins/typescript/typed-document-node)

Updates `@vitejs/plugin-react` from 4.2.1 to 4.3.4
- [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.4/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 `eslint-plugin-prettier` from 5.2.1 to 5.2.3
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.2.1...v5.2.3)

Updates `prettier` from 3.3.3 to 3.4.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.3...3.4.2)

Updates `redux-mock-store` from 1.5.4 to 1.5.5
- [Release notes](https://github.com/arnaudbenard/redux-mock-store/releases)
- [Commits](reduxjs/redux-mock-store@v1.5.4...v1.5.5)

Updates `@types/redux-mock-store` from 1.0.6 to 1.5.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/redux-mock-store)

Updates `sass` from 1.79.3 to 1.83.4
- [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.79.3...1.83.4)

Updates `vite-plugin-svgr` from 4.2.0 to 4.3.0
- [Release notes](https://github.com/pd4d10/vite-plugin-svgr/releases)
- [Commits](pd4d10/vite-plugin-svgr@v4.2.0...v4.3.0)

Updates `webpack` from 5.95.0 to 5.97.1
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.95.0...v5.97.1)

---
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-minor
  dependency-group: other
- dependency-name: "@okta/okta-signin-widget"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@tiptap/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@tiptap/extension-document"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@tiptap/extension-mention"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@tiptap/extension-paragraph"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@tiptap/extension-text"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@tiptap/pm"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@tiptap/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@tiptap/suggestion"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@types/lodash"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: "@types/text-encoding"
  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: axios
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: dompurify
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: "@types/dompurify"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: react-modal
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: react-select
  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: "@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: "@graphql-codegen/cli"
  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-minor
  dependency-group: other
- dependency-name: "@graphql-codegen/typed-document-node"
  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: eslint-plugin-prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: redux-mock-store
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: "@types/redux-mock-store"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: vite-plugin-svgr
  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] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner January 27, 2025 17:36
@dependabot dependabot bot requested review from adamodd and removed request for a team January 27, 2025 17:36
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 27, 2025
@dependabot dependabot bot requested a review from aterstriep January 27, 2025 17:36
Copy link

EKS Ingress URLs

@patrickseguraoddball patrickseguraoddball removed dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 28, 2025
@patrickseguraoddball patrickseguraoddball merged commit 25ce238 into main Jan 28, 2025
15 checks passed
@patrickseguraoddball patrickseguraoddball deleted the dependabot/npm_and_yarn/other-f35b6c5421 branch January 28, 2025 16:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant