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

Update all non-major dependencies #559

Merged
merged 1 commit into from
Jun 28, 2023
Merged

Update all non-major dependencies #559

merged 1 commit into from
Jun 28, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 12, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/client (source) 3.7.10 -> 3.7.16 age adoption passing confidence
@aptos-labs/wallet-adapter-mui-design 1.0.0 -> 1.0.1 age adoption passing confidence
@aptos-labs/wallet-adapter-react 1.2.1 -> 1.2.2 age adoption passing confidence
@​blocto/aptos-wallet-adapter-plugin 0.1.4 -> 0.1.9 age adoption passing confidence
@mui/icons-material (source) 5.11.11 -> 5.11.16 age adoption passing confidence
@mui/material (source) 5.11.16 -> 5.13.6 age adoption passing confidence
@mui/system (source) 5.11.16 -> 5.13.6 age adoption passing confidence
@mui/x-date-pickers (source) 6.0.0 -> 6.9.0 age adoption passing confidence
@sentry/react (source) 7.52.1 -> 7.57.0 age adoption passing confidence
@sentry/tracing (source) 7.52.1 -> 7.57.0 age adoption passing confidence
@solana/web3.js (source) 1.75.0 -> 1.77.3 age adoption passing confidence
@tanstack/react-query (source) 4.29.5 -> 4.29.19 age adoption passing confidence
@types/lodash (source) 4.14.191 -> 4.14.195 age adoption passing confidence
@types/react-syntax-highlighter (source) 15.5.6 -> 15.5.7 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.59.6 -> 5.60.1 age adoption passing confidence
@typescript-eslint/parser 5.59.6 -> 5.60.1 age adoption passing confidence
@vitejs/plugin-react (source) 4.0.0 -> 4.0.1 age adoption passing confidence
@welldone-studio/aptos-wallet-adapter 0.1.2 -> 0.1.4 age adoption passing confidence
aptos 1.8.3 -> 1.11.0 age adoption passing confidence
chart.js (source) 4.2.1 -> 4.3.0 age adoption passing confidence
date-fns 2.29.3 -> 2.30.0 age adoption passing confidence
eslint (source) 8.41.0 -> 8.43.0 age adoption passing confidence
graphql 16.6.0 -> 16.7.1 age adoption passing confidence
lint-staged 13.2.0 -> 13.2.3 age adoption passing confidence
petra-plugin-wallet-adapter 0.1.3 -> 0.1.5 age adoption passing confidence
pnpm (source) 8.6.1 -> 8.6.5 age adoption passing confidence
prettier (source) 2.8.5 -> 2.8.8 age adoption passing confidence
react-hook-form (source) 7.43.7 -> 7.45.1 age adoption passing confidence
react-intersection-observer 9.4.3 -> 9.5.2 age adoption passing confidence
react-loading-skeleton 3.2.0 -> 3.3.1 age adoption passing confidence
react-router-dom 6.10.0 -> 6.14.0 age adoption passing confidence
recharts 2.5.0 -> 2.7.2 age adoption passing confidence
statsig-react 1.23.2 -> 1.30.1 age adoption passing confidence
typescript (source) 5.0.2 -> 5.1.5 age adoption passing confidence
vite (source) 4.3.8 -> 4.3.9 age adoption passing confidence
vitest 0.32.0 -> 0.32.2 age adoption passing confidence

Release Notes

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

v3.7.16

Compare Source

Patch Changes

v3.7.15

Compare Source

Patch Changes
  • #​10891 ab42a5c08 Thanks @​laverdet! - Fixes a bug in how multipart responses are read when using @defer. When reading a multipart body, HttpLink no longer attempts to parse the boundary (e.g. "---" or other boundary string) within the response data itself, only when reading the beginning of each mulitpart chunked message.

  • #​10789 23a4e1578 Thanks @​phryneas! - Fix a bug where other fields could be aliased to __typename or id, in which case an incoming result would be merged into the wrong cache entry.

v3.7.14

Compare Source

Patch Changes
  • #​10764 1b0a61fe5 Thanks @​phryneas! - Deprecate useFragment returnPartialData option

  • #​10810 a6252774f Thanks @​dleavitt! - Fix type signature of ServerError.

    In <3.7 HttpLink and BatchHttpLink would return a ServerError.message of e.g. "Unexpected token 'E', \"Error! Foo bar\" is not valid JSON" and a ServerError.result of undefined in the case where a server returned a >= 300 response code with a response body containing a string that could not be parsed as JSON.

    In >=3.7, message became e.g. Response not successful: Received status code 302 and result became the string from the response body, however the type in ServerError.result was not updated to include the string type, which is now properly reflected.

v3.7.13

Compare Source

