Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

fix(deps): update all non-major dependencies #20

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@tanstack/react-store (source) ^0.3.1 -> ^0.4.0 age adoption passing confidence
@tanstack/store (source) ^0.3.1 -> ^0.4.0 age adoption passing confidence
@tanstack/vue-store (source) ^0.3.1 -> ^0.4.0 age adoption passing confidence
@testing-library/jest-dom 6.4.2 -> 6.4.6 age adoption passing confidence
@testing-library/react 14.2.2 -> 14.3.1 age adoption passing confidence
@types/node (source) 20.11.30 -> 20.14.2 age adoption passing confidence
@types/react (source) 18.2.70 -> 18.3.3 age adoption passing confidence
@vitejs/plugin-react (source) 4.2.1 -> 4.3.1 age adoption passing confidence
@vitejs/plugin-vue (source) 5.0.4 -> 5.0.5 age adoption passing confidence
@vue/test-utils 2.4.5 -> 2.4.6 age adoption passing confidence
@walletconnect/sign-client 2.11.3 -> 2.13.3 age adoption passing confidence
@walletconnect/types 2.11.3 -> 2.13.3 age adoption passing confidence
@walletconnect/utils 2.11.3 -> 2.13.3 age adoption passing confidence
algosdk 2.7.0 -> 2.8.0 age adoption passing confidence
jsdom 24.0.0 -> 24.1.0 age adoption passing confidence
lute-connect 1.1.3 -> 1.2.0 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.2 age adoption passing confidence
react (source) 18.2.0 -> 18.3.1 age adoption passing confidence
react-dom (source) 18.2.0 -> 18.3.1 age adoption passing confidence
tsup (source) 8.0.2 -> 8.1.0 age adoption passing confidence
typescript (source) 5.4.3 -> 5.4.5 age adoption passing confidence
vite (source) 5.2.6 -> 5.3.1 age adoption passing confidence
vitest (source) 1.4.0 -> 1.6.0 age adoption passing confidence
vue (source) 3.4.21 -> 3.4.29 age adoption passing confidence
vue-demi 0.14.7 -> 0.14.8 age adoption passing confidence

Release Notes

tanstack/store (@​tanstack/react-store)

v0.4.1

Compare Source

Version 0.4.1 - 5/13/2024, 8:48 AM (Manual Release)

Changes
Chore
  • Update @tanstack/config to v0.7.4 (#​59) (e791820) by Lachlan Collins
  • Enable link-workspace-packages (#​58) (2205ef6) by Lachlan Collins
  • Update pnpm to v9 (#​57) (287c892) by Lachlan Collins
  • Disable vitest globals (#​52) (82fa0e1) by Lachlan Collins
  • Use tsconfig paths to improve local DX (#​51) (5043212) by Lachlan Collins
  • Add workspace config from Query (#​45) (5235213) by Lachlan Collins
Ci
Docs
Packages
testing-library/jest-dom (@​testing-library/jest-dom)

v6.4.6

Compare Source

Bug Fixes

v6.4.5

Compare Source

Bug Fixes

v6.4.4

Compare Source

v6.4.3

Compare Source

testing-library/react-testing-library (@​testing-library/react)

v14.3.1

Compare Source

Bug Fixes

v14.3.0

Compare Source

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.1

Compare Source

Fix support for React Compiler with React 18

The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom runtimeModule: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43

When using a custom runtimeModule, the plugin will not try to pre-optimize react/compiler-runtime dependency.

Reminder: Vite expect code outside of node_modules to be ESM, so you will need to update the gist with import React from 'react'.

v4.3.0

Compare Source

Fix support for React compiler

Don't set retainLines: true when the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like vite-plugin-react-click-to-component to work, you should update your config to something like:

export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', {}]]
  if (command === 'serve') {
    babelPlugins.push(['@​babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})
Support HMR for class components

This is a long overdue and should fix some issues people had with HMR when migrating from CRA.

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.0.5

vuejs/test-utils (@​vue/test-utils)

v2.4.6

Compare Source

What's Changed

New Contributors

Full Changelog: vuejs/test-utils@v2.4.5...v2.4.6

walletconnect/walletconnect-monorepo (@​walletconnect/sign-client)

v2.13.3

Compare Source

What's Changed
New Contributors

Full Changelog: WalletConnect/walletconnect-monorepo@2.13.1...2.13.3

v2.13.2

Compare Source

What's Changed

Full Changelog: WalletConnect/walletconnect-monorepo@2.13.1...2.13.2

v2.13.1

Compare Source

What's Changed
New Contributors

Full Changelog: WalletConnect/walletconnect-monorepo@2.13.0...2.13.1

v2.13.0

Compare Source

What's Changed
New Contributors

Full Changelog: WalletConnect/walletconnect-monorepo@2.12.2...2.13.0

v2.12.2

Compare Source

What's Changed

Full Changelog: WalletConnect/walletconnect-monorepo@2.12.1...2.12.2

v2.12.1

Compare Source

What's Changed

Full Changelog: WalletConnect/walletconnect-monorepo@2.12.0...2.12.1

v2.12.0

Compare Source

What's Changed
New Contributors

Full Changelog: WalletConnect/walletconnect-monorepo@2.11.3...2.12.0

algorand/js-algorand-sdk (algosdk)

v2.8.0

Compare Source

What's Changed

Bugfixes
Enhancements

New Contributors

Full Changelog: algorand/js-algorand-sdk@v2.7.0...v2.8.0

jsdom/jsdom (jsdom)

v24.1.0

Compare Source

  • Added the getSetCookie() method to the Headers class. (ushiboy)
  • Fixed the creation and parsing of elements with names from Object.prototype, like "constructor" or "toString".
  • Updated rweb-cssom, which can now parse additional CSS constructs.
GalaxyPay/lute-connect (lute-connect)

v1.2.0

Compare Source

v1.1.4

Compare Source

prettier/prettier (prettier)

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - ba

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 3am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **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](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/TxnLab/use-wallet-js).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d0c6002 to c03c9b2 Compare May 13, 2024 10:22
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies May 13, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c03c9b2 to 9b6dcad Compare May 14, 2024 07:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from b8d7353 to be71c70 Compare May 29, 2024 18:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 7d987d9 to 61ec215 Compare June 5, 2024 17:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from d986ef2 to 3cc91e8 Compare June 14, 2024 09:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3cc91e8 to 92495ba Compare June 14, 2024 14:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 92495ba to 76f15a5 Compare June 14, 2024 16:11
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant