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

chore(deps): update all minor dependencies #8

Merged
merged 1 commit into from
Sep 1, 2019

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 31, 2019

This PR contains the following updates:

Package Type Update Change
@babel/core (source) devDependencies minor 7.4.5 -> 7.5.5
@babel/preset-env (source) devDependencies minor 7.4.5 -> 7.5.5
@types/autoprefixer devDependencies minor 9.5.0 -> 9.6.1
@types/node devDependencies minor 12.0.4 -> 12.7.3
@types/prettier devDependencies minor 1.16.4 -> 1.18.2
@types/react devDependencies minor 16.8.19 -> 16.9.2
@types/react-dom devDependencies minor 16.8.4 -> 16.9.0
@types/webpack devDependencies minor 4.4.32 -> 4.39.1
autoprefixer devDependencies minor 9.5.1 -> 9.6.1
babel-jest devDependencies minor 24.8.0 -> 24.9.0
eslint-plugin-react devDependencies minor 7.13.0 -> 7.14.3
jest (source) devDependencies minor 24.8.0 -> 24.9.0
prettier (source) devDependencies minor 1.17.1 -> 1.18.2
react (source) peerDependencies minor 16.8.6 -> 16.9.0
react (source) devDependencies minor 16.8.6 -> 16.9.0
react-dom (source) devDependencies minor 16.8.6 -> 16.9.0
release-it devDependencies minor 12.2.2 -> 12.3.6
svg-drawing dependencies minor 1.5.1 -> 1.6.1
typescript (source) devDependencies minor 3.5.1 -> 3.6.2
webpack devDependencies minor 4.32.2 -> 4.39.3
webpack-dev-server devDependencies minor 3.4.1 -> 3.8.0

Release Notes

babel/babel

v7.5.5

Compare Source

🐛 Bug Fix
  • babel-code-frame
  • babel-plugin-proposal-object-rest-spread
  • babel-types
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-helper-replace-supers, babel-helpers, babel-plugin-proposal-class-properties, babel-plugin-transform-classes, babel-plugin-transform-object-super, babel-types
  • babel-plugin-transform-flow-comments
  • babel-core, babel-helpers
  • babel-plugin-transform-runtime
  • babel-helpers, babel-plugin-transform-instanceof
🏠 Internal
  • babel-parser, babel-plugin-transform-typescript
🏃‍♀️ Performance
  • babel-helpers, babel-plugin-proposal-object-rest-spread, babel-preset-env

v7.5.4

Compare Source

🐛 Bug Fix

v7.5.0

Compare Source

👓 Spec Compliance
🚀 New Feature
🐛 Bug Fix
💅 Polish
📝 Documentation
  • babel-plugin-proposal-partial-application, babel-plugin-syntax-partial-application
postcss/autoprefixer

v9.6.1

Compare Source

  • Fix -webkit-line-clamp truncating multi-line text support.

v9.6.0

Compare Source

Unseen University coat of arms by Damien Tonkin

Autoprefixer 9.6 marked browsers option as deprecated and added text-orientation and @media (min-resolution: 2x) support.

We added the “Sponsor” button to your repository. You can support Autoprefixer and other open source projects important for your business by Tidelift.

Browsers

Autoprefixer adds prefixes only for target browsers, browsers which is support on your project.

Initially, Autoprefixer had the browsers option to set target browsers. But we found that many tools need target browsers too. postcss-preset-env and babel-preset-env use them to add only actual polyfills, postcss-normalize uses them to add only necessary CSS reset rules, plugins for ESLint and Stylelint will warn you if some of the target browsers doesn’t support your code.

This is why we created Browserslist config file. It is a single config for all tools.

A lot of users still uses the browsers option. We understand them; it is hard to change old practice. Unfortunately, using the browsers option creates many problems. For instance, you can miss that your build tool has own Autoprefixer inside. It will cut your prefixes because it will not know about your target browsers.

This is why, in 9.6, we decided to deprecate the browsers option. Autoprefixer will show a warning on this option. In the next 10.0 release, we will drop this option. This is how you can migrate:

  1. Create browserslist key with an array in package.json.

  2. Copy queries from the browsers option. If you have browsers: [“last 1 version”, “not dead”], then you need:

       "browserslist": [
         "last 1 version",
         "not dead"
       ]

HiDPI Media Query

We all need to support HiDPI/retina screen now. Autoprefixer supports specific media query for HiDPI screens:

.image {
  background-image: url([email protected]);
}
@​media (min-resolution: 2dppx) {
  .image {
    background-image: url([email protected]);
  }
}
.image {
  background-image: url([email protected]);
}
@​media (-webkit-min-device-pixel-ratio: 2),
       (-o-min-device-pixel-ratio: 2/1),
       (min-resolution: 2dppx) {
  .image {
    background-image: url([email protected]);
  }
}

