Skip to content
This repository has been archived by the owner on Aug 29, 2021. It is now read-only.

Update all #131

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update all #131

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 4, 2019

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@​types/js-combinatorics 0.5.31 -> 0.5.32 age adoption passing confidence
@types/long 4.0.0 -> 4.0.1 age adoption passing confidence
@types/mocha 5.2.6 -> 5.2.7 age adoption passing confidence
@types/node 10.12.27 -> 10.17.60 age adoption passing confidence
@types/request-promise-native 1.0.15 -> 1.0.17 age adoption passing confidence
@types/rimraf 2.0.2 -> 2.0.4 age adoption passing confidence
js-combinatorics ^0.5.4 -> ^0.6.0 age adoption passing confidence
mocha (source) 6.0.2 -> 6.2.3 age adoption passing confidence
parcel 1.11.0 -> 1.12.4 age adoption passing confidence
prettier (source) 1.16.4 -> 1.19.1 age adoption passing confidence
pretty-quick 1.10.0 -> 1.11.1 age adoption passing confidence
rimraf 2.6.3 -> 2.7.1 age adoption passing confidence
tslint (source) 5.13.0 -> 5.20.1 age adoption passing confidence
typescript (source) 3.3.3333 -> 3.9.9 age adoption passing confidence
vscode-languageserver-types 3.14.0 -> 3.16.0 age adoption passing confidence

Release Notes

dankogai/js-combinatorics

v0.6.1

Compare Source

v0.6.0

Compare Source

mochajs/mocha

v6.2.3

Compare Source

🔒 Security Fixes

v6.2.2

Compare Source

🐛 Fixes

📖 Documentation

v6.2.1

Compare Source

🐛 Fixes

📖 Documentation

v6.2.0

Compare Source

🎉 Enhancements

🐛 Fixes

📖 Documentation

🔍 Coverage

🔩 Other

v6.1.4

Compare Source

🔒 Security Fixes

v6.1.3

Compare Source

🐛 Fixes

v6.1.2

Compare Source

🐛 Fixes

v6.1.1

Compare Source

🐛 Fixes

v6.1.0

Compare Source

🔒 Security Fixes

🎉 Enhancements

📠 Deprecations

These are soft-deprecated, and will emit a warning upon use. Support will be removed in (likely) the next major version of Mocha:

🐛 Fixes

and some regressions:

📖 Documentation

🔩 Other

parcel-bundler/parcel

v1.12.4

v1.12.3

  • Downgrade all internal Babel packages to <7.4.0 because of bugs in that release.

v1.12.2

  • Fix depth option for detailed report

v1.12.1

Fixed
  • Correctly build dependency URLs (for CSS) Details
  • Fix bug with original null mappings Details
  • Regenerate all bundles and trigger an HMR page reload when a new bundle is created Details
  • Unescaped "." in regex for JSAsset Details
  • Open the specified host Details

v1.12.0

Added
  • CSS/Sass/LESS sourcemaps Details
  • Add Markdown support Details
  • Unhandled HMR updates should cause a page reload Details
  • Enables jsx plugin in case jsx syntax is used in js files Details
  • Add disabling of autoinstall globally via environment variable Details
  • Add support for chrome-extension:// protocol to bundle-url.js Details
  • Add support for Firefox's 'moz-extension://' protocol, to bundle-url.js Details
  • Generate source map files with long extentions (e.g. .js.map) Details
  • upgrade htmlnano dep Details
  • Default port to process.env.PORT Details
  • Inline process.browser for better code elimination Details
  • Detect files added to/removed from directories. Details
  • Implement depth option for detailed report Details
