Skip to content
This repository was archived by the owner on Apr 16, 2022. It is now read-only.
/ bot Public archive

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 9, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) 2.3.2 -> 2.6.2 age adoption passing confidence
typescript (source) 4.2.4 -> 4.6.3 age adoption passing confidence
xo 0.39.1 -> 0.48.0 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

Microsoft/TypeScript

v4.6.3

Compare Source

This release includes fixes for

For the complete list of fixed issues, check out the

Downloads are available on:

v4.6.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.5.5

Compare Source

This patch release includes a number of fixes to language service crashes and assertion violations, along with improvements to JSX attribute snippets.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.5.4

Compare Source

This patch release includes a fix for incorrectly offering up JSX attribute snippet completions at the beginning of a tag name.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.5.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.4.4

Compare Source

This patch release contains fixes for a performance regression in --build mode by only calling realpath on package.json files only when those files are known to exist on disk, and to only perform this work under --watch mode.


For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.4.3

Compare Source

This patch release contains a fix for leaking file watchers on package.json, and a minor fix for completions in JavaScript files.


For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.4.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.3.5

Compare Source

This release contains a bug fix for auto-imports on JSX components in the TypeScript language service. See the relevant change for more details.

v4.3.4

Compare Source

This release

  • adds an optional getCustomTransformers method to the SolutionBuilderHost* APIs
  • uses the transforms given by getCustomTransformers in Builder Program instances when running emit() methods in cases where customTransforms are not given.

See the change for more details

v4.3.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.3.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

xojs/xo

v0.48.0

Compare Source

New rules
TypeScript-only

v0.47.0

Compare Source

New rules
Improvements

v0.46.4

Compare Source

v0.46.3

Compare Source

  • Fix an issue with npm not including bundledDependencies when publishing.

v0.46.2

Compare Source

  • Fix an issue with importing a dependency 653887a

v0.46.1

Compare Source

  • Fix an issue with npm not including bundledDependencies when publishing.

v0.46.0

Compare Source

Breaking
New rules
Improvements
Fixes

v0.45.0

Compare Source

