@automattic/number-formatters 1.1.9 → 1.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,18 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
6
6
|
|
|
7
|
+
## [1.1.10] - 2026-05-21
|
|
8
|
+
### Changed
|
|
9
|
+
- Update package dependencies. [#49012]
|
|
10
|
+
|
|
7
11
|
## [1.1.9] - 2026-05-19
|
|
8
12
|
### Fixed
|
|
9
13
|
- Currency formatting: use ISO 4217 minor-unit exponent for smallest-unit conversion to correctly format IDR and other currencies where browser ICU disagrees with ISO 4217. [#48967]
|
|
10
14
|
|
|
15
|
+
## [1.1.8] - 2026-05-19
|
|
16
|
+
### Changed
|
|
17
|
+
- Internal updates.
|
|
18
|
+
|
|
11
19
|
## [1.1.7] - 2026-05-04
|
|
12
20
|
### Changed
|
|
13
21
|
- Internal: No longer require automattic/jetpack-changelogger as a per-project dev dependency. [#48225]
|
|
@@ -144,6 +152,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
144
152
|
- Initial release
|
|
145
153
|
- Basic number formatting functionality
|
|
146
154
|
|
|
155
|
+
[1.1.10]: https://github.com/Automattic/number-formatters/compare/1.1.9...1.1.10
|
|
156
|
+
[1.1.9]: https://github.com/Automattic/number-formatters/compare/1.1.8...1.1.9
|
|
147
157
|
[1.1.8]: https://github.com/Automattic/number-formatters/compare/1.1.7...1.1.8
|
|
148
158
|
[1.1.7]: https://github.com/Automattic/number-formatters/compare/1.1.6...1.1.7
|
|
149
159
|
[1.1.6]: https://github.com/Automattic/number-formatters/compare/1.1.5...1.1.6
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/number-formatters",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"description": "Number formatting utilities",
|
|
5
5
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/number-formatters/#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@babel/core": "7.29.0",
|
|
41
41
|
"@babel/preset-react": "7.28.5",
|
|
42
|
-
"@jest/globals": "30.
|
|
42
|
+
"@jest/globals": "30.4.1",
|
|
43
43
|
"@knighted/duel": "4.0.2",
|
|
44
44
|
"@types/jest": "30.0.0",
|
|
45
45
|
"@typescript/native-preview": "7.0.0-dev.20260225.1",
|
|
46
|
-
"jest": "30.
|
|
46
|
+
"jest": "30.4.2",
|
|
47
47
|
"jetpack-js-tools": "workspace:*",
|
|
48
48
|
"typescript": "5.9.3"
|
|
49
49
|
}
|