Fixed
  • Resolve package.browser in subfolders (with backslashes) Details
  • fix chokidar ignored regex Details
  • Defer throwing asset errors until after dependencies are handled. Details
  • fix(sourcemaps): Handle null mappings properly Details
  • Use Buffer.from Details
  • addURLDependency: use always relative path Details
  • reexporting + renaming when scopehoisting Details
  • Fix and reenable windows scope-hoisting tests Details
  • Fix for typescript asset invalidation Details
  • Fix hang up when a lot of parallel operation request the file system Details
  • Fix localRequire with package/path requests Details
  • Refactor htmlnano tests to test for filesize Details
  • pug Deprecated pretty Details
  • Fix pug test Details
  • Use the test to assert this.child.killed rather than checking time difference Details
  • Improve tests: symlink tests, Kotlin tests, and maybe test-util module Details
  • Handle empty html files Details
  • Fix HTMLAsset dependency tag with empty src value Details
  • Allow dotfiles to be served Details
  • Fix sourceMappingURL for bundles with multiple entry points Details
  • Fix absolute path importing in sass Details
  • Fix dependency list parsing in RustAsset for paths on Windows Details
  • For scope hoisting, Asset IDs cannot contain + or / (base64) Details
  • Send CORS headers when a file does not exist Details
  • Prevent circular deps from causing a stack overflow in HMR runtime Details
  • Fix postcss modules composes imports Details
  • fix: set default pragmaFrag option for JSX Details
  • Remove unnecessary return await Details
  • Fix scopehositing with nested dynamic imports Details
  • eslint: enable no-return-await Details
  • Throw meaningful error on undefined exports Details
  • Add helpful plugin errors Details
  • Fix HMR failure with js error on load Details
prettier/prettier

v1.19.1

Compare Source

diff

CLI
Fix --stdin regression in 1.19.0 (#​6894 by @​lydell)
// Prettier stable
$ echo "test" | prettier --stdin --parser babel
[error] regeneratorRuntime is not defined

// Prettier master
$ echo "test" | prettier --stdin --parser babel
test;
TypeScript
Fix formatting of union type as arrow function return type (#​6896 by @​thorn0)
// Input
export const getVehicleDescriptor = async (
  vehicleId: string,
): Promise<Collections.Parts.PrintedCircuitBoardAssembly['attributes'] | undefined> => {}

// Prettier stable
export const getVehicleDescriptor = async (
  vehicleId: string
): Promise<| Collections.Parts.PrintedCircuitBoardAssembly["attributes"]
| undefined> => {};

// Prettier master
export const getVehicleDescriptor = async (
  vehicleId: string
): Promise<
  Collections.Parts.PrintedCircuitBoardAssembly["attributes"] | undefined
> => {};

v1.19.0

Compare Source

diff

🔗 Release Notes

v1.18.2

Compare Source

diff

  • TypeScript: only add trailing commas in tuples for --trailing-comma=all (#​6199 by @​duailibe)

    In Prettier 1.18 we added trailing commas in tuples when --trailing-comma=all, but it was also adding for --trailing-comma=es5.

v1.18.1

Compare Source

diff

  • TypeScript: Add trailing comma in tsx, only for arrow function (#​6190 by @​sosukesuzuki)

    Prettier inserts a trailing comma to single type parameter for arrow functions in tsx, since v 1.18. But, this feature inserts a trailing comma to type parameter for besides arrow functions too (e.g, function , interface). This change fix it.

    // Input
    interface Interface1<T> {
      one: "one";
    }
    function function1<T>() {
      return "one";
    }
    
    // Output (Prettier 1.18.0)
    interface Interface1<T,> {
      one: "one";
    }
    function function1<T,>() {
      return "one";
    }
    
    // Output (Prettier 1.18.1)
    interface Interface1<T> {
      one: "one";
    }
    function function1<T>() {
      return "one";
    }
  • Config: Match dotfiles in config overrides (#​6194 by @​duailibe)

    When using overrides in the config file, Prettier was not matching dotfiles (files that start with .). This was fixed in 1.18.1

v1.18.0

Compare Source

diff

🔗 Release Notes

v1.17.1

Compare Source

diff

  • Range: Fix ranged formatting not using the correct line width (#​6050 by @​mathieulj)

    // Input
    function f() {
      if (true) {
        call("this line is 79 chars", "long", "it should", "stay as single line");
      }
    }
    
    // Output (Prettier 1.17.0 run with --range-start 30 --range-end 110)
    function f() {
      if (true) {
        call(
          "this line is 79 chars",
          "long",
          "it should",
          "stay as single line"
        );
      }
    }
    
    // Output (Prettier 1.17.0 run without range)
    function f() {
      if (true) {
        call("this line is 79 chars", "long", "it should", "stay as single line");
      }
    }
    
    // Output (Prettier 1.17.1 with and without range)
    function f() {
      if (true) {
        call("this line is 79 chars", "long", "it should", "stay as single line");
      }
    }
  • JavaScript: Fix closure compiler typecasts ([#​5947] by @​jridgewell)

    If a closing parenthesis follows after a typecast in an inner expression, the typecast would wrap everything to the that following parenthesis.

    // Input
    test(/** @&#8203;type {!Array} */(arrOrString).length);
    test(/** @&#8203;type {!Array} */((arrOrString)).length + 1);
    
    // Output (Prettier 1.17.0)
    test(/** @&#8203;type {!Array} */ (arrOrString.length));
    test(/** @&#8203;type {!Array} */ (arrOrString.length + 1));
    
    // Output (Prettier 1.17.1)
    test(/** @&#8203;type {!Array} */ (arrOrString).length);
    test(/** @&#8203;type {!Array} */ (arrOrString).length + 1);
  • JavaScript: respect parenthesis around optional chaining before await (#​6087 by @​evilebottnawi)

    // Input
    async function myFunction() {
      var x = (await foo.bar.blah)?.hi;
    }
    
    // Output (Prettier 1.17.0)
    async function myFunction() {
      var x = await foo.bar.blah?.hi;
    }
    
    // Output (Prettier 1.17.1)
    async function myFunction() {
      var x = (await foo.bar.blah)?.hi;
    }
  • Handlebars: Fix {{else}}{{#if}} into {{else if}} merging (#​6080 by @​dcyriller)

    // Input
    {{#if a}}
      a
    {{else}}
      {{#if c}}
        c
      {{/if}}
      e
    {{/if}}
    
    // Output (Prettier 1.17.0)
    {{#if a}}
      a
    {{else if c}}
      c
    e
    {{/if}}
    
    // Output (Prettier 1.17.1)
    Code Sample
    {{#if a}}
      a
    {{else}}
      {{#if c}}
        c
      {{/if}}
      e
    {{/if}}
    
  • JavaScript: Improved multiline closure compiler typecast comment detection (#​6070 by @​yangsu)

    Previously, multiline closure compiler typecast comments with lines that
    start with * weren't flagged correctly and the subsequent parenthesis were
    stripped. Prettier 1.17.1 fixes this issue.

    // Input
    const style =/**
     * @&#8203;type {{
     *   width: number,
     * }}
    */({
      width,
    });
    
    // Output (Prettier 1.17.0)
    const style =/**
     * @&#8203;type {{
     *   width: number,
     * }}
    */ {
      width,
    };
    
    // Output (Prettier 1.17.1)
    const style =/**
     * @&#8203;type {{
     *   width: number,
     * }}
    */({
      width,
    });

v1.17.0

Compare Source

diff

🔗 Release Notes

azz/pretty-quick

v1.11.1

Compare Source

Bug Fixes

v1.11.0

Compare Source

Features
isaacs/rimraf

v2.7.1

Compare Source

v2.7.0

Compare Source

palantir/tslint

v5.20.1

Compare Source

No changes from v5.20.0, just re-released to correctly mark with the latest dist-tag on NPM.

v5.20.0

Compare Source

Thanks to our contributors!

  • Bas Bosman
  • Tanmoy Bhowmik
  • David Zulaica
  • Maxime Kjaer
  • @​guidsdo
  • Pavel Birukov
  • Josh Goldberg
  • Akshaya Srivatsa

v5.19.0

Compare Source

Thanks to our contributors!

  • Josh Pike
  • Tanmoy Bhowmik
  • Michael Withagen
  • Evgeniy Timokhov
  • Vitalij Krotov
  • Josh Goldberg
  • Veda
  • Guido
  • Robert Fink
  • Max Sysoev

v5.18.0

Compare Source

Thanks to our contributors!

  • Josh Goldberg
  • smoehrle
  • Mateusz Witkowski
  • Andy Hanson
  • John Wiseheart
  • Eran Shabi
  • Tibor Blenessy
  • AndreasGassmann
  • Ryan Waskiewicz
  • Isabelle

v5.17.0

Compare Source

Thanks to our contributors!

  • Bjorn Stromberg
  • Vitaliy Agoshkov
  • knafteN
  • Bowen Ni
  • Waseem Ahmad
  • Åsmund Grammeltvedt
  • Eric Ferreira
  • Zhen Tian
  • Tom Lakesman
  • zachkirsch

v5.16.0

Compare Source

Thanks to our contributors!

  • Oleg Artene
  • William Neely
  • Bjorn Stromberg
  • Matthew Barry
  • Neha Rathi
  • Vincent Langlet
  • rarenal
  • Greg Jednaszewski
  • Adam Postma
  • Eric Ferreira
  • Evgeniy Timokhov
  • Martin Probst

v5.15.0

Compare Source

Thanks to our contributors!

  • Max Belsky
  • Steve Moser
  • Christian Flach
  • Roman Rogowski
  • Terry
  • Luke
  • Andy Hanson
  • Vitalij Krotov
  • Josh Goldberg
  • Vincent Langlet
  • Neha Rathi
  • Eric Ferreira

v5.14.0

Compare Source

  • [bugfix] backtick option for quotemark rule no longer incorrectly flags string literals that must use single/double quotes (#​4535)
  • [bugfix] Fixed regression in CheckstyleFormatter backwards compatibility ([#​4561](

Configuration

📅 Schedule: "before 3am on Monday" (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, check this box.

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

@renovate renovate bot requested a review from Levertion as a code owner March 4, 2019 00:49
@Levertion
Copy link
Owner

bors r+

bors bot added a commit that referenced this pull request Mar 4, 2019
131: Update all r=Levertion a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;types/node | devDependencies | patch | `10.12.27` -> `10.12.29` | [source](https://togithub.com/DefinitelyTyped/DefinitelyTyped) |
| tslint | devDependencies | patch | `5.13.0` -> `5.13.1` | [homepage](https://palantir.github.io/tslint), [source](https://togithub.com/palantir/tslint) |

---

### Release Notes

<details>
<summary>palantir/tslint</summary>

### [`v5.13.1`](https://togithub.com/palantir/tslint/blob/master/CHANGELOG.md#v5131)

[Compare Source](https://togithub.com/palantir/tslint/compare/5.13.0...5.13.1)

-   [bugfix] Fix regression in CheckstyleFormatter backwards compatibility ([#&#8203;4561](https://togithub.com/palantir/tslint/issues/4561))

</details>

---

### Renovate configuration

:date: **Schedule**: "before 3am on Monday" (UTC).

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

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:ghost: **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/config-help/issues) if that's undesired.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://togithub.com/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#Levertion/mcfunction-langserver).

Co-authored-by: Renovate Bot <bot@renovateapp.com>
@Levertion
Copy link
Owner

bors r-

I'm gonna wait until all the branches are up to date.

@bors
Copy link
Contributor

bors bot commented Mar 4, 2019

Canceled

@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 27c6b15 to 0a54c2b Compare March 13, 2019 04:14
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 5b14ee7 to 824b64a Compare March 20, 2019 19:49
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 3abd20e to 0d601b0 Compare March 25, 2019 21:04
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 05d5f07 to ea1e5c7 Compare April 1, 2019 22:54
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from f06cdeb to 0f3900f Compare April 12, 2019 20:53
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from fe5aef8 to 5fce752 Compare April 19, 2019 19:57
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from c1cfc8d to 9e7f29d Compare June 21, 2019 21:27
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 427c0e8 to ec5a9eb Compare December 21, 2019 23:56
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants