@itwin/ecschema-locaters 5.1.0-dev.9 → 5.2.0-dev.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +61 -1
  2. package/package.json +8 -7
package/CHANGELOG.md CHANGED
@@ -1,6 +1,66 @@
1
1
  # Change Log - @itwin/ecschema-locaters
2
2
 
3
- This log was last generated on Wed, 30 Apr 2025 13:16:15 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 06 Aug 2025 15:37:23 GMT and should not be manually modified.
4
+
5
+ ## 5.0.5
6
+ Wed, 06 Aug 2025 15:34:15 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 5.0.4
11
+ Wed, 16 Jul 2025 14:59:59 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 5.0.3
16
+ Fri, 11 Jul 2025 00:56:56 GMT
17
+
18
+ _Version update only_
19
+
20
+ ## 5.0.2
21
+ Thu, 26 Jun 2025 22:16:01 GMT
22
+
23
+ _Version update only_
24
+
25
+ ## 5.0.1
26
+ Tue, 17 Jun 2025 18:33:52 GMT
27
+
28
+ _Version update only_
29
+
30
+ ## 5.0.0
31
+ Fri, 13 Jun 2025 20:25:38 GMT
32
+
33
+ ### Updates
34
+
35
+ - Added ESM support
36
+ - Implemented new schema locater PublishedSchemaXmlFileLocater that will locate/load schemas from published schema xml files.
37
+ - applied changes in ecschema-metadatas SchemaLocater interface
38
+ - Change core peer dependencies to strict version.
39
+
40
+ ## 4.11.6
41
+ Mon, 16 Jun 2025 15:00:15 GMT
42
+
43
+ _Version update only_
44
+
45
+ ## 4.11.5
46
+ Fri, 06 Jun 2025 13:41:18 GMT
47
+
48
+ _Version update only_
49
+
50
+ ## 4.11.4
51
+ Tue, 03 Jun 2025 16:15:19 GMT
52
+
53
+ _Version update only_
54
+
55
+ ## 4.11.3
56
+ Wed, 28 May 2025 13:56:23 GMT
57
+
58
+ _Version update only_
59
+
60
+ ## 4.11.2
61
+ Tue, 20 May 2025 20:14:46 GMT
62
+
63
+ _Version update only_
4
64
 
5
65
  ## 4.11.1
6
66
  Wed, 30 Apr 2025 13:13:21 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/ecschema-locaters",
3
- "version": "5.1.0-dev.9",
3
+ "version": "5.2.0-dev.2",
4
4
  "description": "EC Schema file locaters",
5
5
  "license": "MIT",
6
6
  "main": "lib/cjs/ecschema-locaters.js",
@@ -37,8 +37,8 @@
37
37
  "@bentley/quantity-takeoffs-aspects-schema": "^1.0.1",
38
38
  "@bentley/spatial-composition-schema": "^1.0.1",
39
39
  "@bentley/structural-physical-schema": "^1.0.1",
40
- "@bentley/units-schema": "^1.0.8",
41
- "@itwin/eslint-plugin": "5.0.0-dev.1",
40
+ "@bentley/units-schema": "^1.0.9",
41
+ "@itwin/eslint-plugin": "5.2.2-dev.2",
42
42
  "@types/chai": "4.3.1",
43
43
  "@types/chai-as-promised": "^7",
44
44
  "@types/fs-extra": "^4.0.7",
@@ -49,14 +49,14 @@
49
49
  "chai": "^4.3.10",
50
50
  "chai-as-promised": "^7.1.1",
51
51
  "cpx2": "^8.0.0",
52
- "eslint": "^9.13.0",
52
+ "eslint": "^9.31.0",
53
53
  "mocha": "^11.1.0",
54
54
  "nyc": "^17.1.0",
55
55
  "rimraf": "^6.0.1",
56
56
  "sinon": "^17.0.2",
57
57
  "typescript": "~5.6.2",
58
- "@itwin/build-tools": "5.1.0-dev.9",
59
- "@itwin/ecschema-metadata": "5.1.0-dev.9"
58
+ "@itwin/build-tools": "5.2.0-dev.2",
59
+ "@itwin/ecschema-metadata": "5.2.0-dev.2"
60
60
  },
61
61
  "dependencies": {
62
62
  "glob": "^10.3.12",
@@ -64,7 +64,7 @@
64
64
  "@xmldom/xmldom": "~0.8.10"
65
65
  },
66
66
  "peerDependencies": {
67
- "@itwin/ecschema-metadata": "5.1.0-dev.9"
67
+ "@itwin/ecschema-metadata": "5.2.0-dev.2"
68
68
  },
69
69
  "nyc": {
70
70
  "extends": "./node_modules/@itwin/build-tools/.nycrc",
@@ -78,6 +78,7 @@
78
78
  "copy:test-assets": "cpx \"./src/test/assets/**/*\" ./lib/cjs/test/assets",
79
79
  "extract-api": "betools extract-api --entry=ecschema-locaters",
80
80
  "lint": "eslint \"./src/**/*.ts\" 1>&2",
81
+ "lint-deprecation": "eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \"./src/**/*.ts\"",
81
82
  "test": "mocha",
82
83
  "docs": "betools docs --json=../../generated-docs/core/ecschema-locaters/file.json --tsIndexFile=./ecschema-locaters.ts --onlyJson",
83
84
  "cover": "nyc npm -s test",