szb512 / etcher

Flash OS images to SD cards & USB drives, safely and easily.
https://etcher.io
Apache License 2.0
0 stars 0 forks source link

Bump styled-components from 3.4.10 to 4.1.3 #29

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps styled-components from 3.4.10 to 4.1.3.

Release notes *Sourced from [styled-components's releases](https://github.com/styled-components/styled-components/releases).* > ## v4.1.2 > - Fix function-form attrs to receive the full execution context (including theme) (see [#2210](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2210)) > > - Adjust `innerRef` deprecation warning to not be fired if wrapping a custom component, since that underlying component may not be on forwardRef yet and actually using the prop (see [#2211](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2211)) > > - Expose the `ThemeConsumer` and `ThemeContext` exports for the native and primitives entries (see [#2217](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2217)) > > - Remove `createGlobalStyle` multimount warning; Concurrent and Strict modes intentionally render the same component multiple times, which causes this warning to be triggered always even when usage is correct in the application (see [#2216](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2216)) > > - Folded components are now targetable via component selector as in v3 if you used the old `.extend` API (see [#2239](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2239)) > > - Don't treat uppercased strings as tag-like components and don't filter out props from them (see [#2225](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2225)) > > ## v4.1.1 > - Put back the try/catch guard around a part of the flattener that sometimes receives undetectable SFCs (fixes an errant hard error in an edge case) > > ## v4.1.0 > - Performance optimization for fully static (no function interpolation) styled-components by avoiding using `ThemeConsumer` since it isn't necessary, by [@​mxstbr](https://github.com/mxstbr) (see [#2166](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2166)) > > - Allow disabling "speedy" mode via global `SC_DISABLE_SPEEDY` variable, by [@​devrelm](https://github.com/devrelm) (see [#2185](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2185)) > > To make use of this, you can either set `SC_DISABLE_SPEEDY` in your app's entry file or use something like `webpack.DefinePlugin` to do it at build time: > > ```js > webpack.DefinePlugin({ > SC_DISABLE_SPEEDY: true, > }); > ``` > > - Attrs can now be passed a function (see [#2200](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2200)); thanks [@​oliverlaz](https://github.com/oliverlaz) for providing an early PoC PR for this! > > e.g.: > > ```js > styled.div.attrs(props => ({ 'aria-title': props.title }))``; > ``` > > - Fix the `warnTooManyClasses` dev helper not being totally dead code eliminated in production (see [#2200](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2200)) > > - Deprecate functions as object keys for object-form attrs (see [#2200](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2200)) > > e.g.: > > ```js > styled.div.attrs({ 'aria-title': props => props.title })``; // bad > styled.div.attrs(props => ({ 'aria-title': props.title }))``; // good > ``` > > Support for this will be removed in styled-components v5. The primary impetus behind this change is to eliminate confusion around basic functions vs styled-components vs React components provided as values in the object-form attrs constructor, each of which has different handling behaviors. The single outer function to receive the props and then return a props object is conceptually simpler. > > ... (truncated)
Changelog *Sourced from [styled-components's changelog](https://github.com/styled-components/styled-components/blob/master/CHANGELOG.md).* > ## [v4.1.3] - 2018-12-17 > > - Under the hood code cleanup of the Babel macro, by [@​lucleray](https://github.com/lucleray) (see [#2286](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2286)) > > ## [v4.1.2] - 2018-11-28 > > - Fix function-form attrs to receive the full execution context (including theme) (see [#2210](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2210)) > > - Adjust `innerRef` deprecation warning to not be fired if wrapping a custom component, since that underlying component may not be on forwardRef yet and actually using the prop (see [#2211](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2211)) > > - Expose the `ThemeConsumer` and `ThemeContext` exports for the native and primitives entries (see [#2217](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2217)) > > - Remove `createGlobalStyle` multimount warning; Concurrent and Strict modes intentionally render the same component multiple times, which causes this warning to be triggered always even when usage is correct in the application (see [#2216](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2216)) > > - Folded components are now targettable via component selector as in v3 if you used the old `.extend` API (see [#2239](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2239)) > > - Don't treat uppercased strings as tag-like components and don't filter out props from them (see [#2225](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2225)) > > ## [v4.1.1] - 2018-11-12 > > - Put back the try/catch guard around a part of the flattener that sometimes receives undetectable SFCs (fixes an errand hard error in an edge case) > > ## [v4.1.0] - 2018-11-12 > > - Performance optimization for fully static (no function interpolation) styled-components by avoiding using `ThemeConsumer` since it isn't necessary, by [@​mxstbr](https://github.com/mxstbr) (see [#2166](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2166)) > > - Allow disabling "speedy" mode via global `SC_DISABLE_SPEEDY` variable, by [@​devrelm](https://github.com/devrelm) (see [#2185](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2185)) > > To make use of this, you can either set `SC_DISABLE_SPEEDY` in your app's entry file or use something like `webpack.DefinePlugin` to do it at build time: > > ```js > webpack.DefinePlugin({ > SC_DISABLE_SPEEDY: true, > }); > ``` > > - Attrs can now be passed a function (see [#2200](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2200)); thanks [@​oliverlaz](https://github.com/oliverlaz) for providing an early PoC PR for this! > > e.g.: > > ```js > styled.div.attrs(props => ({ 'aria-title': props.title }))``; > ``` > > - Fix the `warnTooManyClasses` dev helper not being totally dead code eliminated in production (see [#2200](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2200)) > > - Deprecate functions as object keys for object-form attrs (see [#2200](https://github-redirect.dependabot.com/styled-components/styled-components/pull/2200)) > > e.g.: > > ... (truncated)
Commits - See full diff in [compare view](https://github.com/styled-components/styled-components/commits)


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.