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

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

Merged
merged 1 commit into from
Mar 20, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 13, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/mdx (source) ^0.18.0 -> ^0.18.1 age adoption passing confidence
@astrojs/tailwind (source) ^3.1.0 -> ^3.1.1 age adoption passing confidence
@swc/core (source) ^1.3.40 -> ^1.3.41 age adoption passing confidence
@tanstack/react-query (source) ^4.26.1 -> ^4.28.0 age adoption passing confidence
@trpc/client (source) ^10.15.0 -> ^10.17.0 age adoption passing confidence
@trpc/next (source) ^10.15.0 -> ^10.17.0 age adoption passing confidence
@trpc/react-query (source) ^10.15.0 -> ^10.17.0 age adoption passing confidence
@trpc/server (source) ^10.15.0 -> ^10.17.0 age adoption passing confidence
@types/node (source) ^18.15.1 -> ^18.15.4 age adoption passing confidence
@typescript-eslint/eslint-plugin ^5.55.0 -> ^5.56.0 age adoption passing confidence
@typescript-eslint/parser ^5.55.0 -> ^5.56.0 age adoption passing confidence
@yarnpkg/cli-dist ^3.4.1 -> ^3.5.0 age adoption passing confidence
astro (source) ^2.1.2 -> ^2.1.3 age adoption passing confidence
astro-eslint-parser ^0.12.0 -> ^0.13.0 age adoption passing confidence
eslint-config-prettier 8.7.0 -> 8.8.0 age adoption passing confidence
eslint-plugin-typescript-sort-keys ^2.1.0 -> ^2.3.0 age adoption passing confidence
i18next (source) ^22.4.11 -> ^22.4.12 age adoption passing confidence
prettier (source) ^2.8.4 -> ^2.8.5 age adoption passing confidence
tsup (source) ^6.6.3 -> ^6.7.0 age adoption passing confidence
vite (source) ^4.1.4 -> ^4.2.1 age adoption passing confidence
vitest ^0.29.2 -> ^0.29.7 age adoption passing confidence
yarn 3.4.1 -> 3.5.0 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/mdx)

v0.18.1

Compare Source

Patch Changes
withastro/astro (@​astrojs/tailwind)

v3.1.1

Compare Source

Patch Changes
swc-project/swc

v1.3.41

Compare Source

