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 devDependencies (non-major) #1683

Merged
merged 1 commit into from
Mar 21, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 20, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-sdk/util-stream-node (source) ^3.272.0 -> ^3.295.0 age adoption passing confidence
@types/aws-lambda (source) ^8.10.111 -> ^8.10.114 age adoption passing confidence
@types/jest (source) ^29.4.0 -> ^29.5.0 age adoption passing confidence
@types/node (source) ^18.15.0 -> ^18.15.5 age adoption passing confidence
@types/yargs (source) ^17.0.22 -> ^17.0.23 age adoption passing confidence
@typescript-eslint/eslint-plugin ^5.54.1 -> ^5.56.0 age adoption passing confidence
@typescript-eslint/parser ^5.54.1 -> ^5.56.0 age adoption passing confidence
aws-sdk-client-mock ^2.0.1 -> ^2.1.1 age adoption passing confidence
aws-sdk-client-mock-jest ^2.0.1 -> ^2.1.1 age adoption passing confidence
eslint-plugin-functional ^5.0.6 -> ^5.0.7 age adoption passing confidence
prettier (source) ^2.8.4 -> ^2.8.5 age adoption passing confidence
webpack ^5.76.1 -> ^5.76.2 age adoption passing confidence

Release Notes

aws/aws-sdk-js-v3

v3.295.0

Compare Source

Note: Version bump only for package @​aws-sdk/util-stream-node

v3.292.0

Compare Source

Note: Version bump only for package @​aws-sdk/util-stream-node

v3.290.0

Compare Source

Note: Version bump only for package @​aws-sdk/util-stream-node

v3.289.0

Compare Source

Note: Version bump only for package @​aws-sdk/util-stream-node

v3.282.0

Compare Source

Note: Version bump only for package @​aws-sdk/util-stream-node

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)

v5.55.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-confusing-void-expression] check sequence expressions for void is in last position (#​6597) (d73d7d3)
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] fixer should handle parentheses (#​6569) (2d8c196)
Features

5.54.1 (2023-03-06)

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

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

v5.56.0

Compare Source

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

v5.55.0

Compare Source

Features

5.54.1 (2023-03-06)

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

m-radzikowski/aws-sdk-client-mock

v2.1.1

Compare Source

v2.1.0

Compare Source

Features
2.0.1 (2022-11-27)
Bug Fixes
eslint-functional/eslint-plugin-functional

v5.0.7

Compare Source

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} />;
webpack/webpack

v5.76.2

Compare Source

Bugfixes

Performance

Developer Experience

New Contributors

Full Changelog: webpack/webpack@v5.76.1...v5.76.2


Configuration

📅 Schedule: Branch creation - "before 2am on monday" (UTC), 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.

@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 6 times, most recently from c1e67e9 to 7ec964a Compare March 21, 2023 03:53
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 7ec964a to 3774f98 Compare March 21, 2023 06:40
@amarthadan amarthadan merged commit df3b893 into master Mar 21, 2023
@amarthadan amarthadan deleted the renovate/devdependencies-(non-major) branch March 21, 2023 07:01
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