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

chore(deps): update emotion monorepo to v11 (master) (major) #275

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 12, 2020

This PR contains the following updates:

Package Type Update Change OpenSSF
@emotion/babel-preset-css-prop (source) devDependencies major 10.2.1 -> 11.12.0 OpenSSF Scorecard
@emotion/core (source) dependencies major ^10.0.28 -> ^11.0.0 OpenSSF Scorecard

Release Notes

emotion-js/emotion (@​emotion/babel-preset-css-prop)

v11.12.0

Compare Source

v11.11.0

Compare Source

Patch Changes

v11.10.0

Compare Source

Minor Changes
  • #​2819 bbad8c79 Thanks @​nicksrandall! - exports field has been added to the package.json manifest. It limits what files can be imported from a package but we've tried our best to allow importing all the files that were considered to be a part of the public API.
Patch Changes

v11.2.0

Compare Source

Patch Changes

v11.0.0

Compare Source

Major Changes
  • f9feab1a #​1575 Thanks @​mitchellhamilton! - Removed support for @emotion/styled-base package. It has been moved to @emotion/styled and is available as @emotion/styled/base. This simplifies how the regular and base versions relate to each other and eliminates problems with stricter package managers when @emotion/styled-base was not installed explicitly by a user.

  • 79036056 #​967 Thanks @​mitchellhamilton! - Remove support for deprecated innerRef prop

  • a72e6dc #​1501 Thanks @​JakeGinnivan! - TypeScript types have been significantly restructured. These changes:

    • reduce build times when using Emotion, especially in larger projects
    • it's no longer necessary to manually specify generic parameters for your Emotion components in many cases
    • union types as props are better supported and should be inferred properly
    • the css function has been restricted to prevent passing invalid types
    • styled's generic parameter has been changed, if you were specifying the ComponentType you will need to remove that generic parameter
    • styled no longer takes a second ExtraProps parameter - instead of that move it to after the styled call. So instead of writing styled<typeof MyComponent, ExtraProps>(MyComponent)({}) you should now be writing styled(MyComponent)<ExtraProps>({})

    If you encounter build issues after upgrade, try removing any manually specified generic types and let them be inferred.

  • c6431074 #​1609 Thanks @​tomsseisums! - It's now easier to provide a type for Theme. Instead of creating custom instances (like before) you can augment the builtin Theme interface like this:

    import '@&#8203;emotion/react'
    
    declare module '@&#8203;emotion/react' {
      export interface Theme {
        primaryColor: string
        secondaryColor: string
      }
    }
  • 105de5c8 #​1572 Thanks @​Andarist! - [data-emotion] attribute on SSRed styled has changed. You should never rely on it though.

  • 79036056 #​967 Thanks @​mitchellhamilton! - Use hooks internally for improved bundle size and a better tree in React DevTools

  • 9e998e37 #​1817 Thanks @​Andarist! - The parser we use (Stylis) got upgraded. It fixes some long-standing parsing edge cases while being smaller and faster 🚀

    It has been completely rewritten and comes with some breaking changes. The most notable ones that might affect Emotion users are:

    • plugins written for the former Stylis v3 are not compatible with the new version. To learn more on how to write a plugin for Stylis v4 you can check out its README and the source code of core plugins.
    • vendor-prefixing was previously customizable using prefix option. This was always limited to turning off all of some of the prefixes as all available prefixes were on by default. The prefix option is gone and to customize which prefixes are applied you need to fork (copy-paste) the prefixer plugin and adjust it to your needs. While this being somewhat more problematic to setup at first we believe that the vast majority of users were not customizing this anyway. By not including the possibility to customize this through an extra option the final solution is more performant because there is no extra overhead of checking if a particular property should be prefixed or not.
    • the prefixer is now just a plugin which happens to be included in the default stylisPlugins. If you plan to use custom stylisPlugins and you want to have your styles prefixed automatically you must include prefixer in your custom stylisPlugins. You can import prefixer from the stylis module to do that.
    • @import rules are no longer special-cased. The responsibility to put them first has been moved to the author of the styles. They also can't be nested within other rules now. It's only possible to write them at the top level of global styles.
  • cf56694 #​2088 Thanks @​Andarist! - UMD filenames have been changed.

Minor Changes
  • 4d3b60d0 #​1874 Thanks @​connor-baer! - Added basic TS type support for as prop on styled components. It's possible to pass any component to it but it has no effect on other accepted props. This means that it's not 100% type-safe so use it sparingly and with care.

  • ad77ed24 #​1624 Thanks @​JakeGinnivan! - Added CreateStyled overload to handle when shouldForwardProp is a custom type guard for intrinsic props.

    As an example, if you want to override the type of the color prop:

    export const Box = styled('div', {
      shouldForwardProp: (
        propName
      ): propName is Exclude<keyof JSX.IntrinsicElements['div'], 'color'> =>
        propName !== 'color'
    })<{ color: Array<string> }>(props => ({
      color: props.color[0]
    }))
    ;<Box color={['green']} />
  • 18c0d5f4 #​1668 Thanks @​animecyc! - Custom shouldForwardProp is being preserved now when using .withComponent. Also, when passing an additional shouldForwardProp in .withComponent's options (like this: SomeComponent.withComponent('span', { shouldForwardProp })) it's being composed with the potentially existing shouldForwardProp.

  • 5d692a6a #​1956 Thanks @​eps1lon! - Upgraded csstype dependency to its v3. This is what we use to provide TypeScript typings for object styles. The upgrade should not affect any consuming code but it's worth mentioning if any edge case scenarios arise.

Patch Changes
emotion-js/emotion (@​emotion/core)

v11.0.0

Compare Source

Major Changes
  • b8476e08 #​1675 Thanks @​mitchellhamilton! - Rename @emotion/core to @emotion/react. Please change any imports of @emotion/core to import @emotion/react or use the @emotion/pkg-renaming ESLint rule from @emotion/eslint-plugin.

v10.3.1

Compare Source

Patch Changes
  • #​2576 33c01578 Thanks @​Methuselah96! - Export Keyframes type to avoid TypeScript inserting import("@&#8203;emotion/serialize").Keyframes references into declaration files emitted based on a source files exporting keyframes result. This avoids issues with strict package managers that don't allow accessing undeclared dependencies.

v10.3.0

Compare Source

Minor Changes

v10.1.1

Compare Source

Patch Changes
  • fe30cbd6 #​2066 Thanks @​Andarist! - Fixed an issue with React giving warning about static children not having unique keys when using the classic jsx factory. This example illustrates the situation in which this has been incorrectly happening:

    <div css={{ color: 'hotpink' }}>
      <div />
      <div />
    </div>

v10.1.0

Compare Source

Minor Changes
  • 71514b06 #​1970 Thanks @​FLGMwt! - Support for the new JSX runtimes has been added. They require compatible React versions and shouldn't be manually used.

    To use them you can use the new @jsxImportSource @&#8203;emotion/core pragma instead of the old @jsx jsx or you can use @emotion/babel-preset-css-prop with { runtime: 'automatic' } option to have it handled automatically for you for the whole project.

v10.0.35

Compare Source

Patch Changes
  • 2cf3b16b #​1973 Thanks @​santialbo! - Fixed label extraction from the stack traces in node for components wrapped in React.forwardRef. This has affected only development builds.

v10.0.34

Compare Source

Patch Changes
  • 4979ebb2 #​1966 Thanks @​chnakamura! - Fixed label extraction from the stack traces in Chrome in certain scenarios. This has affected only development builds.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from ed57915 to f864d81 Compare December 10, 2020 02:42
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from f864d81 to f7ad5b9 Compare January 28, 2021 07:42
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from f7ad5b9 to f823150 Compare February 9, 2021 19:08
@renovate renovate bot changed the title chore(deps): update emotion monorepo to v11 (master) (major) chore(deps): update emotion monorepo (master) (major) Feb 9, 2021
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch 11 times, most recently from 95aa2c8 to 17aee2c Compare March 30, 2022 16:31
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch 3 times, most recently from 3a0f256 to 35a3317 Compare May 19, 2022 20:43
@renovate renovate bot changed the title chore(deps): update emotion monorepo (master) (major) chore(deps): update emotion monorepo to v11 (master) (major) May 23, 2022
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from 35a3317 to 1e9f0fb Compare June 2, 2022 18:29
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from 1e9f0fb to fc69fac Compare June 27, 2022 14:48
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from fc69fac to 18f5b4a Compare July 22, 2022 02:18
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from 18f5b4a to 4335b98 Compare July 31, 2022 10:18
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from 4335b98 to f9c1b9e Compare November 21, 2022 06:47
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from f9c1b9e to fb9be54 Compare January 7, 2023 03:09
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch 2 times, most recently from fe3fc0a to f34f362 Compare March 17, 2023 05:44
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch 3 times, most recently from 9f39e6e to 1e58ce4 Compare March 26, 2023 21:50
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch 2 times, most recently from 90003bb to 57f153f Compare March 27, 2023 00:56
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from 57f153f to fcd2d4c Compare May 6, 2023 10:28
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from fcd2d4c to 749e07a Compare August 1, 2023 04:52
@renovate renovate bot force-pushed the renovate/master-major-emotion-monorepo branch from 749e07a to 19cbbb5 Compare July 19, 2024 11:28
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.

0 participants