New rules
Improvements
  • Replace Prettier's jsxBracketSameLine option with bracketSameLine (#​609) 506c151
  • Enable import/named rule for JavaScript (#​601) 623f259

v0.44.0

Compare Source

New rules
Improvements
Fixes

v0.43.0

Compare Source

Improvements
  • Enforce importing process and Buffer in Node.js explicitly 9f40074
    • This is the recommendation in the Node.js docs.
  • Upgrade dependencies f2c5041
Fixes
  • Make cache directory be relative to cwd (#​582) 512291b
    • This fixes editor integration.

v0.42.0

Compare Source

New rules
Improvements

v0.41.0

Compare Source

Breaking

  • XO can no longer be installed globally.
    • It caused too many problems. Instead, you can run the local XO binary with $ npx xo.
  • XO now enforces trailing comma in multiline statements.
  • Change operator-linebreak rule to enforce operators before.
    • This way is more readable.

New rules

v0.40.3

Compare Source

v0.40.2

Compare Source

v0.40.1

Compare Source

v0.40.0

Compare Source

Breaking
  • XO now enforces that your project is ESM
    If you cannot yet move to ESM, I recommend staying on XO 0.39 for now.
  • Require Node.js 12.20 cc06c3c
New rules
Meta
  • Move from deprecated ESLint.CLIEngine to ESLint (#​534) 0480d80
    This should hopefully resolve a bunch of issues.

Configuration

📅 Schedule: "before 2am" (UTC).

🚦 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.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label May 9, 2021
@codecov
Copy link

codecov bot commented May 9, 2021

Codecov Report

Merging #995 (128a42a) into master (7c0063d) will not change coverage.
The diff coverage is n/a.

@@          Coverage Diff           @@
##           master    #995   +/-   ##
======================================
  Coverage    6.51%   6.51%           
======================================
  Files         114     114           
  Lines        2010    2010           
  Branches      292     292           
======================================
  Hits          131     131           
  Misses       1871    1871           
  Partials        8       8           

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 7c0063d...128a42a. Read the comment docs.

@renovate renovate bot changed the title build(deps): update dependency xo to v0.40.0 build(deps): update dependency xo to v0.40.1 May 11, 2021
@renovate renovate bot force-pushed the renovate/typescript-xo branch from 0201855 to d1d6928 Compare May 11, 2021 13:23
@renovate renovate bot force-pushed the renovate/typescript-xo branch from d1d6928 to 197ac88 Compare May 26, 2021 18:58
@renovate renovate bot changed the title build(deps): update dependency xo to v0.40.1 build(deps): update typescript-xo (minor) May 26, 2021
@renovate
Copy link
Contributor Author

renovate bot commented May 26, 2021

⚠️ 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 check 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: yarn.lock

@renovate renovate bot force-pushed the renovate/typescript-xo branch 2 times, most recently from 40b2a39 to fb79b3a Compare June 2, 2021 10:13
@jonahsnider jonahsnider enabled auto-merge (squash) June 13, 2021 06:24
@renovate renovate bot force-pushed the renovate/typescript-xo branch 4 times, most recently from 8cf5d6f to 773fcf9 Compare June 21, 2021 10:18
@renovate renovate bot force-pushed the renovate/typescript-xo branch 2 times, most recently from ad7172d to cca32d1 Compare July 5, 2021 09:09
@renovate renovate bot force-pushed the renovate/typescript-xo branch from cca32d1 to b019b8b Compare July 9, 2021 01:49
@renovate renovate bot force-pushed the renovate/typescript-xo branch from b019b8b to ced4974 Compare July 16, 2021 17:24
@renovate renovate bot force-pushed the renovate/typescript-xo branch 3 times, most recently from f1916e8 to c8d4aad Compare August 3, 2021 15:17
@renovate renovate bot force-pushed the renovate/typescript-xo branch 3 times, most recently from 0f8c4ed to ae3d16e Compare August 8, 2021 11:48
@renovate renovate bot force-pushed the renovate/typescript-xo branch 2 times, most recently from 7862272 to 3a1f88a Compare August 26, 2021 22:25
@renovate renovate bot force-pushed the renovate/typescript-xo branch 4 times, most recently from 5ed44cf to cae013e Compare September 10, 2021 21:52
@renovate renovate bot force-pushed the renovate/typescript-xo branch 2 times, most recently from 4f59a5a to b71ac55 Compare January 15, 2022 02:20
@renovate renovate bot force-pushed the renovate/typescript-xo branch 3 times, most recently from 56dd306 to f7e13b1 Compare January 27, 2022 17:04
@renovate renovate bot force-pushed the renovate/typescript-xo branch 4 times, most recently from 30f3250 to b5bb1be Compare February 7, 2022 03:06
@renovate renovate bot force-pushed the renovate/typescript-xo branch 4 times, most recently from 26136a9 to 08b486f Compare February 11, 2022 02:23
@renovate renovate bot force-pushed the renovate/typescript-xo branch 4 times, most recently from 72d0869 to 5027a53 Compare February 22, 2022 03:14
@renovate renovate bot force-pushed the renovate/typescript-xo branch 3 times, most recently from 2a86c47 to 6c0f57d Compare March 1, 2022 06:40
@renovate renovate bot force-pushed the renovate/typescript-xo branch 2 times, most recently from 44ec461 to bc7d08a Compare March 16, 2022 05:28
@renovate renovate bot force-pushed the renovate/typescript-xo branch 3 times, most recently from 694b309 to 853eae8 Compare March 25, 2022 05:34
@renovate renovate bot force-pushed the renovate/typescript-xo branch 2 times, most recently from 0055b90 to 0c8f589 Compare April 2, 2022 18:10
@renovate renovate bot force-pushed the renovate/typescript-xo branch from 0c8f589 to 3618cf3 Compare April 11, 2022 04:05
@renovate renovate bot force-pushed the renovate/typescript-xo branch from 3618cf3 to 128a42a Compare April 16, 2022 02:01
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant