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 dependencies (patch) - autoclosed #510

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 20, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) 17.0.12 -> 17.0.45 age adoption passing confidence
@types/react (source) 17.0.53 -> 17.0.64 age adoption passing confidence
autoprefixer 10.4.13 -> 10.4.15 age adoption passing confidence
jsonwebtoken 9.0.0 -> 9.0.1 age adoption passing confidence
node-mocks-http 1.12.1 -> 1.12.2 age adoption passing confidence
node-talisman 1.29.7 -> 1.29.10 age adoption passing confidence
postcss (source) 8.4.21 -> 8.4.28 age adoption passing confidence
prettier (source) 2.8.4 -> 2.8.8 age adoption passing confidence
tailwindcss (source) 3.2.6 -> 3.2.7 age adoption passing confidence
whatwg-fetch 3.6.2 -> 3.6.17 age adoption passing confidence
yarn 3.5.0 -> 3.5.1 age adoption passing confidence

Release Notes

postcss/autoprefixer (autoprefixer)

v10.4.15

Compare Source

  • Fixed ::backdrop prefixes (by 一丝).
  • Fixed docs (by Christian Oliff).

v10.4.14

Compare Source

  • Improved startup time and reduced JS bundle size (by Kārlis Gaņģis).
auth0/node-jsonwebtoken (jsonwebtoken)

v9.0.1

Compare Source

  • fix(stubs): allow decode method to be stubbed
howardabrams/node-mocks-http (node-mocks-http)

v1.12.2

Compare Source

pgmanutd/node-talisman (node-talisman)

v1.29.10

Compare Source

Builds

Commits

  • f7557be: 1.29.10 (github-actions)

v1.29.9

Compare Source

Builds

Commits

v1.29.8

Compare Source

Builds

Commits

  • 45cb840: Update README.md (Prashant Goel)
  • d717b5d: 1.29.8 (github-actions)
postcss/postcss (postcss)

v8.4.28

Compare Source

  • Fixed Root.source.end for better source map (by Romain Menke).
  • Fixed Result.root types when process() has no parser.

v8.4.27

Compare Source

  • Fixed Container clone methods types.

v8.4.26

Compare Source

  • Fixed clone methods types.

v8.4.25

Compare Source

v8.4.24

Compare Source

  • Fixed Plugin types.

v8.4.23

Compare Source

  • Fixed warnings in TypeDoc.

v8.4.22

Compare Source

  • Fixed TypeScript support with node16 (by Remco Haszing).
prettier/prettier (prettier)

v2.8.8

Compare Source

This version is a republished version of v2.8.7.
A bad version was accidentally published and it can't be unpublished, apologies for the churn.

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} />;
tailwindlabs/tailwindcss (tailwindcss)

v3.2.7

Compare Source

Fixed
  • Fix use of :where(.btn) when matching !btn (#​10601)
  • Revert including outline-color in transition and transition-colors by default (#​10604)
github/fetch (whatwg-fetch)

v3.6.17

Compare Source

v3.6.16

Compare Source

v3.6.15

Compare Source

v3.6.14

Compare Source

v3.6.13

Compare Source

v3.6.12

Compare Source

v3.6.11

Compare Source

v3.6.10

Compare Source

v3.6.9

Compare Source

v3.6.8

Compare Source

v3.6.7

Compare Source

v3.6.6

Compare Source

v3.6.5

Compare Source

v3.6.4

Compare Source

v3.6.3

Compare Source

yarnpkg/berry (yarn)

v3.5.1

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" in timezone Europe/Paris, 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.

@socket-security
Copy link

socket-security bot commented Feb 20, 2023

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

@renovate renovate bot changed the title chore(deps): update dependency tailwindcss to v3.2.7 chore(deps): update all dependencies (patch) Mar 9, 2023
@renovate renovate bot changed the title chore(deps): update all dependencies (patch) chore(deps): update all dependencies (patch) - autoclosed Aug 17, 2023
@renovate renovate bot closed this Aug 17, 2023
@renovate renovate bot deleted the renovate/patch-all branch August 17, 2023 13:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants