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 non-major dependencies #645

Merged
merged 1 commit into from
Apr 1, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 15, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/jest (source) 29.4.2 -> 29.5.0 age adoption passing confidence
@types/react (source) 18.0.28 -> 18.0.31 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.55.0 -> 5.57.0 age adoption passing confidence
@typescript-eslint/parser 5.55.0 -> 5.57.0 age adoption passing confidence
@vitest/ui 0.29.2 -> 0.29.8 age adoption passing confidence
caniuse-lite 1.0.30001466 -> 1.0.30001473 age adoption passing confidence
cypress 12.8.0 -> 12.9.0 age adoption passing confidence
eslint (source) 8.36.0 -> 8.37.0 age adoption passing confidence
joi 17.8.4 -> 17.9.1 age adoption passing confidence
prettier (source) 2.8.4 -> 2.8.7 age adoption passing confidence
swagger-ui-react 4.18.1 -> 4.18.2 age adoption passing confidence
tsup (source) 6.6.3 -> 6.7.0 age adoption passing confidence
type-fest 3.6.1 -> 3.7.2 age adoption passing confidence
typedoc (source) 0.23.26 -> 0.23.28 age adoption passing confidence
vite (source) 4.1.4 -> 4.2.1 age adoption passing confidence
vitest 0.29.2 -> 0.29.8 age adoption passing confidence

Release Notes

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

