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 most non-major dependencies #3365

Merged
merged 1 commit into from
Jan 2, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 17, 2020

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/plugin-proposal-decorators 7.12.1 -> 7.12.12 age adoption passing confidence
@emotion/react 11.1.2 -> 11.1.4 age adoption passing confidence
@testing-library/jest-dom 5.11.6 -> 5.11.8 age adoption passing confidence
@wdio/cli 6.10.10 -> 6.10.11 age adoption passing confidence
@wdio/local-runner 6.10.10 -> 6.10.13 age adoption passing confidence
@wdio/mocha-framework 6.10.10 -> 6.10.11 age adoption passing confidence
@wdio/sync 6.10.10 -> 6.10.11 age adoption passing confidence
ava (source) 3.14.0 -> 3.15.0 age adoption passing confidence
com.networknt:json-schema-validator 1.0.45 -> 1.0.46 age adoption passing confidence
copy-webpack-plugin 6.4.0 -> 6.4.1 age adoption passing confidence
eslint (source) 7.15.0 -> 7.17.0 age adoption passing confidence
eslint-plugin-react 7.21.5 -> 7.22.0 age adoption passing confidence
graphiql 1.2.0 -> 1.2.1 age adoption passing confidence
html-react-parser 1.0.0 -> 1.1.1 age adoption passing confidence
i18n-iso-countries 6.3.0 -> 6.4.0 age adoption passing confidence
postcss (source) 8.2.1 -> 8.2.2 age adoption passing confidence
webdriverio (source) 6.10.10 -> 6.10.11 age adoption passing confidence
webpack-cli 4.2.0 -> 4.3.1 age adoption passing confidence
webpack-dev-server 3.11.0 -> 3.11.1 age adoption passing confidence
webpack-merge 5.7.1 -> 5.7.3 age adoption passing confidence

Release Notes

babel/babel

v7.12.12

Compare Source

🐛 Bug Fix
🏠 Internal
  • babel-polyfill
  • babel-helper-builder-react-jsx-experimental, babel-plugin-transform-react-jsx-development, babel-plugin-transform-react-jsx
  • babel-helper-fixtures, babel-helper-transform-fixture-test-runner, babel-plugin-proposal-async-generator-functions, babel-plugin-proposal-decorators
  • Other
emotion-js/emotion

v11.1.4

Compare Source

Patch Changes

v11.1.3

Compare Source

Patch Changes
testing-library/jest-dom

v5.11.8

Compare Source

Bug Fixes

v5.11.7

Compare Source

Bug Fixes
webdriverio/webdriverio

v6.10.11

Compare Source

🐛 Bug Fix
🏠 Internal
  • wdio-appium-service
    • #​6149 WIP refactor: rewrite wdio-appium-service src to TypeScript (@​ch-t)
  • wdio-cli, wdio-config, wdio-cucumber-framework, wdio-devtools-service, wdio-jasmine-framework, wdio-mocha-framework, wdio-runner, wdio-sync, wdio-utils, webdriver, webdriverio
  • wdio-concise-reporter, webdriver
Committers: 5
avajs/ava

v3.15.0

Compare Source

Automatic snapshot file removal

When you stop using snapshots in a test file, the next time you run ava --update-snapshots we'll remove the left-over snapshot files. Thanks @​ninevra! 4f093ab

TAP improvements

@​tymfear has been on a roll improving our TAP reporter. t.log() output is now compliant with the spec 99ab93a. Tests that did not run due to timeouts are now reported 98595da.

Next-generation configuration

AVA 4 will add full support for ESM configuration files as well as allowing you to have asynchronous factory functions a2f2614. If you're using Node.js 12 or later you can opt-in to these features in AVA 3 by enabling the nextGenConfig experiment. Say in an ava.config.mjs file:

