Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Update all dependencies - autoclosed #494

Closed
wants to merge 1 commit into from
Closed

Update all dependencies - autoclosed #494

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 21, 2019

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/cli (source) ^7.14.5 -> ^7.14.8 age adoption passing confidence
@babel/core (source) ^7.14.6 -> ^7.15.0 age adoption passing confidence
@babel/preset-env (source) ^7.14.7 -> ^7.15.0 age adoption passing confidence
@fortawesome/fontawesome-svg-core (source) ^1.2.35 -> ^1.2.36 age adoption passing confidence
@fortawesome/free-regular-svg-icons (source) ^5.15.3 -> ^5.15.4 age adoption passing confidence
@fortawesome/free-solid-svg-icons (source) ^5.15.3 -> ^5.15.4 age adoption passing confidence
@fortawesome/react-fontawesome ^0.1.14 -> ^0.1.15 age adoption passing confidence
color ^3.1.3 -> ^4.0.1 age adoption passing confidence
css-loader ^5.2.6 -> ^6.2.0 age adoption passing confidence
es-check ^5.2.4 -> ^6.0.0 age adoption passing confidence
eslint (source) ^7.30.0 -> ^7.32.0 age adoption passing confidence
eslint-plugin-import ^2.23.4 -> ^2.24.2 age adoption passing confidence
eslint-plugin-react ^7.24.0 -> ^7.25.1 age adoption passing confidence
highlight.js (source) ^11.0.1 -> ^11.2.0 age adoption passing confidence
husky (source) ^7.0.1 -> ^7.0.2 age adoption passing confidence
plotly.js 2.2.1 -> 2.4.2 age adoption passing confidence
react (source) ^16.14.0 -> ^17.0.2 age adoption passing confidence
react-dom (source) ^16.14.0 -> ^17.0.2 age adoption passing confidence
react-jsx-parser 1.21.0 -> 1.28.4 age adoption passing confidence
react-markdown ^4.3.1 -> ^7.0.1 age adoption passing confidence
react-resize-detector ^6.7.4 -> ^6.7.6 age adoption passing confidence
style-loader ^3.0.0 -> ^3.2.1 age adoption passing confidence
styled-jsx ^3.4.4 -> ^4.0.1 age adoption passing confidence
uniqid ^5.3.0 -> ^5.4.0 age adoption passing confidence
webpack ^5.43.0 -> ^5.51.1 age adoption passing confidence
webpack-cli ^4.7.2 -> ^4.8.0 age adoption passing confidence

Release Notes

babel/babel

v7.14.8

Compare Source

👓 Spec Compliance
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-class-static-block, babel-plugin-transform-new-target
  • babel-parser
  • babel-helper-module-transforms, babel-helper-simple-access, babel-plugin-transform-modules-commonjs
🐛 Bug Fix
💅 Polish
📝 Documentation
🏠 Internal
🏃‍♀️ Performance
FortAwesome/Font-Awesome

v5.15.4

Compare Source

Changed
  • Removed the tripadvisor brand icon by request of Tripadvisor
  • Update bug, bullseye, drone, icons #​17800 #​17106 #​17730
  • Update bootstrap, discord, figma, and font-awesome-* brand icons #​17436
Fixed

FortAwesome/react-fontawesome

v0.1.15

Compare Source

Fixed
  • Skip parse.icon if the icon is imported directly from an icon package

Qix-/color

v4.0.1

Compare Source

Patch Release 4.0.1

  • Remove no-op in integer constructor (#​208)
  • Fixed var to const in readme

v4.0.0

Compare Source

Major Release 4.0.0

NOTE: "Major" here used loosely. This release is an interim major release that introduces ES6 syntax into the package without changing the import method (require()). There will be a follow-up major release that switches entirely to ESM and will set the appropriate engine key in package.json. This was just a necessary first step to allow those who don't (yet) use ESModules a sane place to upgrade and pin to.

  • Move ES6 syntax (i.e. const/let, still using require)

v3.2.1

Compare Source

Patch Release 3.2.1
  • Revert color-convert back down to <2 since v2 introduced ES6 syntax.

If you need color-convert@>=2 then you'll need to have ES6 support. It's 2021, embrace it. 🙂

v3.2.0

Compare Source

Minor Release 3.2.0

NOTE: This is the final release of color that uses ES5 syntax. For those following along, 4.0.0 was just released that switches to ES6 (const/let) syntax, which will (at some point) be followed by another major release that further switches to ES Modules entirely. This will be a sweeping change across the color package suite (color, color-string, color-convert). Keep a look out if these issues have been bothering you.

  • Bumps color convert to latest (fixes some issues with HCG)
  • Bumps mocha to latest

v3.1.4

Compare Source

Patch Release 3.1.4

  • Bumped color-string to latest version, resolving problems for users using package-lock.json files and adding support for space-separated hsl() syntax.
webpack-contrib/css-loader

v6.2.0

Compare Source

Features
  • allow the exportLocalsConvention option can be a function useful for named export (#​1351) (3c4b357)

v6.1.0

Compare Source

Features
Bug Fixes

v6.0.0

Compare Source

Notes
  • using ~ is deprecated when the esModules option is enabled (enabled by default) and can be removed from your code (we recommend it) (url(~package/image.png) -> url(package/image.png), @import url(~package/style.css) -> @import url(package/style.css), composes: import from '~package/one.css'; -> composes: import from 'package/one.css';), but we still support it for historical reasons. Why can you remove it? The loader will first try to resolve @import/url()/etc as relative, if it cannot be resolved, the loader will try to resolve @import/url()/etc inside node_modules or modules directories.
  • file-loader and url-loader are deprecated, please migrate on asset modules, since v6 css-loader is generating new URL(...) syntax, it enables by default built-in assets modules, i.e. type: 'asset' for all url()
⚠ BREAKING CHANGES
  • minimum supported Node.js version is 12.13.0
  • minimum supported webpack version is 5, we recommend to update to the latest version for better performance
  • for url and import options Function type was removed in favor Object type with the filter property, i.e. before { url: () => true }, now { url: { filter: () => true } } and before { import: () => true }, now { import: { filter: () => true } }
  • the modules.compileType option was removed in favor the modules.mode option with icss value, also the modules option can have icss string value
  • new URL() syntax used for url(), only when the esModules option is enabled (enabled by default), it means you can bundle CSS for libraries
  • data URI are handling in url(), it means you can register loaders for them, example
  • aliases with false value for url() now generate empty data URI (i.e. data:0,), only when the esModules option is enabled (enabled by default)
  • [ext] placeholder don't need . (dot) before for the localIdentName option, i.e. please change .[ext] on [ext] (no dot before)
  • [folder] placeholder was removed without replacement for the localIdentName option, please use a custom function if you need complex logic
  • [emoji] placeholder was removed without replacement for the localIdentName option, please use a custom function if you need complex logic
  • the localIdentHashPrefix was removed in favor the localIdentHashSalt option
Features
  • supported resolve.byDependency.css resolve options for @import
  • supported resolve.byDependency.icss resolve CSS modules and ICSS imports (i.e. composes/etc)
  • added modules.localIdentHashFunction, modules.localIdentHashDigest, modules.localIdentHashDigestLength options for better class hashing controlling
  • less dependencies
Bug Fixes
  • better performance
  • fixed circular @import
Notes
  • we strongly recommend not to add .css to resolve.extensions, it reduces performance and in most cases it is simply not necessary, alternative you can set resolve options by dependency
5.2.7 (2021-07-13)
Bug Fixes
  • fix crash when source map is unavailable with external URL in [@import](https://togithub.com/import) (bb76fe4)
5.2.6 (2021-05-24)
Bug Fixes
  • always write locals export when css modules/icss enabled (#​1315) (075d9bd)
5.2.5 (2021-05-20)
Bug Fixes
5.2.4 (2021-04-19)
Bug Fixes
5.2.3 (2021-04-19)
Bug Fixes
  • improve performance
5.2.2 (2021-04-16)
Bug Fixes
  • avoid escape nonASCII characters in local names (0722733)
5.2.1 (2021-04-09)
Bug Fixes

v5.2.7

Compare Source

yowainwright/es-check

v6.0.0

Compare Source

eslint/eslint

v7.32.0

Compare Source

v7.31.0

Compare Source

import-js/eslint-plugin-import

v2.24.2

Compare Source

Fixed
  • [named], [namespace]: properly handle ExportAllDeclarations ([#​2199], thanks [@​ljharb])

v2.24.1

Compare Source

Fixed
Changed

v2.24.0

Compare Source

Added
Fixed
  • [no-duplicates]: ensure autofix avoids excessive newlines ([#​2028], thanks [@​ertrzyiks])
  • [extensions]: avoid crashing on partially typed import/export statements ([#​2118], thanks [@​ljharb])
  • [no-extraneous-dependencies]: add ESM intermediate package.json support ([#​2121], thanks [@​paztis])
  • Use context.getPhysicalFilename() when available (ESLint 7.28+) ([#​2160], thanks [@​pmcelhaney])
  • [extensions]/importType: fix isScoped treating @​/abc as scoped module ([#​2146], thanks [@​rperello])
Changed
yannickcr/eslint-plugin-react

v7.25.1

Compare Source

Fixed
  • [no-this-in-sfc], component detection: Improve stateless component detection (#​3056 @​Wesitos)

v7.25.0

Compare Source

Added
Fixed
Changed
highlightjs/highlight.js

v11.2.0

Compare Source

Build:

Parser:

Grammars:

New Languages:

v11.1.0

Compare Source

Grammars:

typicode/husky

v7.0.2

Compare Source

Fix pre-commit hook in WebStorm (#​1023)

plotly/plotly.js

v2.4.2

Compare Source

Fixed
  • Fix positioning unified hover box when div has zero height
    (regression introduced in 2.3.0) [#​5913]

v2.4.1

Compare Source

Fixed
  • Fix double click legends when groupclick is set to "toggleitem" [#​5909]

v2.4.0

Compare Source

Added

Configuration

📅 Schedule: "before 2am" (UTC).

🚦 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/all branch 10 times, most recently from 25e24b0 to 24ded66 Compare March 27, 2019 02:50
@renovate renovate bot force-pushed the renovate/all branch 9 times, most recently from 4e56b2d to e1f32da Compare April 4, 2019 01:59
@renovate renovate bot force-pushed the renovate/all branch 11 times, most recently from 691b9ff to fb21bc1 Compare April 11, 2019 17:53
@renovate renovate bot force-pushed the renovate/all branch 10 times, most recently from f76d8d6 to dba83dd Compare August 11, 2021 08:29
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from a9a66d9 to 5e19345 Compare August 18, 2021 10:01
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 9c1a020 to bb81446 Compare August 25, 2021 02:04
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 3bb61a8 to 387a792 Compare August 30, 2021 15:26
@renovate renovate bot changed the title Update all dependencies Update all dependencies - autoclosed Nov 4, 2021
@renovate renovate bot closed this Nov 4, 2021
@renovate renovate bot deleted the renovate/all branch November 4, 2021 16:31
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant