Skip to content

chore(deps): update dependency styled-components to v5#323

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/styled-components-5.x
Open

chore(deps): update dependency styled-components to v5#323
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/styled-components-5.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 20, 2020

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
styled-components (source) ^4.4.1 -> ^5.0.0 age adoption passing confidence

Release Notes

styled-components/styled-components

v5.3.5

Add statement of solidarity against the war on Ukraine 🇺🇦

v5.3.3

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v5.3.1...v5.3.3

v5.3.1

Compare Source

  • Fix forced server-side mode not triggering global styles (See #​3566)

  • Fix SSR collisions caused by insufficient hash inputs and reordering of groups on the client, which is a regression in v5.2.0 (See #​3563)

  • Fix dynamic creation React warning for React v18, backported to v5 by @​lynndylanhurley (See #​3564)

  • Add missing typeof window check when checking for duplicate instances of styled-components (See #​3553)

  • Prevent ServerStyleSheet from emitting empty style tags, which would cause issues in IE11 (See #​3555)

  • Support css tagged templates inside style objects, by @​roginfarrer and @​dvingo (See #​3469)

v5.3.0

Compare Source

  • Pass elementToBeCreated as a third parameter to shouldForwardProp so that the user-specified function can decide whether to pass through props based on whether the created element will be a tag or another component. (see #​3436)

  • Fix React Native components accepts function as style prop. (see #​3389)

v5.2.3

Compare Source

fix an issue with an unguarded window accessor in a SSR path (see #​3446)

v5.2.2

Compare Source

  • For React Native based components, pass testID down to the native component if specified for an easier time testing. (see #​3365)

  • Enable users of the babel macro to customize the styled-components import with importModuleName (see #​3422)

  • [fix] COMPLEX_SELECTOR_PREFIX.includes wasn't transpiled (see #​3397)

v5.2.1

Compare Source

  • Tweak server-side build settings to resolve an issue with jest-dom not being able to pick up generated styles (see #​3308) thanks @​Lazyuki

v5.2.0

Compare Source

  • Make sure StyleSheetManager renders all styles in iframe / child windows (see #​3159) thanks @​eramdam!

  • Rework how components self-reference in extension scenarios (see #​3236); should fix a bunch of subtle bugs around patterns like & + &

  • Fix keyframes not receiving a modified stylis instance when using something like stylis-plugin-rtl (see #​3239)

  • Big performance gain for components using style objects (see #​3239)

  • We no longer emit dynamic classNames for empty rulesets, so some className churn may occur in snapshots

  • Preallocate global style placement to ensure cGS is consistently inserted at the top of the stylesheet; note that this is done in runtime order so, if you have multiple cGS that have overlapping styles, ensure they're defined in code in the sequence you would want them injected (see #​3239)

  • Add "engines" to package.json (currently set to Node 10, the oldest supported LTS distribution) (see #​3201) thanks @​MichaelDeBoey!

  • Allow DISABLE_SPEEDY to be set to false to enable speedy mode in non-production environments (see #​3289) thanks @​FastFedora!

  • Enable new style rules can be inserted in the middle of existing sheet when rendering on client after rehydrate. GroupIDAllocator is now changed to find nextFreeGroup by checking reverseRegister, instead of setting it to the end of existing groups. (see #​3233) thanks @​mu29!

v5.1.1

Compare Source

New Functionality
  • Implement shouldForwardProp API for native and primitive platforms, which was previously missing in [v5.1.0] (see #​3093)
    This has been released under a patch bump instead of a minor, since it's only been missing from Native-support.
Bugfixes
  • Added useTheme hook to named exports for react-primitives entrypoint (see #​2982) thanks @​jladuval!
  • Escape every CSS ident character necessary when converting component display names to class names (see #​3102) thanks @​kripod!

v5.1.0

Compare Source

New Functionality
  • Add shouldForwardProp API (almost the same as emotion's, just a slightly different usage pattern); https://github.com/styled-components/styled-components/pull/3006

    Sometimes when composing multiple higher-order components together, it's possible to get into scenarios when multiple layers consume props by the same name. In the past we've introduced various workarounds for popular props like "as" but this power-user API allows for more granular customization of what props are passed down to descendant component children when using the styled() HOC wrapper.

    When combined with other APIs like .attrs() this becomes a very powerful constellation of abilities.

    Here's how you use it:

    const Comp = styled('div').withConfig({
      shouldForwardProp: (prop, defaultValidatorFn) => !['filterThis'].includes(prop),
    })`
      color: red;
    `;
    
    render(<Comp filterThis="abc" passThru="def" />);

v5.0.1

Compare Source

  • Added useTheme hook to named exports for react native

  • Performance enhancements

    • Refactored hashing function that is a bit faster in benchmarks
    • Fixed a bitwise math issue that was causing SSR performance degradations due to how we allocate typed arrays under the hood
  • Added some helpful new dev-time warnings for antipatterns

    • Recommending against usage of css @import inside createGlobalStyle and what to do instead
    • Catching and warning against dynamic creation of styled-components inside other component render paths

v5.0.0

Compare Source

Read the v5 release announcement!

  • 19% smaller bundle size
  • 18% faster client-side mounting
  • 17% faster updating of dynamic styles
  • 45% faster server-side rendering
  • RTL support

NOTE: At this time we recommend not using @import inside of createGlobalStyle. We're working on better behavior for this functionality but it just doesn't really work at the moment and it's better if you just embed these imports in your HTML index file, etc.

  • StyleSheetManager enhancements
    • you can now supply stylis plugins like stylis-plugin-rtl; <StyleSheetManager stylisPlugins={[]}>...</StyleSheetManager>
    • disableVendorPrefixes removes autoprefixing if you don't need legacy browser support; <StyleSheetManager disableVendorPrefixes>...</StyleSheetManager>
    • disableCSSOMInjection forces using the slower injection mode if other integrations in your runtime environment can't parse CSSOM-injected styles; <StyleSheetManager disableCSSOMInjection>...</StyleSheetManager>
  • Remove deprecated attrs "subfunction" syntax variant

    styled.div.attrs({ color: p => p.color });

    should become

    styled.div.attrs(p => ({ color: p.color }));

    You can still pass objects to attrs but individual properties shouldn't have functions that receive props anymore.

  • Fix attrs not taking precedence over props when overriding a given prop

  • (ReactNative) upgrade css-to-react-native to v3 (changelog)

    • Removed support for unitless line height in font shorthand
  • Replace merge-anything with mixin-deep to save some bytes (this is what handles merging of defaultProps between folded styled components); this is inlined into since the library is written in IE-incompatible syntax

  • Fix certain adblockers messing up styling by purposefully not emitting the substring "ad" (case-insensitive) when generating dynamic class names

  • Fix regressed behavior between v3 and v4 where className was not correctly aggregated between folded .attrs invocations


Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

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

@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from cd1f168 to 548cac8 Compare January 23, 2020 19:31
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 2 times, most recently from 12a3213 to dc7bb79 Compare February 7, 2020 19:33
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 2 times, most recently from fc4e4fa to 3c199a7 Compare February 10, 2020 19:55
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from 3c199a7 to 93eb46d Compare March 4, 2020 21:55
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 3 times, most recently from e76b733 to 3406923 Compare March 20, 2020 20:38
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from 3406923 to 8c89c18 Compare April 13, 2020 19:55
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from 8c89c18 to bdd7979 Compare May 15, 2020 19:08
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from bdd7979 to a92b669 Compare June 12, 2020 19:23
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from a92b669 to 5e3b574 Compare June 19, 2020 19:38
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 2 times, most recently from 9209593 to 7ec03f9 Compare July 14, 2020 01:07
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from 7ec03f9 to a5caf34 Compare July 22, 2020 00:08
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 3 times, most recently from 25899a5 to 402546b Compare July 31, 2020 20:35
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from 402546b to 387bc9a Compare August 10, 2020 22:39
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 5 times, most recently from 6ac7559 to e4c3629 Compare September 10, 2020 23:54
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from e4c3629 to ee1abbb Compare September 11, 2020 23:20
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 2 times, most recently from 6ed5bdd to 92a073a Compare September 22, 2020 20:52
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from 92a073a to 726bda2 Compare September 30, 2020 18:21
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 2 times, most recently from 13a84e9 to 12f8134 Compare December 15, 2020 21:42
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 2 times, most recently from 1a8f5a1 to 3489747 Compare January 15, 2021 22:55
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 5 times, most recently from 6c44fdb to 9978b9d Compare February 8, 2021 20:35
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from 9978b9d to 80bce99 Compare February 16, 2021 18:44
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 3 times, most recently from 5cf3e1c to e7ede8b Compare March 2, 2021 23:14
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 3 times, most recently from 64d8aa2 to 11f90d0 Compare March 23, 2021 21:54
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 3 times, most recently from e1fb4f4 to ff8ba2b Compare April 19, 2021 11:29
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 3 times, most recently from ae176c4 to a8c9f7a Compare June 10, 2021 23:33
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 2 times, most recently from 595ee07 to c39fb1b Compare June 29, 2021 00:21
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch 2 times, most recently from 4a925bc to 6ea97ba Compare July 1, 2021 00:39
@renovate renovate bot force-pushed the renovate/styled-components-5.x branch from 6ea97ba to f3944ff Compare July 14, 2021 01:34
@renovate
Copy link
Contributor Author

renovate bot commented Mar 8, 2022

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm WARN deprecated read-package-tree@5.3.1: The functionality that this package provided is now in @npmcli/arborist
npm WARN deprecated source-map-resolve@0.5.3: See https://github.com/lydell/source-map-resolve#deprecated
npm WARN deprecated source-map-url@0.4.1: See https://github.com/lydell/source-map-url#deprecated
npm WARN deprecated urix@0.1.0: Please see https://github.com/lydell/urix#deprecated
npm WARN deprecated resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated
npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
npm WARN deprecated har-validator@5.1.5: this library is no longer supported
npm WARN deprecated uuid@3.4.0: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated mkdirp-promise@5.0.1: This package is broken and no longer maintained. 'mkdirp' itself supports promises now, please switch to that.
npm WARN @octokit/plugin-request-log@1.0.4 requires a peer of @octokit/core@>=3 but none is installed. You must install peer dependencies yourself.

lerna notice cli v3.22.1
lerna info versioning independent
lerna notice cli v3.22.1
lerna info versioning independent
lerna info Bootstrapping 25 packages
lerna info Installing external dependencies
lerna ERR! npm install --ignore-scripts --ignore-scripts --no-audit --package-lock-only exited 1 in '@tds/community-skeleton-provider'
lerna ERR! npm install --ignore-scripts --ignore-scripts --no-audit --package-lock-only stderr:
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: @tds/community-skeleton-provider@2.3.1
npm ERR! Found: react@17.0.2
npm ERR! node_modules/react
npm ERR!   peer react@"^16.8.2 || ^17.0.0" from the root project
npm ERR!   peer react@"^16.8.2 || ^17.0.0" from @tds/core-heading@3.1.3
npm ERR!   node_modules/@tds/core-heading
npm ERR!     peer @tds/core-heading@"^2.2.5 || ^3.1.0" from the root project
npm ERR!   4 more (react-dom, styled-components, @tds/core-image, @tds/core-text)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! recompose@"^0.30.0" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: react@16.14.0
npm ERR! node_modules/react
npm ERR!   peer react@"^0.14.0 || ^15.0.0 || ^16.0.0" from recompose@0.30.0
npm ERR!   node_modules/recompose
npm ERR!     recompose@"^0.30.0" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate-cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate-cache/others/npm/_logs/2022-04-12T12_13_04_766Z-debug-0.log

lerna ERR! npm install --ignore-scripts --ignore-scripts --no-audit --package-lock-only exited 1 in '@tds/community-skeleton-provider'

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.

1 participant