export default {
	nonSemVerExperiments: {
		nextGenConfig: true
	},
	files: ['unit-tests/**/*]
};

This also allows you to pass an .mjs file using the --config argument.

With this experiment enabled, AVA will no longer have special treatment for ava.config.js files. Instead AVA follows Node.js' behavior, so if you've set "type": "module" you must use ESM, and otherwise you must use CommonJS.

You mustn't have an ava.config.mjs file next to an ava.config.js or ava.config.cjs file.


See avajs/ava@v3.14.0...v3.15.0 for all changes.

networknt/json-schema-validator

v1.0.46

Compare Source

Added
Changed
webpack-contrib/copy-webpack-plugin

v6.4.1

Compare Source

6.4.1 (2020-12-16)
Bug Fixes
eslint/eslint

v7.17.0

Compare Source

  • e128e77 Update: check logical assignment in no-constant-condition (#​13946) (Milos Djermanovic)
  • cc48713 Chore: refactor calculating range and loc in no-useless-escape (#​13964) (Milos Djermanovic)
  • 535fe47 Update: use regexpp's default ecmaVersion in no-control-regex (#​13969) (Milos Djermanovic)
  • 83e98cd Fix: use regexpp's default ecmaVersion in no-invalid-regexp (#​13968) (Milos Djermanovic)
  • 7297363 Docs: fix examples for no-multi-str (#​13966) (Milos Djermanovic)
  • 0649871 Update: add autofix to rule multiline-ternary (#​13958) (薛定谔的猫)
  • f6e7e32 Fix: no-useless-escape wrong loc and fix with CRLF in template elements (#​13953) (Milos Djermanovic)
  • 19c69c0 Fix: one-var shouldn't split declaration if it isn't in a statement list (#​13959) (Milos Djermanovic)
  • e451b96 Docs: update build tool for webpack (#​13962) (Sam Chen)
  • c3e9acc Chore: fix typos (#​13960) (YeonJuan)
  • 7289ecf Sponsors: Sync README with website (ESLint Jenkins)

v7.16.0

Compare Source

  • a62ad6f Update: fix false negative of no-extra-parens with NewExpression (#​13930) (Milos Djermanovic)
  • f85b4c7 Fix: require-atomic-updates false positive across await (fixes #​11954) (#​13915) (buhi)
  • 301d0c0 Fix: no-constant-condition false positives with unary expressions (#​13927) (Milos Djermanovic)
  • 555c128 Fix: false positive with await and ** in no-extra-parens (fixes #​12739) (#​13923) (Milos Djermanovic)
  • d93c935 Docs: update JSON Schema links (#​13936) (Milos Djermanovic)
  • 8d0c93a Upgrade: table@6.0.4 (#​13920) (Rouven Weßling)
  • 9247683 Docs: Remove for deleted npm run profile script (#​13931) (Brandon Mills)
  • ab240d4 Fix: prefer-exponentiation-operator invalid autofix with await (#​13924) (Milos Djermanovic)
  • dc76911 Chore: Add .pre-commit-hooks.yaml file (#​13628) (Álvaro Mondéjar)
  • 2124e1b Docs: Fix wrong rule name (#​13913) (noisyboy25)
  • 06b5809 Sponsors: Sync README with website (ESLint Jenkins)
  • 26fc12f Docs: Update README team and sponsors (ESLint Jenkins)
yannickcr/eslint-plugin-react

v7.22.0

Compare Source

graphql/graphiql

v1.2.1

Compare Source

Bug Fixes
  • display schema description if available (050c506)
  • fix linting issue (7117b7c)
remarkablemark/html-react-parser

v1.1.1

Compare Source

v1.1.0

Compare Source

Features
  • index: export domhandler node types (dfa0c19)
michaelwittig/node-i18n-iso-countries

v6.4.0

Compare Source

postcss/postcss

v8.2.2

Compare Source

  • Fixed CSS-in-JS support (by James Garbutt).
  • Fixed plugin types (by Ludovico Fischer).
  • Fixed Result#warn() types.
webpack/webpack-cli

v4.3.1

Compare Source

Bug Fixes

v4.3.0

Compare Source

Bug Fixes
  • fix problems with --mode and config resolution, there are situations when we resolve an invalid config file, the --mode option does not affect on config resolution, if you faced with an error after updating, please use the --config option
  • correct usage of cli-flags (#​2205) (c8fc7d1)
  • defer setting default mode to core (#​2095) (3eb410e)
  • respect the --watch-options-stdin option (2d1e001)
  • respect --color/--no-color option (#​2042) (09bd812)
  • stringify stats using streaming approach (#​2190) (9bf4e92)
  • use logger for error with proper exit code (#​2076) (2c9069f)
  • reduce spammy logs (#​2206) (9b3cc28)
  • respect the infrastructureLogging.level option (logger uses stderr) (#​2144) (7daccc7)
  • respect all options from command line for the server command
  • help and version output
  • respect stats from the config (webpack@4) (#​2098) (2d6e5c6)
  • fixed colors work with multi compiler mode (webpack@4)
Features
  • add bundle command (alias for webpack [options])
  • add pnpm support for package installation (#​2040) (46cba36)
webpack/webpack-dev-server

v3.11.1

Compare Source

3.11.1 (2020-12-29)
Bug Fixes
survivejs/webpack-merge

v5.7.3

Compare Source

  • Fix - Don't merge strings with objects in mergeWithRules. #​172

v5.7.2

Compare Source

  • Fix - If there's no match when using merge operation with mergeWithRules, use default merge behavior as a fallback. #​167

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 force-pushed the renovate/most-minor-patch branch 5 times, most recently from 2459f99 to b56b11e Compare December 21, 2020 15:53
Copy link
Contributor

@cemalettin-work cemalettin-work left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still yup version problem exist

@renovate renovate bot force-pushed the renovate/most-minor-patch branch 9 times, most recently from 1486adb to ba77e93 Compare December 28, 2020 17:46
@renovate renovate bot force-pushed the renovate/most-minor-patch branch 5 times, most recently from 50e0113 to 742eb11 Compare December 30, 2020 05:28
@cemalettin-work cemalettin-work self-requested a review December 30, 2020 08:00
@renovate renovate bot force-pushed the renovate/most-minor-patch branch from 45ef7de to 3d1e2f9 Compare January 2, 2021 03:15
@VassilIordanov VassilIordanov merged commit 29f84cb into candidate Jan 2, 2021
@VassilIordanov VassilIordanov deleted the renovate/most-minor-patch branch January 2, 2021 16:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants