@itwin/core-quantity 5.11.0-dev.1 → 5.11.0-dev.11

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -1
  2. package/package.json +7 -6
package/CHANGELOG.md CHANGED
@@ -1,6 +1,31 @@
1
1
  # Change Log - @itwin/core-quantity
2
2
 
3
- This log was last generated on Tue, 19 May 2026 19:47:05 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 11 Jun 2026 21:11:10 GMT and should not be manually modified.
4
+
5
+ ## 5.10.2
6
+ Thu, 11 Jun 2026 21:09:38 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 5.10.1
11
+ Mon, 08 Jun 2026 18:45:58 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 5.10.0
16
+ Wed, 03 Jun 2026 20:19:46 GMT
17
+
18
+ ### Updates
19
+
20
+ - Added BasicUnitsProvider (bundled BIS units), createUnitsProvider factory, and CreateUnitsProviderOptions interface. Added UnitConversion math, parseDefinition, and Graph utilities (moved from ecschema-metadata). Added SerializedUnitSchema types and UnitDefinitionResolver.
21
+ - Add generated unit schema names and UnitConversions helpers backed by bundled basic units
22
+ - Fix FormatSpecHandle stale state during onFormattingReady
23
+ - Use units schema 01.00.10
24
+
25
+ ## 5.9.5
26
+ Mon, 01 Jun 2026 17:34:00 GMT
27
+
28
+ _Version update only_
4
29
 
5
30
  ## 5.9.4
6
31
  Tue, 19 May 2026 19:45:27 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/core-quantity",
3
- "version": "5.11.0-dev.1",
3
+ "version": "5.11.0-dev.11",
4
4
  "description": "Quantity parsing, formatting and conversions for iModel.js",
5
5
  "main": "lib/cjs/core-quantity.js",
6
6
  "module": "lib/esm/core-quantity.js",
@@ -23,17 +23,18 @@
23
23
  "devDependencies": {
24
24
  "@bentley/units-schema": "^1.0.10",
25
25
  "@itwin/eslint-plugin": "^6.0.0",
26
- "@vitest/coverage-v8": "^3.0.6",
26
+ "@types/node": "~20.17.0",
27
+ "@vitest/coverage-v8": "^4.1.8",
27
28
  "eslint": "^9.31.0",
28
29
  "rimraf": "^6.0.1",
29
30
  "tsx": "~4.22.0",
30
31
  "typescript": "~5.6.2",
31
- "vitest": "^3.0.6",
32
- "@itwin/build-tools": "5.11.0-dev.1",
33
- "@itwin/core-bentley": "5.11.0-dev.1"
32
+ "vitest": "^4.1.8",
33
+ "@itwin/build-tools": "5.11.0-dev.11",
34
+ "@itwin/core-bentley": "5.11.0-dev.11"
34
35
  },
35
36
  "peerDependencies": {
36
- "@itwin/core-bentley": "5.11.0-dev.1"
37
+ "@itwin/core-bentley": "5.11.0-dev.11"
37
38
  },
38
39
  "scripts": {
39
40
  "build": "tsx scripts/generateUnitsJson.ts && npm run -s build:cjs && npm run -s build:esm && npm run -s build:typecheck",