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

chore(deps): update all dependencies - patch updates #142

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 28, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@apollo/client (source) 3.12.4 -> 3.12.5 age adoption passing confidence devDependencies patch
@astrojs/check (source) 0.9.3 -> 0.9.4 age adoption passing confidence dependencies patch
@changesets/cli (source) 2.27.8 -> 2.27.11 age adoption passing confidence devDependencies patch
@graphql-codegen/cli (source) 5.0.2 -> 5.0.3 age adoption passing confidence devDependencies patch
@tsconfig/recommended (source) 1.0.7 -> 1.0.8 age adoption passing confidence devDependencies patch
@types/jest (source) 29.5.13 -> 29.5.14 age adoption passing confidence devDependencies patch
@types/node (source) 22.10.2 -> 22.10.5 age adoption passing confidence devDependencies patch
@types/node (source) 18.19.54 -> 18.19.70 age adoption passing confidence devDependencies patch
@types/react (source) 18.3.10 -> 18.3.18 age adoption passing confidence devDependencies patch
@types/react-dom (source) 18.3.0 -> 18.3.5 age adoption passing confidence devDependencies patch
@types/ws (source) 8.5.12 -> 8.5.13 age adoption passing confidence devDependencies patch
eslint-plugin-storybook 0.11.1 -> 0.11.2 age adoption passing confidence devDependencies patch
graphql-ws (source) 5.16.0 -> 5.16.2 age adoption passing confidence devDependencies patch
msw-storybook-addon (source) 2.0.3 -> 2.0.4 age adoption passing confidence devDependencies patch
postcss (source) 8.4.47 -> 8.4.49 age adoption passing confidence devDependencies patch
slackapi/slack-github-action v1.27.0 -> v1.27.1 age adoption passing confidence action patch
tailwindcss (source) 3.4.13 -> 3.4.17 age adoption passing confidence devDependencies patch
tsup (source) 8.3.0 -> 8.3.5 age adoption passing confidence devDependencies patch
typescript (source) 5.7.2 -> 5.7.3 age adoption passing confidence devDependencies patch
vite (source) 5.4.8 -> 5.4.11 age adoption passing confidence devDependencies patch
vitest (source) 2.1.1 -> 2.1.8 age adoption passing confidence devDependencies patch
wait-on 8.0.1 -> 8.0.2 age adoption passing confidence devDependencies patch

Release Notes

apollographql/apollo-client (@​apollo/client)

v3.12.5

Compare Source

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 "@&#8203;apollo/client" {
-  interface DataMasking {
-    mode: "unmask"
-  }
-}

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

declare module "@&#8203;apollo/client" {
  interface DataMasking {
-    enabled: true
+    mode: "preserveTypes"
  }
}

If you rely on the default behavior in 3.12.4 or below and would like to continue to use unmasked types by default, set the mode to unmask:

declare module "@&#8203;apollo/client" {
  interface DataMasking {
    mode: "unmask";
  }
}
withastro/language-tools (@​astrojs/check)

v0.9.4

Compare Source

Patch Changes
changesets/changesets (@​changesets/cli)

v2.27.11

Compare Source

Patch Changes

v2.27.10

Compare Source

v2.27.9

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/cli)

v5.0.3

Compare Source

Patch Changes
tsconfig/bases (@​tsconfig/recommended)

v1.0.8

Compare Source

storybookjs/eslint-plugin-storybook (eslint-plugin-storybook)

v0.11.2

Compare Source

🐛 Bug Fix
Authors: 2

enisdenjo/graphql-ws (graphql-ws)

v5.16.2

Compare Source

Patch Changes

v5.16.1

Compare Source

Patch Changes
mswjs/msw-storybook-addon (msw-storybook-addon)

v2.0.4

Compare Source

🐛 Bug Fix
Authors: 1

postcss/postcss (postcss)

v8.4.49

Compare Source

v8.4.48

Compare Source

  • Fixed position calculation in error/warnings methods (by @​romainmenke).
slackapi/slack-github-action (slackapi/slack-github-action)