v5.57.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] simplify fixer and add support for double negation (#​6620) (81c8519)
  • eslint-plugin: correct crashes with getTypeArguments for ts < 3.7 (#​6767) (59eab58)
Features
  • eslint-plugin: [consistent-type-assertions] add suggestions for objectLiteralTypeAssertions (#​6642) (720e811)
  • eslint-plugin: [consistent-type-assertions] autofix angle bracket assertions to as (#​6641) (ad8ea64)
  • eslint-plugin: add no-duplicate-type-constituents rule (#​5728) (bc31078)

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.57.0

Compare Source

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

v5.56.0

Compare Source

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

vitest-dev/vitest

v0.29.8

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.29.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.29.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
browserslist/caniuse-lite

v1.0.30001473

Compare Source

v1.0.30001472

Compare Source

v1.0.30001470

Compare Source

v1.0.30001469

Compare Source

v1.0.30001468

Compare Source

v1.0.30001467

Compare Source

cypress-io/cypress

v12.9.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#&#8203;12-9-0

v12.8.1

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#&#8203;12-8-1

eslint/eslint

v8.37.0

Compare Source

Features

Bug Fixes

  • 619f3fd fix: correctly handle null default config in RuleTester (#​17023) (Brad Zacher)
  • 1fbf118 fix: getFirstToken/getLastToken on comment-only node (#​16889) (Francesco Trotta)
  • 129e252 fix: Fix typo in logical-assignment-operators rule description (#​17000) (Francesco Trotta)

Documentation

Chores

hapijs/joi

v17.9.1

Compare Source

v17.9.0

Compare Source

prettier/prettier

v2.8.7

Compare Source

diff

Allow multiple decorators on same getter/setter (#​14584 by @​fisker)
// Input
class A {
  @&#8203;decorator()
  get foo () {}
  
  @&#8203;decorator()
  set foo (value) {}
}

// Prettier 2.8.6
SyntaxError: Decorators cannot be applied to multiple get/set accessors of the same name. (5:3)
  3 |   get foo () {}
  4 |   
> 5 |   @&#8203;decorator()
    |   ^^^^^^^^^^^^
  6 |   set foo (value) {}
  7 | }

// Prettier 2.8.7
class A {
  @&#8203;decorator()
  get foo() {}

  @&#8203;decorator()
  set foo(value) {}
}

v2.8.6

Compare Source

diff

Allow decorators on private members and class expressions (#​14548 by @​fisker)
// Input
class A {
  @&#8203;decorator()
  #privateMethod () {}
}

// Prettier 2.8.5
SyntaxError: Decorators are not valid here. (2:3)
  1 | class A {
> 2 |   @&#8203;decorator()
    |   ^^^^^^^^^^^^
  3 |   #privateMethod () {}
  4 | }

// Prettier 2.8.6
class A {
  @&#8203;decorator()
  #privateMethod() {}
}

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 {
  @&#8203;(myDecoratorArray[0])
  greet() {}
}

// Prettier 2.8.4
class Person {
  @&#8203;myDecoratorArray[0]
  greet() {}
}

// Prettier 2.8.5
class Person {
  @&#8203;(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} />;
swagger-api/swagger-ui

v4.18.2: Swagger UI v4.18.2 Released!

Compare Source

Bug Fixes
egoist/tsup

v6.7.0

Compare Source

Features
sindresorhus/type-fest

v3.7.2

Compare Source

v3.7.1

Compare Source

v3.7.0

Compare Source

New types
Improvements
TypeStrong/TypeDoc

v0.23.28

Compare Source

Features
  • Added support for TypeScript 5.0, #​2201.
    • const type parameters.
    • JSDoc @overload tag.
    • JSDoc @satisfies tag.

v0.23.27

Compare Source

Features
  • Added --treatValidationWarningsAsErrors to treat only validation warnings as errors without treating all warnings as errors, #​2199.
Bug Fixes
  • Fixed a bug where optional properties were not appropriately marked as optional, #​2200.
  • Fixed shifted navigation pane on devices 1024px wide, #​2191.
  • Add missing @private and @protected tags to typedoc/tsdoc.json, #​2187.
Thanks!
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: Enabled.

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.

@changeset-bot
Copy link

changeset-bot bot commented Mar 15, 2023

⚠️ No Changeset found

Latest commit: 9952756

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.

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

@vercel
Copy link

vercel bot commented Mar 15, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
next-validations ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 1, 2023 7:04am
next-validations-demo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 1, 2023 7:04am

@what-the-diff
Copy link

what-the-diff bot commented Mar 15, 2023

  • Update @types/jest from 29.4.2 to 29.4.3
  • Update @vitest/ui from 0.29.2 to 0,29,3

@socket-security
Copy link

socket-security bot commented Mar 16, 2023

New dependency changes detected. Learn more about Socket for GitHub ↗︎


🚨 Potential security issues found in this pull request. To accept the risk, merge this PR and you will not be notified again.

Bot Commands

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of package-name@version specifiers. e.g. @SocketSecurity ignore [email protected] bar@* or ignore all packages with @SocketSecurity ignore-all

⚠️ Please accept the latest app permissions to ensure bot commands work properly. Accept the new permissions here.

📜 Install scripts

Install scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.

Packages should not be running non-essential scripts during install and there are often solutions to problems people solve with install scripts that can be run at publish time instead.

Package Script field Source
[email protected] (upgraded) postinstall example/package.json via @types/[email protected]
[email protected] (upgraded) postinstall package.json via @size-limit/[email protected], [email protected], [email protected], [email protected]
Pull request alert summary
Issue Status
Install scripts ⚠️ 2 issues
Native code ✅ 0 issues
Bin script shell injection ✅ 0 issues
Unresolved require ✅ 0 issues
Invalid package.json ✅ 0 issues
HTTP dependency ✅ 0 issues
Git dependency ✅ 0 issues
Potential typo squat ✅ 0 issues
Known Malware ✅ 0 issues
Telemetry ✅ 0 issues
Protestware/Troll package ✅ 0 issues

📊 Modified Dependency Overview:

➕ Added Package Capability Access +/- Transitive Count Publisher
@types/[email protected] eval, environment +21 types
⬆️ Updated Package Version Diff Capability Access +/- Transitive Count Publisher
[email protected] 12.8.0...12.9.0 eval, network, filesystem, shell, environment +1/-1 atofstryker
[email protected] 4.1.4...4.0.4 eval, network, filesystem, shell, environment +1/-23 vitebot
[email protected] 6.6.3...6.7.0 eval, network, filesystem, shell, environment +0/-0 egoist
[email protected] 3.6.1...3.7.2 None +0/-0 sindresorhus
[email protected] 17.8.4...17.9.1 None +0/-0 marsup
@typescript-eslint/[email protected] 5.55.0...5.57.0 filesystem, environment +1/-42 jameshenry
@typescript-eslint/[email protected] 5.55.0...5.57.0 filesystem, environment +4/-45 jameshenry
[email protected] 0.23.26...0.23.28 network, filesystem, shell, environment +0/-1 typedoc-bot

🚮 Removed packages: @types/[email protected], @vitest/[email protected], [email protected], [email protected], [email protected], [email protected], [email protected]

@vercel
Copy link

vercel bot commented Mar 16, 2023

Deployment failed with the following error:

Resource is limited - try again in 21 minutes (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link

vercel bot commented Mar 28, 2023

Deployment failed with the following error:

Resource is limited - try again in 35 minutes (more than 100, code: "api-deployments-free-per-day").

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c7dbf0c to 7952303 Compare March 28, 2023 21:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7952303 to 484bc50 Compare March 29, 2023 04:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 484bc50 to 0ffd119 Compare March 29, 2023 13:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0ffd119 to 42b1b56 Compare March 30, 2023 08:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 42b1b56 to 1d12526 Compare March 30, 2023 19:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1d12526 to 64cc2b1 Compare April 1, 2023 06:55
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