Bug Fixes
Performance
Refactor
  • general: Fix lints using clippy from nightly-2023-03-13 (#​6920) (963c460)
tanstack/query

v4.28.0

Compare Source

Version 4.28.0 - 3/20/2023, 8:33 AM

Changes
Feat
  • react-query: preserve "use client" directives (#​5161) (017867e) by Fredrik Höglund
Packages

v4.27.0

Compare Source

Version 4.27.0 - 3/17/2023, 3:43 PM

Changes
Feat
  • react-query-devtools: enable setting loading/error via devtools (#​4352) (b7089d1) by Paul Sachs
Fix
  • eslint-plugin: ignore internal properties (#​5119) (33338ad) by Eliya Cohen
Chore
Docs
Packages
trpc/trpc

v10.17.0

Compare Source

What's Changed
New Contributors

Full Changelog: trpc/trpc@v10.16.0...v10.17.0

v10.16.0

Compare Source

What's Changed
New Contributors

Full Changelog: trpc/trpc@v10.15.0...v10.16.0

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.56.0

Compare Source

Bug Fixes
  • eslint-plugin: [member-ordering] check order when optionalityOrder is present with no optional members (#​6619) (6aff431)
  • eslint-plugin: [no-misused-promises] avoid unnecessary calls to getContextualType (#​6193) (745cfe4)
  • eslint-plugin: [no-misused-promises] fix incorrect detection of void functions in JSX attributes (#​6638) (9e41cee)
  • eslint-plugin: [strict-boolean-expression] support falsy and truthy literals simultaneously (#​6672) (62ef487)
  • eslint-plugin: [strict-boolean-expressions] handle truthy enums (#​6618) (0d0639f)
  • eslint-plugin: add TSPropertySignature with TSFunctionType annotation to typeMethod selector (#​6645) (3fc5c63)
Features
  • eslint-plugin: add allowNever support to restrict-template-expressions (#​6554) (423f164)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.56.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

yarnpkg/berry

v3.5.0

withastro/astro (astro)

v2.1.3

Compare Source

Patch Changes
ota-meshi/astro-eslint-parser

v0.13.0

Compare Source

Minor Changes
prettier/eslint-config-prettier

v8.8.0

Compare Source

infctr/eslint-plugin-typescript-sort-keys

v2.3.0

Compare Source

Changed
  • Bump deps to fix security vulnerabilities

v2.2.0

Compare Source

Changed
  • Bump peer dependencies
i18next/i18next

v22.4.12

Compare Source

  • fix: getBestMatchFromCodes when dev is a supported lng 1927
prettier/prettier

v2.8.5

Compare Source

diff

Support TypeScript 5.0 (#​14391 by @​fisker, #​13819 by @​fisker, @​sosukesuzuki)

TypeScript 5.0 introduces two new syntactic features:

  • const modifiers for type parameters
  • export type * declarations
Add missing parentheses for decorator (#​14393 by @​fisker)
// Input
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}

// Prettier 2.8.4
class Person {
  @​myDecoratorArray[0]
  greet() {}
}

// Prettier 2.8.5
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}
Add parentheses for TypeofTypeAnnotation to improve readability (#​14458 by @​fisker)
// Input
type A = (typeof node.children)[];

// Prettier 2.8.4
type A = typeof node.children[];

// Prettier 2.8.5
type A = (typeof node.children)[];
Support max_line_length=off when parsing .editorconfig (#​14516 by @​josephfrazier)

If an .editorconfig file is in your project and it sets max_line_length=off for the file you're formatting,
it will be interpreted as a printWidth of Infinity rather than being ignored
(which previously resulted in the default printWidth of 80 being applied, if not overridden by Prettier-specific configuration).

<!-- Input -->
<div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/>

<!-- Prettier 2.8.4 -->
<div
  className="HelloWorld"
  title={`You are visitor number ${num}`}
  onMouseOver={onMouseOver}
/>;

<!-- Prettier 2.8.5 -->
<div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />;
egoist/tsup

v6.7.0

Compare Source

Features
vitejs/vite

v4.2.1

Compare Source

v4.2.0

Compare Source

Vite 4.2 is out!

Support env variables replacement in HTML files

Vite now supports replacing env variables in HTML files. Any properties in import.meta.env can be used in HTML files with a special %ENV_NAME% syntax:

<h1>Vite is running in %MODE%</h1>
<p>Using data from %VITE_API_URL%</p>
Sourcemaps improvements

The Chrome Dev Tools team has been working to improve the DX of Vite and Vite-powered frameworks in the dev tools. Vite 4.2 brings an improved experience and tools for framework authors to hide 3rd party code and build artifacts from the user from console log traces using server.sourcemapIgnoreList and build.rollupOptions.output.sourcemapIgnoreList.

ESM subpath imports

Vite 4.2 now supports subpath imports, thanks to @​lukeed05's resolve.exports library.

TypeScript 5 support

Vite 4.2 also supports TypeScript 5's tsconfig extends array format, thanks to tsconfck.

esbuild 0.17

esbuild v0.17.0 improved the design of its incremental, watch, and serve APIs. Check out #​11908 for the rationale of why we didn't consider the backward-incompatible changes breaking for our use cases. The updated esbuild design now allows Vite to properly cancel in-fly builds and improve server restarts.

Use Rollup types from the vite package

Expose Rollup types as a namespace. This is helpful to avoid type conflicts because of different versions of Rollup types in environments like vite-ecosystem-ci (#​12316).

import type { Rollup } from 'vite'
Português Docs Translation

The Vite documentation is now translated to Português at pt.vitejs.dev thanks to Nazaré Da Piedade .

Features
Bug Fixes

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 added the dependencies Update one or more dependencies version label Mar 13, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 6166616 to 1b65893 Compare March 20, 2023 20:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1b65893 to 69dff71 Compare March 20, 2023 21:16
@Ecorte Ecorte merged commit 7534586 into main Mar 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Update one or more dependencies version
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant