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 dependency styled-components to v3 #54

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jan 22, 2018

This Pull Request updates dependency styled-components from v2.3.3 to v3.2.3

Release Notes

v2.4.0

  • remove some extra information from the generated hash that can differ between build environments (see #​1381)

v3.0.1

  • Add support for SafeAreaView when using styled-components in a React Native project (see #​1339)

  • Remove support for deprecated Navigator when using styled-components in a React Native project (see #​1339)

  • Ship flat bundles for each possible entry, thanks to [@​Andarist] (see #​1362)

  • Add ESLint precommit hook, thanks to [@​lukebelliveau] (see #​1393)

  • Fixed nested themes not being republished on outer theme changes, thanks to [@​Andarist] (see #​1382)

  • Add warning if you've accidently imported 'styled-components' on React Native instead of 'styled-components/native', thanks to [@​tazsingh] and [@​gribnoysup] (see #​1391 and #​1394)

  • Fixed bug where innerRef could be passed as undefined to components when using withTheme. This could cause issues when using prop spread within the component (e.g. {...this.props}), because React will still warn you about using a non-dom prop even though it's undefined. (see #​1414)

  • Expose isStyledComponent utility as a named export. This functionality is useful in some edge cases, such as knowing whether or not to use innerRef vs ref and detecting if a component class needs to be wrapped such that it can be used in a component selector. (see #​1418)

  • Remove trailing commas on function arguments (not compatible with ES5 JS engines)

  • Ship source maps (see #​1425)

  • Upgrade test suites to run against react v16 (see #​1426)

  • Streaming rendering support (requires React 16, see #​1430)


v3.0.2

  • Add secret internals for jest-styled-components (do not use or you will be haunted by spooky ghosts 👻) (see #​1438)

v3.1.0

  • Compile out error messages for production builds (see #​1445)
  • Use much faster CSS injection in the browser, by [@​schwers] and [@​philpl] (see #​1208)
  • Add support for streaming server-side rendering, by [@​probablyup] (see #​1430)

v3.1.1

  • Hotfix for importing in ReactNative, thanks to @​vvasilev- (see #​1455)

v3.1.3

  • Disable "speedy" mode for non-production environments, fixes jest-styled-components compatibility (see #​1460)

v3.1.4

  • Disable "speedy" mode for IE and Edge. There seems to be some incompatibility with how the insertRule API functions in their rendering stack compared to the other vendors. (see #​1465)

v3.1.5

  • Apply a workaround to re-enable "speedy" mode for IE/Edge (see #​1468)

  • Fix memory leak in the server-side streaming logic (see #​1475)


v3.1.6

  • Bugfix for the last style tag sometimes being emitted multiple times during streaming (see #​1479)

  • Bugfix for speedy mode rehydration and added handling for out-of-order style injection (see #​1482)


v3.2.0

  • Remove type="text/css"-attribute from style tag to remove warnings from w3c validator (see #​1551)

  • Add foreignObject svg element (see #​1544)

  • Add controlsList to validAttr list (see #​1537)

  • Enable stylis' semicolon autocompletion which was accidentally disabled for a lot of prior releases (see #​1532)

  • Fix insertRule injection (speedy mode in production) of nested media queries by upgrading stylis-rule-sheet (see #​1529 and #​1528)

  • Add StyleSheet.remove API method to be able to delete rules related to a component (see #​1514)

  • Replace murmurhash implementation and avoid destructuring tag function arguments (see #​1516)

  • Rewrite and refactor StyleSheet and ServerStyleSheet (no breaking change, see #​1501)

  • Add warning if there are several instances of styled-components initialized on the page (see #​1412)

  • Add target prop to StyleSheetManager component to enable specifying where style tags should render (see #​1491)


v3.2.1

  • Fix @import rules not being enforced to appear at the beginning of stylesheets (see #​1577)

  • Fix StyleTags toElement outputting inline CSS which would cause URL encoding (see #​1580)


v3.2.2

  • Fix ServerTag.clone() not properly cloning its names and markers (see #​1605)

  • Fix nested media at-rules by upgrading to stylis@​^3.5.0 and stylis-rule-sheet@​^0.0.10 (see #​1595)

  • Fix the IS_BROWSER check to work more reliably in projects where window may be shimmed, by [@​danieldunderfelt] (see #​1599)


v3.2.3

  • Fix SSR memory leak where StyleSheet clones are never freed (see #​1612)

Commits

v3.2.0

  • aaee314 v3.2.0-1
  • 980bfc1 Fix ServerTag#removeRules not emptying marker correctly
  • b9e8a1f Merge pull request #​1514 from styled-components/feature/delete-rule-methods
  • 2475d6b Add failing test for nested media queries
  • d2552a9 Upgrade stylis and stylis-rule-sheet
  • 48978ff Fix styles.test fixtures after stylis upgrade
  • a2bd0a8 Add CHANGELOG entry
  • 481b311 Merge pull request #​1529 from styled-components/fix/nested-media
  • 3622a82 Enable stylis' no-semicolon mode
  • 61b7764 Add CHANGELOG entry
  • 0fb244f Merge pull request #​1532 from styled-components/fix/no-semicolon-mode
  • 591817c feat(validAttr): add controlsList to validAttr list
  • 9a91bde Merge pull request #​1537 from marhalpert/controlsList-validAttr
  • 6af22b2 feat(svg): add missing foreignObject element
  • 6377d7b Merge pull request #​1544 from jdrouet/master
  • c5378d5 removed type="text/css" logic from StyleTags
  • b32994e updated Snapshots 📸
  • 8634cab adjusted CHANGELOG.md
  • f9801b0 upgrade jest-styled-components
  • 3fb3e79 Merge pull request #​1552 from MicheleBertoli/jest-styled-components
  • 2756541 reset changelog.md
  • 8306cea readded entry to CHANGELOG.md
  • 72882ab successful run of project in windows
  • ef22242 lock files added
  • 247a5fe Merge pull request #​1551 from mdugue/fix-w3-validation-warning-type-style
  • 38c6e9a removed npm lock files and changed npm to yarn
  • 727d5c8 added yarn-error.log to gitignore
  • 20614d6 deleted yarn-error.log file
  • 9cf0fe6 Merge pull request #​1553 from Kirty-Goyal/windows
  • 9fce3bf Expose secretInternals in all environments & bundles
  • 825257d Merge pull request #​1569 from styled-components/chore/expose-secrets
  • 191489b Update CHANGELOG.md (v3.2.0)

v3.2.1

  • eb85ea1 Merge pull request #​1577 from styled-components/hotfix/shard-for-import
  • 2f0dbb2 Add support for correct execution of postinstall script
  • e89611e Update CHANGELOG for v3.2.1

v3.2.2

  • 36068ff v3.2.2-1
  • 35d0f56 Merge pull request #​1605 from styled-components/fix/servertag-clone
  • 11f2f69 Merge branch 'master' into better-browser-check
  • fa872e5 Merge pull request #​1599 from danieldunderfelt/better-browser-check
  • 081abdf Update CHANGELOG for 3.2.2

v3.2.3

  • f82b191 Merge pull request #​1609 from styled-components/release-v3.2.2
  • 04bcd91 Clean up after clone and remove it from master StyleSheet after SSR
  • d4e32d1 Add CHANGELOG entry
  • c2f1fa7 Clean up implementation of completing ServerStyleSheets
  • 7d3ef92 Merge pull request #​1612 from styled-components/fix/ssr-mem-usage
  • 6b5143d Update CHANGELOG for v3.2.3

This PR has been generated by Renovate Bot.

@renovate renovate bot force-pushed the renovate/styled-components-3.x branch 5 times, most recently from 901bb9c to 5f2aae6 Compare January 29, 2018 18:27
@renovate renovate bot force-pushed the renovate/styled-components-3.x branch 3 times, most recently from 5a652ce to 3f99ca4 Compare February 3, 2018 16:33
@renovate renovate bot force-pushed the renovate/styled-components-3.x branch 2 times, most recently from b8df97b to 7d5865e Compare March 7, 2018 12:43
@renovate renovate bot force-pushed the renovate/styled-components-3.x branch from 7d5865e to 1c60eba Compare March 13, 2018 20:28
@renovate renovate bot force-pushed the renovate/styled-components-3.x branch from 1c60eba to 7df39f5 Compare March 14, 2018 23:35
@emmenko emmenko closed this May 8, 2018
@renovate
Copy link
Author

renovate bot commented May 8, 2018

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will ignore this upgrade and you will not receive PRs for any future 3.x releases. However, if you upgrade to 3.x manually then Renovate will then reenable updates for minor and patch updates automatically.

If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.

@renovate renovate bot deleted the renovate/styled-components-3.x branch May 8, 2018 09:48
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

2 participants