posva / mande

<700 bytes convenient and modern wrapper around fetch with smart extensible defaults
https://mande.esm.is
MIT License
1.2k stars 42 forks source link

chore(deps): update all non-major dependencies #251

Closed renovate[bot] closed 3 years ago

renovate[bot] commented 3 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@microsoft/api-documenter (source) ^7.13.12 -> ^7.13.16 age adoption passing confidence
@microsoft/api-extractor (source) ^7.15.2 -> ^7.16.1 age adoption passing confidence
@rollup/plugin-alias ^3.0.0 -> ^3.1.2 age adoption passing confidence
@rollup/plugin-replace ^2.2.1 -> ^2.4.2 age adoption passing confidence
andresz1/size-limit-action v1.3.0 -> v1.5.1 age adoption passing confidence
conventional-changelog-cli ^2.0.34 -> ^2.1.1 age adoption passing confidence
fetch-mock-jest ^1.3.0 -> ^1.5.1 age adoption passing confidence
jest (source) ^27.0.3 -> ^27.0.4 age adoption passing confidence
node-fetch ^2.6.0 -> ^2.6.1 age adoption passing confidence
prettier (source) ^2.3.0 -> ^2.3.1 age adoption passing confidence
rimraf ^3.0.0 -> ^3.0.2 age adoption passing confidence
rollup (source) ^2.50.5 -> ^2.51.0 age adoption passing confidence
rollup-plugin-terser ^7.0.0 -> ^7.0.2 age adoption passing confidence
ts-jest (source) ^27.0.2 -> ^27.0.3 age adoption passing confidence

Release Notes

