Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 26, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) ^2.3.1 -> ^2.6.2 age adoption passing confidence

Release Notes

prettier/prettier

v2.6.2

Compare Source

diff

Fix LESS/SCSS format error (#​12536 by @​fisker)
// Input
.background-gradient(@​cut) {
    background: linear-gradient(
        to right,
        @​white 0%,
        @​white (@​cut - 0.01%),
        @​portal-background @​cut,
        @​portal-background 100%
    );
}

// Prettier 2.6.1
TypeError: Cannot read properties of undefined (reading 'endOffset')

// Prettier 2.6.2
.background-gradient(@​cut) {
  background: linear-gradient(
    to right,
    @​white 0%,
    @​white (@​cut - 0.01%),
    @​portal-background @​cut,
    @​portal-background 100%
  );
}
Update meriyah to fix several bugs (#​12567 by @​fisker, fixes in meriyah by @​3cp)

Fixes bugs when parsing following valid code:

foo(await bar());
const regex = /.*/ms;
const element = <p>{/w/.test(s)}</p>;
class A extends B {
  #privateMethod() {
    super.method();
  }
}

v2.6.1

Compare Source

diff

Ignore loglevel when printing information (#​12477 by @​fisker)

v2.6.0

Compare Source

prettier --loglevel silent --find-config-path index.js

v2.5.1

Compare Source

diff

Improve formatting for empty tuple types (#​11884 by @​sosukesuzuki)
// Input
type Foo =
  Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends []
    ? Foo3
    : Foo4;

// Prettier 2.5.0
type Foo = Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends [

]
  ? Foo3
  : Foo4;

// Prettier 2.5.0 (tailingCommma = all)
// Invalid TypeScript code
type Foo = Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends [
  ,
]
  ? Foo3
  : Foo4;

// Prettier 2.5.1
type Foo =
  Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends []
    ? Foo3
    : Foo4;
Fix compatibility with Jest inline snapshot test (#​11892 by @​fisker)

A internal change in Prettier@v2.5.0 accidentally breaks the Jest inline snapshot test.

Support Glimmer's named blocks (#​11899 by @​duailibe)

Prettier already supported this feature, but it converted empty named blocks to self-closing, which is not supported by the Glimmer compiler.

See: Glimmer's named blocks.

// Input
<Component>
  <:named></:named>
</Component>

// Prettier 2.5.0
<Component>
  <:named />
</Component>

// Prettier 2.5.1
<Component>
  <:named></:named>
</Component>

v2.5.0

Compare Source

diff

🔗 Release Notes

v2.4.1

Compare Source

diff

Fix wildcard syntax in @forward (#​11482) (#​11487 by @​niksy)
// Input
@&#8203;forward "library" as btn-*;

// Prettier 2.4.0
@&#8203;forward "library" as btn- *;

// Prettier 2.4.1
@&#8203;forward "library" as btn-*;
Add new CLI option debug-print-ast (#​11514 by @​sosukesuzuki)

A new --debug-print-ast CLI flag for debugging.

v2.4.0

Compare Source

diff

🔗 Release Notes

v2.3.2

Compare Source

diff

Fix failure on dir with trailing slash (#​11000 by @​fisker)
$ ls
1.js  1.unknown

Configuration

📅 Schedule: "after 10pm every weekday,before 4am every weekday,every weekend" in timezone UTC.

🚦 Automerge: Disabled due to failing status checks.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/prettier-2.x branch from 2965133 to 648a8df Compare October 18, 2021 23:22
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^2.3.2 chore(deps): update dependency prettier to ^2.4.1 Oct 18, 2021
@renovate renovate bot force-pushed the renovate/prettier-2.x branch from 648a8df to b841cc9 Compare March 7, 2022 09:13
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^2.4.1 chore(deps): update dependency prettier to ^2.5.1 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/prettier-2.x branch from b841cc9 to 3cee07e Compare March 26, 2022 14:28
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^2.5.1 chore(deps): update dependency prettier to ^2.6.1 Mar 26, 2022
@renovate renovate bot force-pushed the renovate/prettier-2.x branch from 3cee07e to 8a79b5e Compare April 25, 2022 02:51
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^2.6.1 chore(deps): update dependency prettier to ^2.6.2 Apr 25, 2022
@renovate
Copy link
Contributor Author

renovate bot commented Apr 25, 2022

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm notice 
npm notice New minor version of npm available! 8.5.0 -> 8.7.0
npm notice Changelog: <https://github.com/npm/cli/releases/tag/v8.7.0>
npm notice Run `npm install -g npm@8.7.0` to update!
npm notice 
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: @angular/compiler-cli@7.2.15
npm ERR! Found: @angular/compiler@8.2.14
npm ERR! node_modules/@angular/compiler
npm ERR!   @angular/compiler@"8.2.14" from the root project
npm ERR!   peer @angular/compiler@"8.2.14" from @angular/platform-browser-dynamic@8.2.14
npm ERR!   node_modules/@angular/platform-browser-dynamic
npm ERR!     @angular/platform-browser-dynamic@"8.2.14" from the root project
npm ERR!     peer @angular/platform-browser-dynamic@">=2.0.0" from jest-preset-angular@7.1.1
npm ERR!     node_modules/jest-preset-angular
npm ERR!       jest-preset-angular@"^7.0.1" from @angular-builders/jest@7.4.2
npm ERR!       node_modules/@angular-builders/jest
npm ERR!         dev @angular-builders/jest@"7.4.2" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer @angular/compiler@"7.2.15" from @angular/compiler-cli@7.2.15
npm ERR! node_modules/@angular/compiler-cli
npm ERR!   dev @angular/compiler-cli@"7.2.15" from the root project
npm ERR!   peer @angular/compiler-cli@">=5.0.0 <8.0.0 || ^7.0.0-beta.0" from @ngtools/webpack@7.3.9
npm ERR!   node_modules/@ngtools/webpack
npm ERR!     @ngtools/webpack@"7.3.9" from @angular-devkit/build-angular@0.13.9
npm ERR!     node_modules/@angular-devkit/build-angular
npm ERR!       dev @angular-devkit/build-angular@"0.13.9" from the root project
npm ERR!       1 more (@angular-builders/jest)
npm ERR!   1 more (ng-packagr)
npm ERR! 
npm ERR! Conflicting peer dependency: @angular/compiler@7.2.15
npm ERR! node_modules/@angular/compiler
npm ERR!   peer @angular/compiler@"7.2.15" from @angular/compiler-cli@7.2.15
npm ERR!   node_modules/@angular/compiler-cli
npm ERR!     dev @angular/compiler-cli@"7.2.15" from the root project
npm ERR!     peer @angular/compiler-cli@">=5.0.0 <8.0.0 || ^7.0.0-beta.0" from @ngtools/webpack@7.3.9
npm ERR!     node_modules/@ngtools/webpack
npm ERR!       @ngtools/webpack@"7.3.9" from @angular-devkit/build-angular@0.13.9
npm ERR!       node_modules/@angular-devkit/build-angular
npm ERR!         dev @angular-devkit/build-angular@"0.13.9" from the root project
npm ERR!         1 more (@angular-builders/jest)
npm ERR!     1 more (ng-packagr)
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate-cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate-cache/others/npm/_logs/2022-04-25T02_50_54_176Z-debug-0.log

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.

2 participants