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

fix(deps): update all dependencies #218

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 2, 2019

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node 12.7.3 -> 12.20.47 age adoption passing confidence
@types/webpack 4.39.1 -> 4.41.32 age adoption passing confidence
@​types/webpack-dev-server 3.1.7 -> 3.11.6 age adoption passing confidence
@types/yargs-parser 13.0.0 -> 13.1.0 age adoption passing confidence
autoprefixer 9.6.1 -> 9.8.8 age adoption passing confidence
browser-sync (source) 2.26.7 -> 2.27.9 age adoption passing confidence
chai (source) 4.2.0 -> 4.3.6 age adoption passing confidence
colors 1.3.3 -> 1.4.0 age adoption passing confidence
cordova-android 8.0.0 -> 8.1.0 age adoption passing confidence
cordova-ios 5.0.1 -> 5.1.1 age adoption passing confidence
css-loader 3.2.0 -> 3.6.0 age adoption passing confidence
current-device 0.8.2 -> 0.10.2 age adoption passing confidence
cz-customizable 6.2.0 -> 6.3.0 age adoption passing confidence
eslint (source) 6.3.0 -> 6.8.0 age adoption passing confidence
eslint-config-airbnb-base 14.0.0 -> 14.2.1 age adoption passing confidence
eslint-config-prettier 6.1.0 -> 6.15.0 age adoption passing confidence
eslint-plugin-import 2.18.2 -> 2.25.4 age adoption passing confidence
eslint-plugin-prettier 3.1.0 -> 3.4.1 age adoption passing confidence
eslint-plugin-promise 4.2.1 -> 4.3.1 age adoption passing confidence
eslint-plugin-standard 4.0.1 -> 4.1.0 age adoption passing confidence
glob 7.1.4 -> 7.2.0 age adoption passing confidence
gulp-replace 1.0.0 -> 1.1.3 age adoption passing confidence
gulp-shell 0.7.1 -> 0.8.0 age adoption passing confidence
gulp-zip 5.0.0 -> 5.1.0 age adoption passing confidence
husky (source) 3.0.5 -> 3.1.0 age adoption passing confidence
interpret 1.2.0 -> 1.4.0 age adoption passing confidence
js-yaml 3.13.1 -> 3.14.1 age adoption passing confidence
jshint (source) 2.10.2 -> 2.13.4 age adoption passing confidence
jsonschema 1.2.4 -> 1.4.0 age adoption passing confidence
karma-coverage 2.0.1 -> 2.2.0 age adoption passing confidence
lint-staged 9.2.5 -> 9.5.0 age adoption passing confidence
prettier (source) 1.18.2 -> 1.19.1 age adoption passing confidence
rechoir 0.7.0 -> 0.8.0 age adoption passing confidence
rollup (source) 1.20.3 -> 1.32.1 age adoption passing confidence
rollup-plugin-babel 4.3.3 -> 4.4.0 age adoption passing confidence
rollup-plugin-visualizer 2.5.4 -> 2.7.2 age adoption passing confidence
style-loader 1.0.0 -> 1.3.0 age adoption passing confidence
ts-loader 6.0.4 -> 6.2.2 age adoption passing confidence
typescript (source) 3.6.2 -> 3.9.10 age adoption passing confidence
uglify-js 3.6.0 -> 3.15.3 age adoption passing confidence
webpack 4.39.3 -> 4.46.0 age adoption passing confidence
webpack-dev-server 3.8.0 -> 3.11.3 age adoption passing confidence
xcode 2.0.0 -> 2.1.0 age adoption passing confidence

Release Notes

postcss/autoprefixer

v9.8.8

Compare Source

  • Replaced nanocolors with picocolors.
  • Reduced package size.

v9.8.7

Compare Source

  • Replaced colorette with nanocolors.
  • Reduced package size.

v9.8.6

Compare Source

  • Fixed env option.

v9.8.5

Compare Source

  • Improved Grid Layout warnings (by Daniel Tonon).
  • Fixed align-self and justify-self with display: flex (by Daniel Tonon).

v9.8.4

Compare Source

  • Replace color output library.

v9.8.3

Compare Source

  • Return old non-LTS Node.js versions to avoid breaking changes.

v9.8.2

Compare Source

  • Remove Node.js 13.0-13.7 from supported engines, because of buggy ESM support.

v9.8.1

Compare Source

  • Replace chalk to kleur (by Luke Edwards).
  • Update docs (by @​mbomb007).

v9.8.0

Compare Source

XCOM coat of arms

Autoprefixer 9.8 brings IE support for :placeholder-shown.

Placeholder Shown

@​tkrotoff found that input:placeholder-shown can be emulated with input:-ms-input-placeholder.

input:-ms-input-placeholder {
  box-shadow: 0 0 0 1px blue;
}

input:placeholder-shown {
  box-shadow: 0 0 0 1px blue;
}

Note, that we already had support for ::placeholder. Selector ::placeholder is for the text of the placeholder. :placeholder-shown is for the input, where placeholder text is shown. In ::placeholder you can’t change the border or size of the <input>.

v9.7.6

Compare Source

  • Revert -webkit-stretch fix.

v9.7.5

Compare Source

  • Fix -webkit-stretch support.

v9.7.4

Compare Source

  • Fix warning text (by Dmitry Ishkov).

v9.7.3

Compare Source

  • Fix compatibility with PostCSS Modules.

v9.7.2

Compare Source

  • Add -ms-user-select: element support.
  • Add funding link for npm fund.

v9.7.1

Compare Source

  • Avoid unnecessary transitions in prefixed selectors (by Andrey Alexandrov).
  • Fix fit-content for Firefox.

v9.7.0

Compare Source

Brotherhood of Steel coat of arms

Autoprefixer 9.7 brings AUTOPREFIXER_GRID environment variable and huge performance improvments.

Grid Environment Variable

Autoprefixer can add CSS Grid polyfills for IE. You need to manually enable it to prove that you understand the limits of polyfill.

In previous versions you can enable Grid polyfill by grid: 'autoplace' option or by /* autoprefixer grid: autoplace */ control comment. But in some cases, developers were not able to use both methods. For instance, during work with Material UI’ CSS-in-JS in Create React App.

Now Autoprefixer supports environment variable to enable CSS Grid polyfill:

AUTOPREFIXER_GRID=autoplace npm build

Performance Improvements

@​Knagis found that Browserslist takes 70% of the Autoprefixer time.

Autoprefixer 9.6.5 profiling

We did a lot of improvements in Browserslist and now Autoprefixer should work much faster.

67417985-a283e180-f5d2-11e9-879a-e364c9acccf1

Other

v9.6.5

Compare Source

  • Fix selector prefixing (by Andrey Alexandrov).

v9.6.4

Compare Source

  • Now the real fix for 'startsWith' of undefined error.

v9.6.3

Compare Source

  • Fix Cannot read property 'startsWith' of undefined error.

v9.6.2

Compare Source

  • Fix false Replace fill to stretch warning.
BrowserSync/browser-sync

v2.27.9

Compare Source

What's Changed

A bug prevented the help output from displaying - it was introduced when the CLI parser yargs was updated, and is now fixed :)

Full Changelog: BrowserSync/browser-sync@v2.27.8...v2.27.9

v2.27.8

Compare Source

This release upgrades Socket.io (client+server) to the latest versions - solving the following issues, and silencing security warning :)

PR:

Resolved Issues:

Thanks to @​lachieh for the original PR, which helped me land this fix

v2.27.7

Compare Source

v2.27.6

Compare Source

v2.27.5

Compare Source

v2.27.4

Compare Source

v2.27.3

Compare Source

v2.27.1

Compare Source

This release adds a feature to address BrowserSync/browser-sync#1882

Sometimes you don't want Browsersync to auto-inject it's connection snippet into your HTML - now you can disable it globally via either a CLI param or the new snippet option :)

browser-sync . --no-snippet

or in any Browsersync configuration

const config = {
  snippet: false,
};

the original request was related to Eleventy usage, so here's how that would look

eleventyConfig.setBrowserSyncConfig({
  snippet: false,
});

v2.26.14

Compare Source

This is a maintenance release to address 2 security related issues (socket.io & axios)

Happy Browsersync'in :)

v2.26.13

Compare Source

v2.26.12

Compare Source

v2.26.10

Compare Source

v2.26.9

Compare Source

chaijs/chai

v4.3.6

Compare Source

Update loupe to 2.3.1

v4.3.5

Compare Source

v4.3.4

Compare Source