Patch Changes
  • #​10805 a5503666c Thanks @​phryneas! - Fix a potential memory leak in SSR scenarios when many persistedQuery instances were created over time.

  • #​10718 577c68bdd Thanks @​Hsifnus! - Delay Concast subscription teardown slightly in useSubscription to prevent unexpected Concast teardown when one useSubscription hook tears down its in-flight Concast subscription immediately followed by another useSubscription hook reusing and subscribing to that same Concast

v3.7.12

Compare Source

Patch Changes

v3.7.11

Compare Source

Patch Changes
  • #​10586 4175af594 Thanks @​alessbell! - Improve WebSocket error handling for generic Event received on error. For more information see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/error_event.

  • #​10411 152baac34 Thanks @​lovasoa! - Simplify error message generation and make 'undefined' an impossible message string.

  • #​10592 cdb98ae08 Thanks @​alessbell! - Adds support for multipart subscriptions in HttpLink.

  • #​10698 38508a251 Thanks @​jerelmiller! - Changes the behavior of useLazyQuery introduced in #​10427 where unmounting a component before a query was resolved would reject the promise with an abort error. Instead, the promise will now resolve naturally with the result from the request.

    Other notable fixes:

    • Kicking off multiple requests in parallel with the execution function will now ensure each returned promise is resolved with the data from its request. Previously, each promise was resolved with data from the last execution.
    • Re-rendering useLazyQuery with a different query document will now ensure the execution function uses the updated query document. Previously, only the query document rendered the first time would be used for the request.
  • #​10660 364bee98f Thanks @​alessbell! - Upgrades TypeScript to v5. This change is fully backward-compatible and transparent to users.

  • #​10597 8fb9d190d Thanks @​phryneas! - Fix a bug where an incoming cache update could prevent future updates from the active link.

  • #​10629 02605bb3c Thanks @​phryneas! - useQuery: delay unsubscribe to fix race conditions

aptos-labs/aptos-wallet-adapter (@​aptos-labs/wallet-adapter-mui-design)

v1.0.1

Compare Source

Patch Changes
mui/material-ui (@​mui/icons-material)

v5.11.16

Compare Source

Apr 4, 2023

A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:

  • 💅 Added tabs on API pages of Base UI to switch between component and hook references (#​35938) @​mnajdova
  • 🐛 bug fixes and 📚 documentation improvements.
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​amal-qb, @​danilo-leal, @​DevinCLane, @​gitstart, @​hbjORbj, @​HeVictor, @​LadyBluenotes, @​michaldudak, @​mj12albert, @​mnajdova, @​oliviertassinari, @​RBerthier, @​sai6855, @​siriwatknp, @​viclafouch, @​yushanwebdev

mui/mui-x (@​mui/x-date-pickers)

v6.9.0

Compare Source

Jun 22, 2023

We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:

  • 🎁 We released a new open-source package: @mui/x-charts. This package aims at simplifying the integration of charts into your dashboards. 📊

    charts

    It already contains line, bar, and scatter charts, with basic customization features. Check out the documentation to see what it can do, and open issues to get the feature you need implemented.

  • 🚀 Introducing UTC and timezone support for pickers.

    Visit the documentation to learn how to use it.

  • 🌍 Improve Brazilian Portuguese (pt-BR) on the data grid

  • 🌍 Improve Czech (cs-CZ) locale on the pickers

  • 🚅 Performance improvements

  • 🐞 Bugfixes

  • 📚 Documentation improvements

@mui/[email protected] / @mui/[email protected] / @mui/[email protected]
Changes
@mui/[email protected] / @mui/[email protected]
Changes
@mui/[email protected]
Changes
Docs
Core

v6.8.0

Compare Source

Jun 16, 2023

We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:

  • 🌍 Add Greek (el-GR) locale on Pickers and improve on Data Grid
  • 🚅 Performance improvements
  • 🐞 Bugfixes
  • 📚 Documentation improvements
@mui/[email protected] / @mui/[email protected] / @mui/[email protected]
Changes
@mui/[email protected] / @mui/[email protected]
Changes
Docs
Core

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.

👻 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1600c5e to 1162ef9 Compare June 15, 2023 02:34
@netlify
Copy link

netlify bot commented Jun 15, 2023

Deploy Preview for aptos-explorer ready!

Name Link
🔨 Latest commit 4c35075
🔍 Latest deploy log https://app.netlify.com/sites/aptos-explorer/deploys/649985d0a520e6000897da70
😎 Deploy Preview https://deploy-preview-559--aptos-explorer.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site settings.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 15bfaac to 793ae2a Compare June 26, 2023 00:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 793ae2a to 4c35075 Compare June 26, 2023 12:34
@jillxuu jillxuu merged commit c226ec7 into main Jun 28, 2023
8 checks passed
@jillxuu jillxuu deleted the renovate/all-minor-patch branch June 28, 2023 23:54
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