Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 3, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@​starknet-io/get-starknet-core 4.0.4 -> 4.0.5 age adoption passing confidence
@types/async-retry (source) 1.4.8 -> 1.4.9 age adoption passing confidence
@types/node (source) 20.14.15 -> 20.17.10 age adoption passing confidence
@walletconnect/ethereum-provider (source) 2.14.0 -> 2.17.3 age adoption passing confidence
@walletconnect/sign-client 2.14.0 -> 2.17.3 age adoption passing confidence
@walletconnect/signer-connection 2.14.0 -> 2.17.3 age adoption passing confidence
@walletconnect/types 2.14.0 -> 2.17.3 age adoption passing confidence
@walletconnect/utils 2.14.0 -> 2.17.3 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
eslint-config-next (source) 13.5.6 -> 13.5.8 age adoption passing confidence
postcss (source) 8.4.41 -> 8.4.49 age adoption passing confidence
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence
svelte-check 3.8.5 -> 3.8.6 age adoption passing confidence
tailwindcss (source) 3.4.10 -> 3.4.17 age adoption passing confidence
tslib (source) 2.6.3 -> 2.8.1 age adoption passing confidence
typescript (source) 5.5.4 -> 5.7.2 age adoption passing confidence
vite (source) 5.4.6 -> 5.4.11 age adoption passing confidence
zod (source) 3.23.8 -> 3.24.1 age adoption passing confidence

Release Notes

walletconnect/walletconnect-monorepo (@​walletconnect/ethereum-provider)

v2.17.3

Compare Source

What's Changed
New Contributors

Full Changelog: WalletConnect/walletconnect-monorepo@2.17.2...2.17.3

v2.17.2

Compare Source

What's Changed
New Contributors

Full Changelog: WalletConnect/walletconnect-monorepo@2.17.1...2.17.2

v2.17.1

Compare Source

What's Changed

Full Changelog: WalletConnect/walletconnect-monorepo@2.17.0...2.17.1

v2.17.0

Compare Source

What's Changed

Full Changelog: WalletConnect/walletconnect-monorepo@2.16.2...2.17.0

v2.16.3

Compare Source

What's Changed

Full Changelog: WalletConnect/walletconnect-monorepo@2.16.2...2.16.3

v2.16.2

Compare Source

What's Changed

Full Changelog: WalletConnect/walletconnect-monorepo@2.16.1...2.16.2

v2.16.1

Compare Source

What's Changed
New Contributors

Full Changelog: WalletConnect/walletconnect-monorepo@2.16.0...2.16.1

v2.16.0

Compare Source

What's Changed

Full Changelog: WalletConnect/walletconnect-monorepo@2.15.3...2.16.0

v2.15.3

Compare Source

What's Changed

Full Changelog: WalletConnect/walletconnect-monorepo@2.15.2...2.15.3

v2.15.2

Compare Source

What's Changed

Full Changelog: WalletConnect/walletconnect-monorepo@2.15.1...2.15.2

v2.15.1

Compare Source

What's Changed

Full Changelog: WalletConnect/walletconnect-monorepo@2.15.0...2.15.1

v2.15.0

Compare Source

What's Changed
New Contributors

Full Changelog: WalletConnect/walletconnect-monorepo@2.14.0...2.15.0

eslint/eslint (eslint)

v8.57.1

Compare Source

vercel/next.js (eslint-config-next)

v13.5.8

Compare Source

v13.5.7

Compare Source

postcss/postcss (postcss)

v8.4.49

Compare Source

v8.4.48

Compare Source

  • Fixed position calculation in error/warnings methods (by @​romainmenke).

v8.4.47

Compare Source

  • Removed debug code.

v8.4.46

Compare Source

  • Fixed Cannot read properties of undefined (reading 'before').

v8.4.45

Compare Source

  • Removed unnecessary fix which could lead to infinite loop.

v8.4.44

Compare Source

  • Another way to fix markClean is not a function error.

v8.4.43

Compare Source

  • Fixed markClean is not a function error.

v8.4.42

Compare Source

  • Fixed CSS syntax error on long minified files (by @​varpstar).
prettier/prettier (prettier)

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

sveltejs/language-tools (svelte-check)

v3.8.6

Compare Source

  • fix: support Svelte 5 module script attribute (#​2473)
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)

v3.4.13

Compare Source

Fixed
  • Improve source glob verification performance (#​14481)

v3.4.12

Compare Source

v3.4.11

Compare Source

Microsoft/tslib (tslib)

v2.8.1

Compare Source

v2.8.0

Compare Source

What's Changed

Full Changelog: microsoft/tslib@v2.7.0...v2.8.0

v2.7.0

Compare Source

microsoft/TypeScript (typescript)

v5.7.2

Compare Source

v5.6.3

Compare Source

v5.6.2

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.

v5.4.8

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.7

Compare Source

Please refer to CHANGELOG.md for details.

colinhacks/zod (zod)

v3.24.1

Compare Source

Commits:

v3.24.0

Compare Source

Implement @standard-schema/spec

This is the first version of Zod to implement the Standard Schema spec. This is a new community effort among several validation library authors to implement a common interface, with the goal of simplifying the process of integrating schema validators with the rest of the ecosystem. Read more about the project and goals here.

z.string().jwt()

Thanks to @​Mokshit06 and @​Cognition-Labs for this contribution!

To verify that a string is a valid 3-part JWT.

z.string().jwt();

⚠️ This does not verify your JWT cryptographically! It merely ensures its in the proper format. Use a library like jsonwebtoken to verify the JWT signature, parse the token, and read the claims.

To constrain the JWT to a specific algorithm:

z.string().jwt({ alg: "RS256" });

z.string().base64url()

Thank you to @​marvinruder!

To complement the JWT validation, Zod 3.24 implements a standalone .base64url() string validation API. (The three elements of JWTs are base64url-encoded JSON strings.)

z.string().base64url()

This functionality is available along the standard z.string().base64() validator added in Zod 3.23.

z.string().cidr()

Thanks to @​wataryooou for their work on this!

A validator for CIDR notation for specifying IP address ranges, e.g. 192.24.12.0/22.

z.string().cidr()

To specify an IP version:

z.string().cidr({ version: "v4" })
z.string().cidr({ version: "v6" })

View the full diff from 3.23.8: colinhacks/zod@v3.23.8...v3.24.0


Configuration

📅 Schedule: Branch creation - "every 2 weeks on Monday" in timezone Europe/London, Automerge - At any time (no schedule defined).

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

Rebasing: Never, 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.

@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Jun 14, 2024
@renovate renovate bot closed this Jun 14, 2024
@renovate renovate bot deleted the renovate/all-minor-patch-updates branch June 14, 2024 08:36
@renovate renovate bot restored the renovate/all-minor-patch-updates branch June 15, 2024 11:45
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Jun 15, 2024
@renovate renovate bot reopened this Jun 15, 2024
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Jul 3, 2024
@renovate renovate bot closed this Jul 3, 2024
@renovate renovate bot deleted the renovate/all-minor-patch-updates branch July 3, 2024 10:32
@renovate renovate bot restored the renovate/all-minor-patch-updates branch July 3, 2024 17:54
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Jul 3, 2024
@renovate renovate bot reopened this Jul 3, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch from ae385a3 to 5707e10 Compare July 3, 2024 17:56
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update dependency ws to v8.18.0 Jul 3, 2024
@renovate renovate bot changed the title chore(deps): update dependency ws to v8.18.0 chore(deps): update dependency ws to v8.18.0 - autoclosed Jul 4, 2024
@renovate renovate bot closed this Jul 4, 2024
@renovate renovate bot deleted the renovate/all-minor-patch-updates branch July 4, 2024 07:03
@renovate renovate bot restored the renovate/all-minor-patch-updates branch July 6, 2024 17:42
@renovate renovate bot changed the title chore(deps): update dependency ws to v8.18.0 - autoclosed chore(deps): update dependency ws to v8.18.0 Jul 6, 2024
@renovate renovate bot reopened this Jul 6, 2024
@renovate renovate bot changed the title chore(deps): update dependency ws to v8.18.0 chore(deps): update dependency ws to v8.18.0 - autoclosed Aug 15, 2024
@renovate renovate bot closed this Aug 15, 2024
@renovate renovate bot deleted the renovate/all-minor-patch-updates branch August 15, 2024 10:53
@renovate renovate bot changed the title chore(deps): update dependency ws to v8.18.0 - autoclosed chore(deps): update dependency ws to v8.18.0 Aug 15, 2024
@renovate renovate bot reopened this Aug 15, 2024
@renovate renovate bot restored the renovate/all-minor-patch-updates branch August 15, 2024 13:13
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch from 5707e10 to 0a23a0e Compare December 24, 2024 15:16
@renovate renovate bot changed the title chore(deps): update dependency ws to v8.18.0 fix(deps): update all non-major dependencies Dec 24, 2024
@bluecco bluecco merged commit e796dbd into develop Dec 24, 2024
1 check passed
@bluecco bluecco deleted the renovate/all-minor-patch-updates branch December 24, 2024 15:16
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.

2 participants