andresz1/size-limit-action ### [`v1.5.1`](https://togithub.com/andresz1/size-limit-action/releases/v1.5.1) [Compare Source](https://togithub.com/andresz1/size-limit-action/compare/v1.5.0...v1.5.1) Fixes: - Heading emoji position ### [`v1.5.0`](https://togithub.com/andresz1/size-limit-action/releases/v1.5.0) [Compare Source](https://togithub.com/andresz1/size-limit-action/compare/v1.4.0...v1.5.0) Added: - Heading update - Custom working directory Fixed: - Relative change formula ### [`v1.4.0`](https://togithub.com/andresz1/size-limit-action/releases/v1.4.0) [Compare Source](https://togithub.com/andresz1/size-limit-action/compare/v1.3.2...v1.4.0) Added: - Move from reviews to comments. - Now comments are being updated instead of being created over and over again every time something was pushed ### [`v1.3.2`](https://togithub.com/andresz1/size-limit-action/releases/v1.3.2) [Compare Source](https://togithub.com/andresz1/size-limit-action/compare/v1.3.1...v1.3.2) Added: - Catch during `git fetch` ### [`v1.3.1`](https://togithub.com/andresz1/size-limit-action/releases/v1.3.1) [Compare Source](https://togithub.com/andresz1/size-limit-action/compare/v1.3.0...v1.3.1) Added: - `git fetch origin ${branch} --depth=1` Fixed: - Crashes due to changes in size-limit sections Thanks [@​CliftonH](https://togithub.com/CliftonH) and [@​Drapegnik](https://togithub.com/Drapegnik)
facebook/jest ### [`v27.0.4`](https://togithub.com/facebook/jest/blob/master/CHANGELOG.md#​2704) [Compare Source](https://togithub.com/facebook/jest/compare/v27.0.3...v27.0.4) ##### Fixes - `[jest-config, jest-resolve]` Pass in `require.resolve` to resolvers to resolve from correct base ([#​11493](https://togithub.com/facebook/jest/pull/11493))
prettier/prettier ### [`v2.3.1`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#​231) [Compare Source](https://togithub.com/prettier/prettier/compare/2.3.0...2.3.1) [diff](https://togithub.com/prettier/prettier/compare/2.3.0...2.3.1) ##### Support TypeScript 4.3 ([#​10945](https://togithub.com/prettier/prettier/issues/10945) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) ##### [`override` modifiers in class elements](https://devblogs.microsoft.com/typescript/announcing-typescript-4-3/#override) ```ts class Foo extends { override method() {} } ``` ##### [static index signatures (`[key: KeyType]: ValueType`) in classes](https://devblogs.microsoft.com/typescript/announcing-typescript-4-3/#static-index-signatures) ```ts class Foo { static [key: string]: Bar; } ``` ##### [`get` / `set` in type declarations](https://devblogs.microsoft.com/typescript/announcing-typescript-4-3/#separate-write-types) ```ts interface Foo { set foo(value); get foo(): string; } ``` ##### Preserve attributes order for element node ([#​10958](https://togithub.com/prettier/prettier/issues/10958) by [@​dcyriller](https://togithub.com/dcyriller)) ```handlebars {{!-- Input --}} {{!-- Prettier stable --}} {{!-- Prettier main --}} ``` ##### Track cursor position properly when it’s at the end of the range to format ([#​10938](https://togithub.com/prettier/prettier/issues/10938) by [@​j-f1](https://togithub.com/j-f1)) Previously, if the cursor was at the end of the range to format, it would simply be placed back at the end of the updated range. Now, it will be repositioned if Prettier decides to add additional code to the end of the range (such as a semicolon). ```jsx // Input (<|> represents the cursor) const someVariable = myOtherVariable<|> // range to format: ^^^^^^^^^^^^^^^ // Prettier stable const someVariable = myOtherVariable;<|> // range to format: ^^^^^^^^^^^^^^^ // Prettier main const someVariable = myOtherVariable<|>; // range to format: ^^^^^^^^^^^^^^^ ``` ##### Break the LHS of type alias that has complex type parameters ([#​10901](https://togithub.com/prettier/prettier/issues/10901) by [@​sosukesusuzki](https://togithub.com/sosukesusuzki)) ```ts // Input type FieldLayoutWith< T extends string, S extends unknown = { width: string } > = { type: T; code: string; size: S; }; // Prettier stable type FieldLayoutWith = { type: T; code: string; size: S; }; // Prettier main type FieldLayoutWith< T extends string, S extends unknown = { width: string } > = { type: T; code: string; size: S; }; ``` ##### Break the LHS of assignments that has complex type parameters ([#​10916](https://togithub.com/prettier/prettier/issues/10916) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) ```ts // Input const map: Map< Function, Map > = new Map(); // Prettier stable const map: Map> = new Map(); // Prettier main const map: Map< Function, Map > = new Map(); ``` ##### Fix incorrectly wrapped arrow functions with return types ([#​10940](https://togithub.com/prettier/prettier/issues/10940) by [@​thorn0](https://togithub.com/thorn0)) ```ts // Input longfunctionWithCall12("bla", foo, (thing: string): complex> => { code(); }); // Prettier stable longfunctionWithCall12("bla", foo, (thing: string): complex< type > => { code(); }); // Prettier main longfunctionWithCall12( "bla", foo, (thing: string): complex> => { code(); } ); ``` ##### Avoid breaking call expressions after assignments with complex type arguments ([#​10949](https://togithub.com/prettier/prettier/issues/10949) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) ```ts // Input const foo = call<{ prop1: string; prop2: string; prop3: string; }>(); // Prettier stable const foo = call<{ prop1: string; prop2: string; prop3: string; }>(); // Prettier main const foo = call<{ prop1: string; prop2: string; prop3: string; }>(); ``` ##### Fix order of `override` modifiers ([#​10961](https://togithub.com/prettier/prettier/issues/10961) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) ```ts // Input class Foo extends Bar { abstract override foo: string; } // Prettier stable class Foo extends Bar { abstract override foo: string; } // Prettier main class Foo extends Bar { abstract override foo: string; } ```
rollup/rollup ### [`v2.51.0`](https://togithub.com/rollup/rollup/blob/master/CHANGELOG.md#​2510) [Compare Source](https://togithub.com/rollup/rollup/compare/v2.50.6...v2.51.0) *2021-06-06* ##### Features - Add a helper for IntelliSense support in config files ([#​4127](https://togithub.com/rollup/rollup/issues/4127)) ##### Bug Fixes - Improve performance when generating source maps ([#​4122](https://togithub.com/rollup/rollup/issues/4122)) ##### Pull Requests - [#​4122](https://togithub.com/rollup/rollup/pull/4122): User Map to optimize performance ([@​izevo](https://togithub.com/izevo)) - [#​4127](https://togithub.com/rollup/rollup/pull/4127): Export defineConfig defines the auxiliary function of the configuration ([@​rxliuli](https://togithub.com/rxliuli)) ### [`v2.50.6`](https://togithub.com/rollup/rollup/blob/master/CHANGELOG.md#​2506) [Compare Source](https://togithub.com/rollup/rollup/compare/v2.50.5...v2.50.6) *2021-06-03* ##### Bug Fixes - Do not consider the object spread operator as side effect when `propertyReadSideEffects` are false ([#​4119](https://togithub.com/rollup/rollup/issues/4119)) - Detect side effects when returning thenables from async arrow functions ([#​4120](https://togithub.com/rollup/rollup/issues/4120)) ##### Pull Requests - [#​4119](https://togithub.com/rollup/rollup/pull/4119): Respect propertyReadSideEffects in spread elements ([@​lukastaegert](https://togithub.com/lukastaegert)) - [#​4120](https://togithub.com/rollup/rollup/pull/4120): Detect async arrow thenable side effects ([@​lukastaegert](https://togithub.com/lukastaegert))
kulshekhar/ts-jest ### [`v27.0.3`](https://togithub.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md#​2703-httpsgithubcomkulshekharts-jestcomparev2702v2703-2021-06-06) [Compare Source](https://togithub.com/kulshekhar/ts-jest/compare/v27.0.2...v27.0.3) ##### Bug Fixes - revert `exports` field to support all node versions ([#​2658](https://togithub.com/kulshekhar/ts-jest/issues/2658)) ([132c8ba](https://togithub.com/kulshekhar/ts-jest/commit/132c8ba85c3e61b7d9ede0dc9730580b79618ab7)) ##### Features - emit ESM codes if using ESM mode with Babel ([#​2661](https://togithub.com/kulshekhar/ts-jest/issues/2661)) ([9b55404](https://togithub.com/kulshekhar/ts-jest/commit/9b55404a8dfc760238e19786da98a2edf043b9da)), closes [#​2650](https://togithub.com/kulshekhar/ts-jest/issues/2650)

Configuration

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

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



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

codecov-commenter commented 3 years ago

Codecov Report

Merging #251 (7465273) into main (da0291f) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##             main     #251   +/-   ##
=======================================
  Coverage   93.33%   93.33%           
=======================================
  Files           1        1           
  Lines          60       60           
  Branches       15       15           
=======================================
  Hits           56       56           
  Misses          4        4           

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 da0291f...7465273. Read the comment docs.