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 dependencies #73

Merged
merged 3 commits into from
Apr 17, 2023
Merged

fix(deps): update all dependencies #73

merged 3 commits into from
Apr 17, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 27, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@formatjs/intl-numberformat 8.3.5 -> 8.4.0 age adoption passing confidence dependencies minor
@types/lodash (source) 4.14.191 -> 4.14.194 age adoption passing confidence dependencies patch
@types/node (source) 18.15.1 -> 18.15.11 age adoption passing confidence dependencies patch
@types/node (source) 18.15.1 -> 18.15.11 age adoption passing confidence devDependencies patch
@types/react (source) 18.0.28 -> 18.0.35 age adoption passing confidence devDependencies patch
@types/react (source) 18.0.28 -> 18.0.35 age adoption passing confidence dependencies patch
joi 17.8.3 -> 17.9.1 age adoption passing confidence dependencies minor
node-mocks-http 1.12.1 -> 1.12.2 age adoption passing confidence devDependencies patch
prettier (source) 2.8.4 -> 2.8.7 age adoption passing confidence devDependencies patch
react-bootstrap (source) 2.7.2 -> 2.7.4 age adoption passing confidence dependencies patch
react-query 3.39.3 -> 4.0.5 age adoption passing confidence dependencies replacement
rimraf 4.4.0 -> 5.0.0 age adoption passing confidence devDependencies major
sqlite3 5.1.4 -> 5.1.6 age adoption passing confidence dependencies patch
tsup (source) 6.6.3 -> 6.7.0 age adoption passing confidence devDependencies minor
turbo (source) 1.8.3 -> 1.9.1 age adoption passing confidence devDependencies minor
typescript (source) 4.9.5 -> 5.0.4 age adoption passing confidence devDependencies major
vite (source) 4.1.4 -> 4.2.1 age adoption passing confidence devDependencies minor

This is a special PR that replaces react-query with the community suggested minimal stable replacement version.


Release Notes

formatjs/formatjs

v8.4.0

Compare Source

Features
  • upgrade TS support to v5 (2c43dc1)
hapijs/joi

v17.9.1

Compare Source

v17.9.0

Compare Source

v17.8.4

Compare Source

howardabrams/node-mocks-http

v1.12.2

Compare Source

prettier/prettier

v2.8.7

Compare Source

diff

Allow multiple decorators on same getter/setter (#​14584 by @​fisker)
// Input
class A {
  @​decorator()
  get foo () {}
  
  @​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 |   @​decorator()
    |   ^^^^^^^^^^^^
  6 |   set foo (value) {}
  7 | }

// Prettier 2.8.7
class A {
  @​decorator()
  get foo() {}

  @​decorator()
  set foo(value) {}
}

v2.8.6

Compare Source

diff

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

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

// Prettier 2.8.6
class A {
  @​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 {
  @​(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} />;
react-bootstrap/react-bootstrap

v2.7.4

Compare Source

Bug Fixes

v2.7.3

Compare Source

Bug Fixes
  • ToastContainer: allow setting containerPosition without position (#​6574) (41ec134)
  • switch from defaultProps to JS default params (#​6568) (1d5b726)
isaacs/rimraf

v5.0.0

Compare Source

v4.4.1

Compare Source

TryGhost/node-sqlite3

v5.1.6

Compare Source

What's Changed
New Contributors

Full Changelog: TryGhost/node-sqlite3@v5.1.5...v5.1.6

v5.1.5

Compare Source

What's Changed

Full Changelog: TryGhost/node-sqlite3@v5.1.4...v5.1.5

egoist/tsup

v6.7.0

Compare Source

Features
vercel/turbo

v1.9.1: Turborepo v1.9.1

Compare Source

What's Changed

Changelog

Full Changelog: vercel/turbo@v1.9.0...v1.9.1

v1.9.0: Turborepo v1.9.0

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turbo@v1.8.8...v1.9.0

v1.8.8: Turborepo v1.8.8

Compare Source

What's Changed

Changelog

Full Changelog: vercel/turbo@v1.8.7...v1.8.8

v1.8.7: Turborepo v1.8.7

Compare Source

What's Changed

Changelog

Full Changelog: https://github.com/vercel/turbo/compare/v1.8.6.


Configuration

📅 Schedule: Branch creation - "before 3am 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/all branch 9 times, most recently from 8c0a38a to 6a438ba Compare April 2, 2023 08:16
@renovate renovate bot force-pushed the renovate/all branch 8 times, most recently from b387cc0 to 35e3967 Compare April 10, 2023 07:11
@renovate renovate bot force-pushed the renovate/all branch 11 times, most recently from 164819c to e855be0 Compare April 17, 2023 07:52
@renovate renovate bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies Apr 17, 2023
@xballoy xballoy merged commit 20fce57 into main Apr 17, 2023
@xballoy xballoy deleted the renovate/all branch April 17, 2023 13:43
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.

None yet

1 participant