Bug we found that CSS Values 4 spec added x alias for dppx.

Autoprefixer 9.6 supports @media (min-resolution: 2x) shortcut. Note, that Autoprefixer will not convert it to 2dppx. Autoprefixer adds only prefixes. Use postcss-preset-env to add polyfills.

Other

facebook/jest

v24.9.0

Compare Source

Features
  • [expect] Highlight substring differences when matcher fails, part 1 (#​8448)
  • [expect] Highlight substring differences when matcher fails, part 2 (#​8528)
  • [expect] Improve report when mock-spy matcher fails, part 1 (#​8640)
  • [expect] Improve report when mock-spy matcher fails, part 2 (#​8649)
  • [expect] Improve report when mock-spy matcher fails, part 3 (#​8697)
  • [expect] Improve report when mock-spy matcher fails, part 4 (#​8710)
  • [expect] Throw matcher error when received cannot be jasmine spy (#​8747)
  • [expect] Improve report when negative CalledWith assertion fails (#​8755)
  • [expect] Improve report when positive CalledWith assertion fails (#​8771)
  • [expect] Display equal values for ReturnedWith similar to CalledWith (#​8791)
  • [expect, jest-snapshot] Change color from green for some args in matcher hints (#​8812)
  • [jest-snapshot] Highlight substring differences when matcher fails, part 3 (#​8569)
  • [jest-core] Improve report when snapshots are obsolete (#​8448)
  • [jest-cli] Improve chai support (with detailed output, to match jest exceptions) (#​8454)
  • [*] Manage the global timeout with --testTimeout command line argument. (#​8456)
  • [pretty-format] Render custom displayName of memoized components (#​8546)
  • [jest-validate] Allow maxWorkers as part of the jest.config.js (#​8565)
  • [jest-runtime] Allow passing configuration objects to transformers (#​7288)
  • [@jest/core, @​jest/test-sequencer] Support async sort in custom testSequencer (#​8642)
  • [jest-runtime, @​jest/fake-timers] Add jest.advanceTimersToNextTimer (#​8713)
  • [@jest-transform] Extract transforming require logic within jest-core into @jest-transform (#​8756)
  • [jest-matcher-utils] Add color options to matcherHint (#​8795)
  • [jest-circus/jest-jasmine2] Give clearer output for Node assert errors (#​8792)
  • [jest-runner] Export all types in the type signature of jest-runner (#​8825)
Fixes
  • [jest-cli] Detect side-effect only imports when running --onlyChanged or --changedSince (#​8670)
  • [jest-cli] Allow --maxWorkers to work with % input again (#​8565)
  • [babel-plugin-jest-hoist] Expand list of whitelisted globals in global mocks (#​8429)
  • [jest-core] Make watch plugin initialization errors look nice (#​8422)
  • [jest-snapshot] Prevent inline snapshots from drifting when inline snapshots are updated (#​8492)
  • [jest-haste-map] Don't throw on missing mapper in Node crawler (#​8558)
  • [jest-core] Fix incorrect passWithNoTests warning (#​8595)
  • [jest-snapshots] Fix test retries that contain snapshots (#​8629)
  • [jest-mock] Fix incorrect assignments when restoring mocks in instances where they originally didn't exist (#​8631)
  • [expect] Fix stack overflow when matching objects with circular references (#​8687)
  • [jest-haste-map] Workaround a node >=12.5.0 bug that causes the process not to exit after tests have completed and cancerous memory growth (#​8787)
Chore & Maintenance
  • [jest-leak-detector] remove code repeat (#​8438)
  • [docs] Add example to jest.requireActual (#​8482)
  • [docs] Add example to jest.mock for mocking ES6 modules with the factory parameter (#​8550)
  • [docs] Add information about using jest.doMock with ES6 imports (#​8573)
  • [docs] Fix variable name in custom-matcher-api code example (#​8582)
  • [docs] Fix example used in custom environment docs (#​8617)
  • [docs] Updated react tutorial to refer to new package of react-testing-library (@​testing-library/react) (#​8753)
  • [docs] Updated imports of react-testing-library to @​testing-library/react in website (#​8757)
  • [jest-core] Add getVersion (moved from jest-cli) (#​8706)
  • [docs] Fix MockFunctions example that was using toContain instead of toContainEqual (#​8765)
  • [*] Make sure copyright header comment includes license (#​8783)
  • [*] Check copyright and license as one joined substring (#​8815)
  • [docs] Fix WatchPlugins jestHooks.shouldRunTestSuite example that receives an object (#​8784)
  • [*] Enforce LF line endings (#​8809)
  • [pretty-format] Delete obsolete link and simplify structure in README (#​8824)
Performance
  • [jest-watcher] Minor optimization for JestHook (#​8746)
  • [@jest/reporters] Prevent runaway CPU useage with --notify on macOS (#​8830)
yannickcr/eslint-plugin-react

v7.14.3

Compare Source

Fixed
Changed

v7.14.2

Compare Source

Fixed

v7.14.1

Compare Source

Fixed

v7.14.0

Compare Source

Added
Fixed
  • Fix [no-did-mount-set-state][] and [no-did-update-set-state][] to handle cDU and cDM defined as class properties (#​1595 @​jaaberg)
  • Fix [sort-prop-types][] cash when a shape PropType is defined in a variable (#​1749 @​alexzherdev)
  • Fix [no-unused-state][] false positive when using state of non-lifecycle method (#​2274 @​golopot)
  • Fix [static-property-placement][] false positive when accessing static property inside method (#​2283 @​dmason30)
  • Fix [prop-type][] detection for annotated props with default value (#​2298 @​yannickcr)
Changed
prettier/prettier

v1.18.2

Compare Source

diff

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

facebook/react

v16.9.0

Compare Source

React
  • Add <React.Profiler> API for gathering performance measurements programmatically. (@​bvaughn in #​15172)
  • Remove unstable_ConcurrentMode in favor of unstable_createRoot. (@​acdlite in #​15532)
React DOM
React DOM Server
React Test Utilities and Test Renderer
ESLint Plugin: React Hooks
release-it/release-it

v12.3.6

Compare Source

v12.3.5

Compare Source

  • Fix bug in argument replacement for Windows (c349342)
  • Fix up tests and increase coverage for Log module (406a23b)
  • Increase coverage for Git plugin (a88bcd4)
  • Increase consistency in docs (1901fbb)
  • Move Git and Pre-releases sections to separate doc (918180d)

v12.3.4

Compare Source

v12.3.3

Compare Source

  • Update dependencies (0f52164)
  • Update readme (0b5cb1a)
  • Increase overall readability (4232247)
  • Improve hooks deprecation + docs (6770e7c)
  • Add eslint-plugin-import + fix import order (392b4ae)

v12.3.2

Compare Source

  • Update dependencies (2cdf9f7)
  • Update eslint-plugin-ava and move some test files/config around (d5f8790)

v12.3.1

Compare Source

  • Fix asset path (globby match) in test for Windows (5800744)
  • Update dependencies + trivial migrations (9e737c2)
  • Fix hook migrate hint (closes #​536) (7b9509a)
  • No error, but warning if Git tag already exists for explicit non-increment (844ff64)
  • Allow --no-increment or increment: false (fixes #​537) (7ee5c4d)
  • Fix typo in link on README (#​535) (b2223f1)
  • Update readme (with create-release-it) (404c940)

v12.3.0

Compare Source

  • Update docs (d702fd1)
  • Update deprecated-obj (d967ce5)
  • Deprecate scripts config (e2831eb)
  • Add namespace-less life cycle hooks (e.g. hooks.before:init) (5ea9acc)
  • Add life cycle hooks (a7b3ccb)
  • Separate page for changelog doc section (8cdb49f)
  • Minor updates to readme (94a2429)
  • Separate pages for github, gitlab and npm doc sections (bab4b27)
  • Update animated GIF (1268f43)
kmkzt/svg-drawing

v1.6.1

Compare Source

Full Changelog

Microsoft/TypeScript

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

v3.5.3

Compare Source

This update fixes an issue with declaration emit when exported entities have function properties assigned to them.

Downloads are available on:

v3.5.2

Compare Source

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

For the complete list of fixed issues, check out the

Downloads are available on:

Changes:

This list of changes was auto generated.

webpack/webpack

v4.39.3

Compare Source

Bugfixes

  • fix a missing module in chunk caused by incorrect chunk graph generation of async chunks

v4.39.2

Compare Source

Bugfixes

  • fix ProfilingPlugin not ending traces correctly

v4.39.1

Compare Source

Bugfixes

  • fix problem that progress lines were too long on some terminals
  • fix a problem that ...100% is displayed instead of 100%

v4.39.0

Compare Source

Features

  • Infrastructure logger for node.js has now colors + symbols to mark different kind of messages
  • Logger API has now a status method which allows to write temporary status messages
  • ProgressPlugin default handler uses the Infrastructure Logger status message to output messages
  • Placeholders in paths can now be escaped with i. e. [\id\]
  • Compiler.hooks.assetEmitted have been added to get byte content of emitted assets

Bugfixes

  • Logging output is now aligned to have space for symbols
  • renamed Compiler.hooks.infrastructurelog to Compiler.hooks.infrastructureLog
  • Properties that are defined on the Object.prototype can now be chunk ids (i. e. constructor)
  • library.name now supports placeholders in libraryTarget: "system"
  • 2 places were module profiles were incorrectly captured were fixed

Dependencies

  • Forced upgrade of all direct dependencies
  • webpack-sources + terser-webpack-plugin comes with quality optimizations for SourceMaps

v4.38.0

Compare Source

Performance

  • Improved performance of ProgressPlugin
  • Improved performance of chunk graph generation
    • This can boost performance when many chunks are used, especially incremental build performance
    • Modules from parent chunks are now tracked during chunk graph generation, which allows to skip these modules in async chunks. This often renders optimization.removeAvailableModules unneeded, expect in scenarios where chunks are merged during optimization.
  • optimization.removeAvailableModules is now disabled in development mode by default
    • optimization.removeAvailableModules will be disabled for all modes in next major release, feel free to disable it in production too if you want extra performance.

v4.37.0

Compare Source

Features

  • add logging API (see #​9436 for details)

v4.36.1

Compare Source

Bugfixes

  • fix regression in 4.36.0 when using happypack

v4.36.0

Compare Source

Features

  • SourceMapDevToolPlugin append option now supports the default placeholders in addition to [url]
  • Arrays in resolve and parser options (Rule and Loader API) support backreferences with "..." when overriding options.

v4.35.3

Compare Source

Bugfixes

  • update acorn to include import()

Performance

  • Improved runtime performance for large JSON modules

v4.35.2

Compare Source

Bugfixes

  • realResource must match absolute paths

v4.35.1

Compare Source

Bugfixes

  • add realResource condition in rule to schema
  • fixes order of loaders when using a matchResource

v4.35.0

Compare Source

Features

  • ProgressPlugin limit output to column width in terminal
  • add Watching.suspend and Watching.resume
  • add splitChunks.automaticNameMaxLength and splitChunks.cacheGroups[x].automaticNameMaxLength

Bugfixes

  • webworker target now respect publicPath when loading chunks
  • holey arrays of configs will fail the validation

v4.34.0

Compare Source

Features

  • Error message when parsing fails shows used loaders now

Bugfixes

  • importing the namespace object from non-ESM (CJS) modules no longer leads to an warning
  • Error message in HMR logging works for Firefox too now
  • Parser understands block scoping now

v4.33.0

Compare Source

Features

  • add target: "electron-preload" for electron 5
    • renderer should use target: "web" in electron 5

Bugfixes

  • fix HMR rejection of removed and readded self-accepted modules
webpack/webpack-dev-server

v3.8.0

Compare Source

Bug Fixes
Features
Potential Breaking changes

We have migrated serverMode and clientMode to transportMode as an experimental option. If you want to use this feature, you have to change your settings.

Related PR: #​2116

3.7.2 (2019-06-17)
Bug Fixes
3.7.1 (2019-06-07)
Bug Fixes
  • retry finding port when port is null and get ports in sequence (#​1993) (bc57514)

v3.7.2

[Compare Source](https://github.com/webpack/w


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 if you modify the PR title to begin with "rebase!".

👻 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 Renovate Bot. View repository job log here.

@renovate renovate bot added the renovate label May 31, 2019
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch from 2fe30fd to a4b8567 Compare June 1, 2019 15:29
@renovate renovate bot changed the title chore(deps): update dependency webpack-dev-server to v3.5.0 chore(deps): update dependency webpack-dev-server to v3.5.1 Jun 1, 2019
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch from a4b8567 to 3051db2 Compare June 3, 2019 18:49
@renovate renovate bot changed the title chore(deps): update dependency webpack-dev-server to v3.5.1 chore(deps): update all minor dependencies Jun 3, 2019
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 11 times, most recently from 5c146c9 to 25c4d06 Compare June 10, 2019 15:05
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 2 times, most recently from 2a74db9 to eac5b6d Compare June 18, 2019 00:07
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 5 times, most recently from d1439a2 to 1da4a97 Compare June 24, 2019 20:49
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 7 times, most recently from c66c90e to 8191a89 Compare July 5, 2019 20:41
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 3 times, most recently from 817b267 to 918cf21 Compare July 26, 2019 07:51
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 7 times, most recently from 17d7a5d to 877c0dc Compare August 17, 2019 05:00
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 6 times, most recently from 309ec9d to 77f3ff7 Compare August 25, 2019 12:43
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch 4 times, most recently from aafa2ef to ba86306 Compare August 30, 2019 05:20
@renovate renovate bot force-pushed the renovate/all-minor-dependencies branch from ba86306 to 536bfb4 Compare September 1, 2019 13:02
@kmkzt kmkzt merged commit edba948 into master Sep 1, 2019
@kmkzt kmkzt deleted the renovate/all-minor-dependencies branch September 1, 2019 13:03
@renovate renovate bot mentioned this pull request Oct 21, 2019
1 task
@renovate renovate bot mentioned this pull request Apr 8, 2021
1 task
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.

2 participants