@open-pioneer/ogc-features 1.1.0 → 1.2.0-dev.20260121105545
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 +8 -0
- package/api.js +2 -0
- package/api.js.map +1 -0
- package/createVectorSource.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @open-pioneer/ogc-features
|
|
2
2
|
|
|
3
|
+
## 1.2.0-dev.20260121105545
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 279ca67: Use `workspace:*` instead of `workspace:^` for local package references as default. This ensures that trails packages from this repository are always referenced with their exact version to avoid potential issues with version mismatches. If a project specifically wants to use other versions for some trails packages, a pnpm override can be used to force other versions.
|
|
8
|
+
- 9580bb4: Update various dependencies.
|
|
9
|
+
- 9580bb4: Update to Chakra 3.31.0
|
|
10
|
+
|
|
3
11
|
## 1.1.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/api.js
ADDED
package/api.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
package/createVectorSource.js
CHANGED
|
@@ -136,5 +136,5 @@ async function loadPages(allUrls, featureFormat, httpService, signal, addFeature
|
|
|
136
136
|
return allFeatureResponse;
|
|
137
137
|
}
|
|
138
138
|
|
|
139
|
-
export {
|
|
139
|
+
export { createVectorSource, loadPages };
|
|
140
140
|
//# sourceMappingURL=createVectorSource.js.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@open-pioneer/ogc-features",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.2.0-dev.20260121105545",
|
|
5
5
|
"description": "This package provides utilities to work with OGC API Features services.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"open-pioneer-trails"
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"directory": "src/packages/ogc-features"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@open-pioneer/core": "
|
|
18
|
-
"@open-pioneer/http": "
|
|
17
|
+
"@open-pioneer/core": "4.4.0-dev.20260121102820",
|
|
18
|
+
"@open-pioneer/http": "4.4.0-dev.20260121102820",
|
|
19
19
|
"ol": "^10.7.0",
|
|
20
20
|
"uuid": "^13.0.0"
|
|
21
21
|
},
|