This fixes broken inspect behavior with bigints (#​1321) (#​1383) thanks @​vapier

v4.3.3

Compare Source

This reintroduces Assertion as an export in the mjs file. See https://github.com/chaijs/chai/pull/1378 & https://github.com/chaijs/chai/issues/1375

v4.3.2

Compare Source

This fixes a regression in IE11. See https://github.com/chaijs/chai/pull/1380 & https://github.com/chaijs/chai/issues/1379

v4.3.1

Compare Source

This releases fixed an engine incompatibility with 4.3.0

The 4.x.x series of releases will be compatible with Node 4.0. Please report any errors found in Node 4 as bugs, and they will be fixed.

The 5.x.x series, when released, will drop support for Node 4.0

This fix also ensures pathval is updated to 1.1.1 to fix CVE-2020-7751

v4.3.0

Compare Source

This is a minor release.

Not many changes have got in since the last release but this one contains a very important change (#​1257) which will allow jest users to get better diffs. From this release onwards, jest users will be able to see which operator was used in their diffs. The operator is a property of the AssertionError thrown when assertions fail. This flag indicates what kind of comparison was made.

This is also an important change for plugin maintainers. Plugin maintainers will now have access to the operator flag, which they can have access to through an utilmethod calledgetOperator`.

Thanks to all the amazing people that contributed to this release.

New Features

  • Allow contain.oneOf to take an array of possible values (@​voliva)
  • Adding operator attribute to assertion error (#​1257) (@​rpgeeganage)
  • The closeTo error message will now inform the user when a delta is required (@​eouw0o83hf)

Docs

  • Add contains flag to oneOf documentation (@​voliva)

Tests

Chores

Marak/colors.js

v1.4.0

Compare Source

apache/cordova-android

v8.1.0

Compare Source

  • GH-827 chore: bump dependencies for release 8.1.0
  • GH-651 feat: added multiple selection for filepicker
  • GH-672 chore: compress files in /res with tinypng.com
  • GH-815 fix: clean command
  • GH-750 Don't request focus explicitly if not needed
  • GH-800 GH-799 (android) Stop webview from restarting when activity resizes
  • GH-764 feat: Build app bundles (.aab files)
  • GH-788 Simplify apkSorter using compare-func package
  • GH-787 Simplify and fix promise handling in specs
  • GH-784 Properly handle promise in create script
  • GH-783 Do not clobber process properties with test mocks
  • GH-782 Do not clobber console.log to spy on it
  • GH-724 Add Node.js 12 to CI Services
  • GH-777 ci(travis): set dist: trusty in .travis.yml
  • GH-779 Consistent order from ProjectBuilder.apkSorter
  • GH-778 test: use verbose spec reporter
  • GH-774 rewire workaround for NodeJS 12
  • GH-772 nyc@14 update in devDependencies
  • GH-765 ci(travis): Fix Android SDK
  • GH-713 Do not explicitly require modules from project directory
  • GH-676 Added allprojects repositories for Framework Release Builds
  • GH-699 Improve Gradle Build Arguments
  • GH-710 Fix deprecation warning in SystemCookieManager
  • GH-691 GH-690: Run prepare with the correct ConfigParser
  • GH-673 Updated Android_HOME Test to Follow GH-656 Change
apache/cordova-ios

v5.1.1

Compare Source

  • GH-726 fix: make prepare wait for add to finish
  • GH-728 chore: delete some useless characters

v5.1.0

Compare Source

  • GH-719 Add check for newer versions of cocoapods to avoid locking adding platforms on non synced pods repo
  • GH-715 feat: add optional compile-time decision for disabling UIWebView
  • GH-712 Update Xcode versions used in CI to latest minor release
  • GH-710 Lint everything
  • GH-614 Don't use whitespace as an indent indicator
  • GH-704 Reuse common xcodebuild arguments in npm scripts
  • GH-705 Let Jasmine handle async test results
  • GH-703 Reduce verbosity of xcodebuild output during tests
  • GH-702 Fix, simplify and improve tests
  • GH-695 fix: Support all valid SemVer syntax in version comparison helper
  • GH-608 chore: add Node.js 12 to CI services
  • GH-650 fix(build.json): spacing in error message and missing path in log
  • GH-646 tmp@0.1 update in devDependencies
  • GH-635 Bump default minDeploymentTarget to 10.0 in Podfile
  • GH-632 Update jasmine & fix broken tests
  • GH-622 Remove outdated component/duo package manager package definition
webpack-contrib/css-loader

v3.6.0

Compare Source

Features
3.5.3 (2020-04-24)
Bug Fixes
  • add file from an error to file dependencies (841423f)
  • avoid query string in source maps (#​1082) (f64de13)
3.5.2 (2020-04-10)
Bug Fixes
3.5.1 (2020-04-07)
Bug Fixes

v3.5.3

Compare Source

v3.5.2

Compare Source

v3.5.1

Compare Source

v3.5.0

Compare Source

Features
  • accept semver compatible postcss AST (#​1049) (14c4faa)
  • allow to determinate css modules using the modules.auto option, please look at an example of how you can simplify the configuration. (#​1067) (c673cf4)
  • the modules.exportGlobals option for export global classes and ids (#​1069) (519e5f4)
  • the modules.mode option may be a function (#​1065) (0d8ac3b)
3.4.2 (2020-01-10)
Bug Fixes
3.4.1 (2020-01-03)
Bug Fixes
  • do not output undefined when sourceRoot is unavailable (#​1036) (ded2a79)
  • don't output invalid es5 code when locals do not exists (#​1035) (b60e62a)

[v3.4.2](https://togithub.com/webpack-contrib/css-loader/blob/HEAD/CHANGELOG.md#&#8203;342-httpsgithubcomwebpack-contribcss-loadercomparev341v342-202


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, click this checkbox.

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

@renovate renovate bot force-pushed the renovate/all-dependencies branch from 27e5d6c to 966c753 Compare September 3, 2019 16:04
@renovate renovate bot changed the title chore(deps): update dependency @typescript-eslint/eslint-plugin to v2.1.0 chore(deps): update all dependencies Sep 3, 2019
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 966c753 to f19054a Compare September 3, 2019 18:51
@renovate renovate bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies Sep 3, 2019
@renovate renovate bot force-pushed the renovate/all-dependencies branch 4 times, most recently from 19718c7 to 268bef9 Compare September 6, 2019 17:40
@renovate renovate bot changed the title fix(deps): update all dependencies chore(deps): update all dependencies Sep 6, 2019
@renovate renovate bot force-pushed the renovate/all-dependencies branch 14 times, most recently from e4ead3e to 8586082 Compare September 14, 2019 17:47
@renovate renovate bot force-pushed the renovate/all-dependencies branch 7 times, most recently from a89a365 to 9b14c25 Compare September 17, 2019 07:18
@renovate renovate bot force-pushed the renovate/all-dependencies branch from ea0a617 to c41f900 Compare December 22, 2019 03:51
@renovate renovate bot force-pushed the renovate/all-dependencies branch from c41f900 to a8c2a40 Compare December 31, 2019 19:54
@renovate renovate bot force-pushed the renovate/all-dependencies branch from a8c2a40 to 8dc5827 Compare January 18, 2020 23:56
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 8dc5827 to 70be5c1 Compare February 9, 2020 08:00
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 70be5c1 to 820069a Compare February 19, 2020 15:58
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 820069a to 9249b26 Compare March 11, 2020 06:00
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 9249b26 to c1ad32d Compare April 28, 2020 04:59
@renovate renovate bot force-pushed the renovate/all-dependencies branch from c1ad32d to 162f0cd Compare May 7, 2020 21:59
@renovate renovate bot force-pushed the renovate/all-dependencies branch 2 times, most recently from 4b7816e to ef0e734 Compare July 4, 2020 17:59
@renovate renovate bot force-pushed the renovate/all-dependencies branch from ef0e734 to a23b560 Compare August 27, 2020 02:57
@renovate renovate bot force-pushed the renovate/all-dependencies branch from a23b560 to 872aeec Compare October 27, 2020 10:58
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 872aeec to 4874cb8 Compare November 27, 2020 09:56
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 4874cb8 to dbc0107 Compare December 10, 2020 14:01
@renovate renovate bot force-pushed the renovate/all-dependencies branch from dbc0107 to feede99 Compare January 6, 2021 21:55
@renovate renovate bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies Jan 6, 2021
@renovate renovate bot force-pushed the renovate/all-dependencies branch from feede99 to a1ece44 Compare January 10, 2021 13:50
@renovate renovate bot force-pushed the renovate/all-dependencies branch from a1ece44 to 317c950 Compare January 23, 2021 21:00
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 317c950 to 5c713f0 Compare February 3, 2021 10:51
@renovate renovate bot force-pushed the renovate/all-dependencies branch 2 times, most recently from 4e0de6f to 88739f6 Compare February 11, 2021 09:04
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 88739f6 to d143eca Compare April 26, 2021 13:01
@renovate renovate bot force-pushed the renovate/all-dependencies branch 2 times, most recently from 760ac08 to 597c843 Compare May 15, 2021 20:10
@renovate renovate bot force-pushed the renovate/all-dependencies branch 2 times, most recently from 3382a59 to 5022071 Compare June 12, 2021 18:10
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 5022071 to 8f0f4a5 Compare October 18, 2021 16:11
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 8f0f4a5 to 414a0b5 Compare March 7, 2022 14:04
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 414a0b5 to fa958c4 Compare March 26, 2022 12:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant