Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 31, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@socialgouv/eslint-config-react 1.97.3 -> 1.109.0 age adoption passing confidence
prettier (source) 2.4.1 -> 2.6.2 age adoption passing confidence

Release Notes

SocialGouv/linters

v1.109.0

Compare Source

Features
  • deps: update dependency eslint-plugin-import to ~2.26.0 (#​840) (ac46985)

v1.108.0

Compare Source

Features
  • deps: update dependency eslint-import-resolver-typescript to ~2.7.0 (#​837) (50bf839)

v1.107.0

Compare Source

Features
  • deps: update dependency eslint-config-prettier to ~8.5.0 (#​836) (954e3f5)

v1.106.0

Compare Source

Features
  • deps: update dependency eslint-plugin-react to ~7.29.0 (#​834) (2d97245)

v1.105.0

Compare Source

Features
  • deps: update dependency eslint-config-prettier to ~8.4.0 (#​832) (dc15c8c)

v1.104.0

Compare Source

Features
  • deps: update dependency eslint-plugin-jest to ~26.1.0 (#​831) (657e719)

v1.103.0

Compare Source

Features
  • deps: update dependency eslint-plugin-jest to v26 (#​829) (4bef6bc)

v1.102.0

Compare Source

Features
  • deps: update dependency eslint-plugin-jest to ~25.7.0 (#​828) (2ffae60)

v1.101.0

Compare Source

Features
  • deps: update dependency eslint-plugin-react to ~7.28.0 (#​827) (f0b7bbe)

v1.100.0

Compare Source

Features
  • deps: update dependency eslint-plugin-jest to ~25.3.0 (#​815) (8dcb8e2)

1.99.1 (2021-11-21)

Bug Fixes
  • deps: update dependency eslint-plugin-react to ~7.27.1 (#​813) (ff17fc9)

v1.99.1

Compare Source

Bug Fixes
  • deps: update dependency eslint-plugin-react to ~7.27.1 (#​813) (ff17fc9)

v1.99.0

Compare Source

Features
  • deps: update dependency eslint-plugin-jsx-a11y to ~6.5.1 (#​805) (693ab1c)

v1.98.0

Compare Source

Features
  • deps: update dependency eslint-plugin-react to ~7.27.0 (#​804) (64af553)

1.97.3 (2021-11-12)

Bug Fixes
  • deps: update dependency eslint-plugin-import to ~2.25.3 (#​803) (809cb05)

1.97.2 (2021-11-10)

Bug Fixes
  • deps: update dependency eslint-plugin-jest to ~25.2.4 (#​800) (6af3601)

1.97.1 (2021-11-06)

Bug Fixes
  • deps: update dependency eslint-plugin-jest to ~25.2.3 (#​799) (47f32df)
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


Configuration

📅 Schedule: "before 3am on the first day of the month" in timezone Europe/Paris.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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, click this checkbox.

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

@codecov-commenter
Copy link

codecov-commenter commented Dec 31, 2021

Codecov Report

Merging #68 (7123abc) into master (cc18c60) will not change coverage.
The diff coverage is 90.00%.

@@           Coverage Diff           @@
##           master      #68   +/-   ##
=======================================
  Coverage   85.00%   85.00%           
=======================================
  Files           1        1           
  Lines          60       60           
  Branches       16       16           
=======================================
  Hits           51       51           
  Misses          1        1           
  Partials        8        8           
Impacted Files Coverage Δ
src/index.ts 85.00% <90.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 182c147...7123abc. Read the comment docs.

@renovate renovate bot force-pushed the renovate/all-devdependencies-minor-patch branch from 90bdb77 to e0251aa Compare January 18, 2022 03:08
@renovate renovate bot force-pushed the renovate/all-devdependencies-minor-patch branch from e0251aa to 766cae0 Compare January 26, 2022 18:30
@renovate renovate bot force-pushed the renovate/all-devdependencies-minor-patch branch from 766cae0 to 0d71d37 Compare February 9, 2022 00:19
@renovate renovate bot force-pushed the renovate/all-devdependencies-minor-patch branch from 0d71d37 to 4b3550a Compare March 7, 2022 11:03
@renovate renovate bot force-pushed the renovate/all-devdependencies-minor-patch branch from 4b3550a to 205bc0e Compare March 16, 2022 05:18
@renovate renovate bot force-pushed the renovate/all-devdependencies-minor-patch branch 2 times, most recently from c3c0b69 to c410773 Compare March 25, 2022 17:02
@renovate renovate bot force-pushed the renovate/all-devdependencies-minor-patch branch from c410773 to 7123abc Compare April 2, 2022 19:53
@renovate renovate bot force-pushed the renovate/all-devdependencies-minor-patch branch from 7123abc to fe34ef8 Compare April 8, 2022 01:13
@revolunet revolunet merged commit 2a261e9 into master Apr 11, 2022
@renovate renovate bot deleted the renovate/all-devdependencies-minor-patch branch April 11, 2022 21:44
@github-actions
Copy link

🎉 This PR is included in version 1.4.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

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.

3 participants