Skip to content

fix(deps): update dependency react-intl to v3.12.1#34

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/formatjs-monorepo
Open

fix(deps): update dependency react-intl to v3.12.1#34
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/formatjs-monorepo

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Nov 20, 2022

This PR contains the following updates:

Package Change Age Confidence
react-intl (source) 3.0.03.12.1 age confidence

Release Notes

formatjs/formatjs (react-intl)

v3.12.1

Compare Source

v3.12.0

Compare Source

v3.11.0

Compare Source

v3.10.0

Compare Source

v3.9.3

Compare Source

v3.9.2

Compare Source

v3.9.1

Compare Source

v3.9.0

Compare Source

v3.8.0

Compare Source

v3.7.0

Compare Source

v3.6.2

Compare Source

v3.6.1

Compare Source

v3.6.0

Compare Source

v3.5.0

Compare Source

v3.4.0

Compare Source

Features

v3.3.2

Compare Source

v3.3.1

Compare Source

v3.3.0

Compare Source

v3.2.4

Compare Source

v3.2.3

Compare Source

Reverts

v3.2.2

Compare Source

v3.2.1

Compare Source

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

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.13

Compare Source

Bug Fixes

v3.1.12

Compare Source

Bug Fixes

v3.1.11

Compare Source

Bug Fixes

v3.1.10

Compare Source

Bug Fixes

v3.1.9

Compare Source

Bug Fixes

v3.1.8

Compare Source

Bug Fixes

v3.1.7

Compare Source

3.1.7 (2025-10-03)

Bug Fixes

v3.1.6

Compare Source

Bug Fixes

v3.1.5

Compare Source

Bug Fixes

v3.1.4

Compare Source

Bug Fixes

v3.1.3

Compare Source

Bug Fixes

  • fix: create initial intl for Provider
    This is primarily so that enzyme shallow works. Looks like right now
    it does not trigger getDerivedStateFromProps before initial render
    which results in this.state.intl being undefined.

v3.1.2

Compare Source

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

v3.1.1

Compare Source

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

v3.1.0

Compare Source

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

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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, check this box

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

@evenchange4
Copy link
Copy Markdown
Owner

Netlify BOT

Name Link
🔨 Latest commit 283706f
🔍 Latest deploy log https://app.netlify.com/sites/react-intlmacro/deploys/637a7d22ce98740008182470

@renovate renovate Bot force-pushed the renovate/formatjs-monorepo branch from 283706f to 5a2ea55 Compare August 10, 2025 12:25
@evenchange4
Copy link
Copy Markdown
Owner

Netlify BOT

Name Link
🔨 Latest commit 5a2ea55
🔍 Latest deploy log https://app.netlify.com/projects/react-intlmacro/deploys/68988fd3c4a8a10008883009

@renovate renovate Bot force-pushed the renovate/formatjs-monorepo branch from 5a2ea55 to 17bbace Compare December 3, 2025 19:12
@evenchange4
Copy link
Copy Markdown
Owner

Netlify BOT

Name Link
🔨 Latest commit 17bbace
🔍 Latest deploy log https://app.netlify.com/projects/react-intlmacro/deploys/69308bb8724c5c0008df098b

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.

1 participant