mindee 5.7.1 → 5.7.2

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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # Mindee Node.js API Library Changelog
2
2
 
3
+ ## v5.7.2 - 2026-09-16
4
+ ### Fixes
5
+ * :bug: RST output should be locale-agnostic
6
+
7
+
3
8
  ## v5.7.1 - 2026-09-10
4
9
  ### Fixes
5
10
  * :bug: constant-time HMAC security fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mindee",
3
- "version": "5.7.1",
3
+ "version": "5.7.2",
4
4
  "description": "Mindee Client Library for Node.js",
5
5
  "author": {
6
6
  "name": "Mindee",
@@ -50,7 +50,7 @@ export function floatToString(value) {
50
50
  if (value === null) {
51
51
  return "";
52
52
  }
53
- return value.toLocaleString(undefined, {
53
+ return value.toLocaleString("en-US", {
54
54
  minimumFractionDigits: 2,
55
55
  maximumFractionDigits: 5,
56
56
  useGrouping: false,