v1.27.1: Slack Send V1.27.1

Compare Source

What's changed

This release tags multiple updates to dependencies and a clarification in documentation 📚

No changes are needed to update from slackapi/slack-github-action@v1.27.0 - other than bumping the version - but ongoing development is now happening on version @v2 and @v1 is no longer planning to receive significant updates after this.

Please stay tuned for upcoming changes, and may all of your workflows run well ❤️

📚 Documentation
🧪 Maintenance
📦 Dependencies

Full Changelog: slackapi/slack-github-action@v1.27.0...v1.27.1

tailwindlabs/tailwindcss (tailwindcss)

v3.4.17

Compare Source

v3.4.16

Compare Source

Fixed
  • Ensure the TypeScript types for PluginsConfig allow undefined values (#​14668)

Changed

v3.4.15

Compare Source

  • Bump versions for security vulnerabilities (#​14697)
  • Ensure the TypeScript types for the boxShadow theme configuration allows arrays (#​14856)
  • Set fallback for opacity variables to ensure setting colors with the selection:* variant works in Chrome 131 (#​15003)

v3.4.14

Compare Source

Fixed
  • Don't set display: none on elements that use hidden="until-found" (#​14625)
egoist/tsup (tsup)

v8.3.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.3.4

Compare Source

No significant changes

    View changes on GitHub
microsoft/TypeScript (typescript)

v5.7.3

Compare Source

vitejs/vite (vite)

v5.4.11

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.10

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.9

Compare Source

Please refer to CHANGELOG.md for details.

vitest-dev/vitest (vitest)

v2.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.6

Compare Source

🚀 Features

  • Support VIte 6
    View changes on GitHub

v2.1.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v2.1.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v2.1.3

Compare Source

   🐞 Bug Fixes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

Copy link

changeset-bot bot commented Sep 28, 2024

⚠️ No Changeset found

Latest commit: bb7087e

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

netlify bot commented Sep 28, 2024

Deploy Preview for graphql-testing-library canceled.

Name Link
🔨 Latest commit bb7087e
🔍 Latest deploy log https://app.netlify.com/sites/graphql-testing-library/deploys/67812e4b34960100071d6371

@renovate renovate bot enabled auto-merge (squash) October 5, 2024 07:45
@renovate renovate bot force-pushed the renovate/all-patch branch from ccaefd4 to dc0d1fe Compare October 5, 2024 07:45
@renovate renovate bot changed the title chore(deps): update all dependencies - patch updates to v8.3.4 chore(deps): update all dependencies - patch updates Oct 5, 2024
@renovate renovate bot force-pushed the renovate/all-patch branch 3 times, most recently from 3699541 to aa2c839 Compare October 19, 2024 08:00
@renovate renovate bot force-pushed the renovate/all-patch branch 3 times, most recently from b84d3eb to 4065a40 Compare November 2, 2024 07:43
@renovate renovate bot force-pushed the renovate/all-patch branch 3 times, most recently from a5d573a to fdaebe9 Compare November 7, 2024 18:26
@renovate renovate bot force-pushed the renovate/all-patch branch 6 times, most recently from 20bb528 to 0ca3627 Compare November 14, 2024 21:21
@renovate renovate bot force-pushed the renovate/all-patch branch 4 times, most recently from 2860dfd to 0350d7e Compare November 26, 2024 15:27
@renovate renovate bot force-pushed the renovate/all-patch branch 5 times, most recently from 8b9223f to 265025f Compare December 4, 2024 18:16
@renovate renovate bot force-pushed the renovate/all-patch branch from 265025f to df0c945 Compare December 7, 2024 08:17
@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from 9f5a2e4 to 5904ec6 Compare December 21, 2024 09:21
@renovate renovate bot force-pushed the renovate/all-patch branch from 5904ec6 to 75602d0 Compare December 28, 2024 10:50
@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from b2d9bdf to 5d32ecf Compare January 10, 2025 02:46
@renovate renovate bot force-pushed the renovate/all-patch branch from 5d32ecf to bb7087e Compare January 10, 2025 14:27
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.

0 participants