Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all minor dependencies #11

Merged
merged 1 commit into from May 18, 2020
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 2, 2019

This PR contains the following updates:

Package Type Update Change
@rollup/plugin-commonjs devDependencies minor 11.0.2 -> 11.1.0
@types/jest devDependencies minor 24.0.25 -> 24.9.1
@types/node devDependencies minor 12.7.12 -> 12.12.39
@types/prettier devDependencies minor 1.18.4 -> 1.19.1
@types/webpack devDependencies minor 4.39.9 -> 4.41.13
@types/webpack-dev-server devDependencies minor 3.1.7 -> 3.10.1
@typescript-eslint/eslint-plugin devDependencies minor 2.31.0 -> 2.33.0
@typescript-eslint/parser devDependencies minor 2.31.0 -> 2.33.0
@typescript-eslint/typescript-estree devDependencies minor 2.31.0 -> 2.33.0
babel-loader devDependencies minor 8.0.6 -> 8.1.0
eslint-plugin-react devDependencies minor 7.19.0 -> 7.20.0
prettier (source) devDependencies minor 1.18.2 -> 1.19.1
react (source) devDependencies minor 16.9.0 -> 16.13.1
react-dom (source) devDependencies minor 16.9.0 -> 16.13.1
release-it devDependencies minor 12.3.6 -> 12.6.3
rollup (source) devDependencies minor 1.31.1 -> 1.32.1
rollup-plugin-sourcemaps devDependencies minor 0.5.0 -> 0.6.2
rollup-plugin-terser devDependencies minor 5.2.0 -> 5.3.0
ts-loader devDependencies minor 6.0.4 -> 6.2.2
typescript (source) devDependencies minor 3.6.5 -> 3.9.2
webpack devDependencies minor 4.39.3 -> 4.43.0
webpack-dev-server devDependencies minor 3.8.2 -> 3.11.0

Release Notes

typescript-eslint/typescript-eslint

v2.33.0

Compare Source

Bug Fixes
  • experimental-utils: remove accidental dep on json-schema (#​2010) (1875fba)
Features
  • eslint-plugin: add extension rule lines-between-class-members (#​1684) (08f93e6)

v2.32.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-base-to-string] support boolean in unions (#​1979) (6987ecc)
  • eslint-plugin: [no-type-alias] handle readonly types in aliases (#​1990) (56d9870)
  • eslint-plugin: [no-unused-expressions] inherit messages from base rule (#​1992) (51ca404)
Features
babel/babel-loader

v8.1.0

Compare Source

yannickcr/eslint-plugin-react

v7.20.0

Compare Source

Added
Fixed
Docs
Changed
  • [Deps] Move "semver" to devDependencies (#​2595 @​rajivshah3)
  • [eslint] remove operator-linebreak override (#​2578 @​golopot)
  • [Tests] button-has-type: ensure no mistakenly allowed identifiers named button/submit/reset (#​2625 @​golopot)
  • [Tests] displayName: add a test case (#​2593 @​golopot)
  • [Dev Deps] update @types/eslint, @types/estree, @types/node, @typescript-eslint/parser, coveralls, eslint-config-airbnb-base, eslint-plugin-import, typescript
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

facebook/react

v16.13.1

Compare Source

React DOM
  • Fix bug in legacy mode Suspense where effect clean-up functions are not fired. This only affects users who use Suspense for data fetching in legacy mode, which is not technically supported. (@​acdlite in #​18238)
  • Revert warning for cross-component updates that happen inside class render lifecycles (componentWillReceiveProps, shouldComponentUpdate, and so on). (@​gaearon in #​18330)

v16.13.0

Compare Source

React
React DOM
Concurrent Mode (Experimental)

v16.12.0

Compare Source

React DOM
React Is

v16.11.0

Compare Source

React DOM
  • Fix mouseenter handlers from firing twice inside nested React containers. @​yuanoook in #​16928
  • Remove unstable_createRoot and unstable_createSyncRoot experimental APIs. (These are available in the Experimental channel as createRoot and createSyncRoot.) (@​acdlite in #​17088)

v16.10.2

Compare Source

React DOM
  • Fix regression in react-native-web by restoring order of arguments in event plugin extractors (@​necolas in #​16978)

v16.10.1

Compare Source

React DOM
  • Fix regression in Next.js apps by allowing Suspense mismatch during hydration to silently proceed (@​sebmarkbage in #​16943)

v16.10.0

Compare Source

React DOM
Scheduler (Experimental)
  • Improve queue performance by switching its internal data structure to a min binary heap. (@​acdlite in #​16245)
  • Use postMessage loop with short intervals instead of attempting to align to frame boundaries with requestAnimationFrame. (@​acdlite in #​16214)
useSubscription
  • Avoid tearing issue when a mutation happens and the previous update is still in progress. (@​bvaughn in #​16623)
release-it/release-it

v12.6.3

Compare Source

v12.6.2

Compare Source

v12.6.1

Compare Source

  • Use fallback changelog command when there are no Git tags yet (2025421)
  • Tidy metrics debug output (2c44657)
  • Update docs on hooks (ba23829)

v12.6.0

Compare Source

  • Add support for required branch(es) (a791799)
  • Add ability to ignore version in npm plugin (2d07da3)

v12.5.0

Compare Source

v12.4.3

Compare Source

v12.4.2

Compare Source

  • Update dependencies (bb7d92d)
  • Shorten getCommitsSinceLatestTag + add test (add2e1e)
  • Fix #​557 use just HEAD for counting if no tag yet (f40804a)

v12.4.1

Compare Source

  • Update dependencies (b3d9786)
  • Add test for npm registry in publishConfig (da6a6d9)
  • Update readme (6f410b5)
  • Fix timeout issue with 3rd party npm registries. (#​555) (f9980a0)

v12.4.0

Compare Source

  • Add verbosity level (--verbose logs only user script output, -VV is old behavior) (72bab77)
  • Add js-cookie project to examples (f7ac01e)
rollup/rollup

v1.32.1

Compare Source

2020-03-06

Bug Fixes
  • Handle default export detection for AMD and IIFE externals that do not have a prototype (#​3420)
  • Handle missing whitespace when the else branch of an if-statement is simplified (#​3421)
  • Mention the importing module when reporting errors for missing named exports (#​3401)
  • Add code to warning for missing output.name of IIFE bundles (#​3372)
Pull Requests

v1.32.0

Compare Source

2020-02-28

Features
  • Allow adding plugins on the command line via --plugin <plugin> (#​3379)
Pull Requests
maxdavidson/rollup-plugin-sourcemaps

v0.6.2

Compare Source

  • Fix issue with exports that prevented it from working in Node 13.0-13.6

v0.6.1

Compare Source

  • Fix issue with conditional exports that prevented it from working in Node 13+

v0.6.0

Compare Source

  • Drop support for Node 8
  • Update dependencies
  • Publish ES module for Node 12+ using conditional exports
TrySound/rollup-plugin-terser

v5.3.0

Compare Source

Added rollup v2 support (thanks to @​willfarrell)

TypeStrong/ts-loader

v6.2.2

Compare Source

v6.2.1

Compare Source

v6.2.0

Compare Source

v6.1.2

Compare Source

v6.1.1

Compare Source

v6.1.0

Compare Source

Microsoft/TypeScript

v3.9.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:

v3.8.3

Compare Source

For release notes, check out the release announcement.

For new features, check out the What's new in TypeScript v3.8.

For the complete list of fixed issues, check out the

Downloads are available on:

v3.8.2

Compare Source

For release notes, check out the release announcement.

For new features, check out the What's new in TypeScript v3.8.2.

For the complete list of fixed issues, check out the

Downloads are available on:

v3.7.5

Compare Source

For the complete list of fixed issues, check out the

v3.7.4

Compare Source

For the complete list of fixed issues, check out the

Downloads are available on:

v3.7.3

Compare Source

For the complete list of fixed issues, check out the

Downloads are available on:

v3.7.2

Compare Source

For release notes, check out the release announcement.

For new features, check out the What's new in TypeScript v3.7.2.

For the complete list of fixed issues, check out the

Downloads are available on:

webpack/webpack

v4.43.0

Compare Source

Features

  • add module.hot.invalidate() to HMR API

Dependencies

  • push versions for forced security updates

v4.42.1

Compare Source

Bugfixes

  • update webassemblyjs dependencies for instruction update
  • update mkdirp dependency for security reasons

v4.42.0

Compare Source

Bugfixes

  • Disable constant replacements in "use asm" scope
  • Update schema to disallow functions for output.hotUpdateChunkFilename as this doesn't work
  • Hoist exports in concatenated module to handle circular references with non-concatenated modules correctly
  • Flag all modules as used in DLLs to fix missing exports

v4.41.6

Compare Source

Bugfixes

  • Windows network paths are considered as absolute paths
  • fix hanging of FlagDependencyExportsPlugin when using export * in a circular matter

v4.41.5

Compare Source

Bugfixes

  • handle relative paths with webpack:// prefix in SourceMaps correctly
  • fixes a non-determinism about providedExports with export * which caused changing module hashes and unnecessary HMR invalidation

v4.41.4

Compare Source

Bugfixes

  • fix case where __webpack_require__.e is not a function when using module concatenation
  • fix incorrect imported module when using sideEffects in a certain constellation of export names

Performance

  • lazy-require Webassembly related modules for improved startup performance

v4.41.3

Compare Source

Security

  • force upgrade terser-webpack-plugin dependency for security fix (not affecting webpack)

Funding

  • add npm funding field to package.json

v4.41.2

Compare Source

Bugfixes

  • fix issue with invalide timezone

v4.41.1

Compare Source

Bugfixes

  • fix incorrect request shortening when directory looks similar to parent directory
  • fix crash when timezone is unknown

v4.41.0

Compare Source

Developer Experience

  • disallow cache group named test with shorthand syntax to point out a potential config error

Performance

  • Improve performance of LimitChunkCountPlugin

v4.40.3

Compare Source

Bugfixes

  • fix a bug that the HMR plugin affected child compilations

Performance

  • improve performance of splitChunks name option by caching hashed value
  • improve rebuild performance by caching module size computation

v4.40.2

Compare Source

Bugfixes

  • fix a bug where asset is undefined

v4.40.1

Compare Source

Bugfixes

  • convert "multiple assets emit to the same filename" error into a warning
  • compare asset content when multiple assets emit to the same filename

v4.40.0

Compare Source

Features

  • adds asset info for emitted assets
    • new methods allow easy emitting/updating of assets compilation.emitAsset/updateAsset (instead of accessing the Object compilation.assets)
    • new getter methods to get assets compilation.getAssets() and compilation.getAsset(name)
    • 3 flags in asset info:
      • immutable: when set an asset can be cache infinitely
      • development: when set an asset is some kind of development tool (i. e. a SourceMap)
      • hotModuleReplacement: when set an asset is generated for an hot update
    • Stats expose info object in assets
    • String version of Stats show flags
webpack/webpack-dev-server

v3.11.0

Compare Source

Features
Bug Fixes
3.10.3 (2020-02-05)
Bug Fixes
3.10.2 (2020-01-31)
Bug Fixes
3.10.1 (2019-12-19)
Bug Fixes

v3.10.3

Compare Source

v3.10.2

Compare Source

v3.10.1

Compare Source

v3.10.0

Compare Source

Features
  • client: allow sock port to use location's port (sockPort: 'location') (#​2341) (dc10d06)
  • server: add contentBasePublicPath option (#​2150) (cee700d)
Bug Fixes

[v3.9.0](https://togithub.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md#&#8203;390-httpsgithubcomwebpackwebpack-dev-servercompar


Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 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 added the renovate label Sep 2, 2019
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch from 5645ee8 to f31356b Compare September 3, 2019 16:05
@renovate renovate bot changed the title chore(deps): update all minor dependencies to v2.1.0 chore(deps): update all minor dependencies Sep 3, 2019
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 8 times, most recently from 7184e28 to dbdcdbe Compare September 13, 2019 14:43
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 5 times, most recently from e4e23ce to 10e0fdb Compare September 20, 2019 07:24
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 6 times, most recently from a1792b6 to 5d65326 Compare September 27, 2019 20:41
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 8 times, most recently from e469bad to 0189abf Compare October 1, 2019 20:42
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 6 times, most recently from 824bf0d to ebc9311 Compare January 10, 2020 17:12
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 3 times, most recently from 53578cd to ae60370 Compare January 18, 2020 13:58
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch from ae60370 to 01be8af Compare February 8, 2020 13:56
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch from 01be8af to 5c88112 Compare February 16, 2020 07:52
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch from 5c88112 to 58097e4 Compare March 10, 2020 17:58
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch from 58097e4 to 9fdbc23 Compare April 26, 2020 11:57
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 5 times, most recently from 405bcf5 to 9587e56 Compare May 11, 2020 18:15
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 7 times, most recently from 7ab3efe to 99b0598 Compare May 17, 2020 15:13
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch from 99b0598 to 4d24af4 Compare May 17, 2020 17:14
@renovate renovate bot changed the title chore(deps): update all minor dependencies Update all minor dependencies May 18, 2020
@kmkzt kmkzt merged commit 09413a6 into master May 18, 2020
@renovate renovate bot deleted the renovate/all-minor-dependencies branch May 18, 2020 02:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants