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 dependency babel-plugin-react-intl to v3.5.1 #1723

Merged
merged 1 commit into from
Feb 27, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 23, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
babel-plugin-react-intl 3.0.1 -> 3.5.1 age adoption passing confidence

Release Notes

formatjs/formatjs (babel-plugin-react-intl)

v3.5.1

Compare Source

Bug Fixes

v3.5.0

Compare Source

Features

v3.4.1

Compare Source

v3.3.3

Compare Source

Bug Fixes

v3.3.2

Compare Source

v3.3.1

Compare Source

v3.3.0

Compare Source

v3.2.1

Compare Source

Bug Fixes
  • upgrade intl-messageformat (40aa758) which has the fix for nested HTML subtag

v3.2.0

Compare Source

Bug Fixes
  • fix tests & add corresponding formatToParts fns (855e272)
Features
<FormattedNumber
  value={1000}
  style="unit"
  unit="kilobyte"
  unitDisplay="narrow"
/>
<span>1,000kB</span>
<FormattedNumber
  value={1000}
  unit="fahrenheit"
  unitDisplay="long"
  style="unit"
/>
<span>1,000 degrees Fahrenheit</span>
  • add support for formatToParts (e8167f3)
  • introduce Parts component (a1b5ff1), closes #​1048
    This component provides more customization to FormattedNumber/Date/Time by allowing children function to have access to underlying parts of the formatted date. The available parts are listed here

Props:

props: NumberFormatOptions &
  {
    value: number,
    format: string,
    children: (parts: Intl.NumberFormatPart[]) => ReactElement,
  };

Example:

<FormattedNumberParts value={1000}>
  {parts => (
    <>
      <b>{parts[0].value}</b>
      {parts[1].value}
      <small>{parts[2].value}</small>
    </>
  )}
</FormattedNumberParts>
<b>1</b>,<small>000</small>

v3.1.3

Compare Source

Note: Version bump only for package eslint-plugin-formatjs

v3.1.1

Compare Source

Bug Fixes
  • only createIntl from filteredProps (d665f31)

v3.1.0

Compare Source

Bug Fixes
Features
  • generate .mjs instead of lib (5fd070d)

v3.0.2

Note: Version bump only for package @​formatjs/intl-pluralrules


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 this update again.


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

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

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jul 23, 2021
@renovate renovate bot force-pushed the renovate/formatjs-monorepo branch 12 times, most recently from 85d386a to 0b93ff7 Compare February 27, 2024 03:17
@renovate renovate bot force-pushed the renovate/formatjs-monorepo branch from 0b93ff7 to fe70fdd Compare February 27, 2024 06:32
@renovate renovate bot merged commit 2d77a0c into develop Feb 27, 2024
2 checks passed
@renovate renovate bot deleted the renovate/formatjs-monorepo branch February 27, 2024 09:55
Copy link

🎉 This PR is included in version 2.2.31 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file released
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants