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 - autoclosed #30

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 22, 2018

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

Release Notes

v2.3.0

  • Add development sandbox to repo for easier contributing, thanks to [@​gribnoysup] (see #​1257)
  • Add basic support for style objects in the Typescript definitions, thanks to [@​nbostrom] (see #​1123)
  • Fix ref warning using withTheme HOC and stateless function components, thanks to [@​MatthieuLemoine] (see #​1205)
  • Consistently escape displayNames when creating componentId, thanks to [@​evan-scott-zocdoc] (see #​1313)
  • Better issue template (see #​1342)

v2.3.1

  • Create styled-components badge, thanks to [@​iRoachie] (see #​1363)
  • Library size reductions, thanks to [@​probablyup] (see #​1365)
  • Add Prettier, thanks to [@​existentialism] (see #​593)
  • Fix unminified UMD build, thanks to [@​maciej-ka] (see #​1355)
  • Update the contribution and community guidelines, see the CONTRIBUTING.md

v2.3.2

  • Hotfix a bug in the attr filtering in v2.3.1 (see #​1372)

v2.3.3

  • Fix the attr filtering optimization removed in v2.3.2; bundle size improvement, thanks to [@​probablyup] (see #​1377)
  • Move last bits of docs from the README to the website, thanks to [@​Carryon], [@​SaraVieira] and [@​JamesJefferyUK]

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 e2355da to 220f363 Compare January 29, 2018 18:32
@renovate renovate bot force-pushed the renovate/styled-components-3.x branch 3 times, most recently from 37ffd17 to 81fe275 Compare February 3, 2018 16:37
@renovate renovate bot force-pushed the renovate/styled-components-3.x branch 2 times, most recently from 018e5cd to 65fb012 Compare March 7, 2018 12:46
@renovate renovate bot force-pushed the renovate/styled-components-3.x branch from 65fb012 to 68c1a2f Compare March 13, 2018 20:31
@renovate renovate bot force-pushed the renovate/styled-components-3.x branch from 68c1a2f to dd8e5c0 Compare March 14, 2018 23:37
@renovate renovate bot changed the title fix(deps): update dependency styled-components to v3 fix(deps): update dependency styled-components to v3 - autoclosed Jun 2, 2018
@renovate renovate bot closed this Jun 2, 2018
@renovate renovate bot deleted the renovate/styled-components-3.x branch June 2, 2018 04:14
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