Skip to content

Commit 9ab97fe

Browse files
committed
Release v1.1.0 (#32)
1 parent 3e5883f commit 9ab97fe

File tree

7 files changed

+126
-73
lines changed

7 files changed

+126
-73
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
if: startsWith(github.ref, 'refs/heads/')
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/setup-node@v4
18+
- uses: actions/setup-node@v6
1919
with:
20-
node-version: '20'
20+
node-version: '24'
2121
- uses: actions/checkout@v4
2222
- name: Install dependencies
2323
run: npm ci
@@ -41,9 +41,9 @@ jobs:
4141
if: startsWith(github.ref, 'refs/tags/')
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/setup-node@v4
44+
- uses: actions/setup-node@v6
4545
with:
46-
node-version: '20'
46+
node-version: '24'
4747
- uses: actions/checkout@v4
4848
- name: Install dependencies
4949
run: npm ci

.github/workflows/publish.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
- uses: actions/setup-node@v4
18+
- uses: actions/setup-node@v6
1919
with:
20-
node-version: '20'
20+
node-version: '24'
2121
registry-url: 'https://registry.npmjs.org'
2222
- name: Install dependencies
2323
run: npm ci
@@ -28,5 +28,3 @@ jobs:
2828
npm run build-package
2929
cd build/ol
3030
npm publish --provenance
31-
env:
32-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13-
- uses: actions/setup-node@v4
13+
- uses: actions/setup-node@v6
1414
with:
15-
node-version: '20'
15+
node-version: '24'
1616
- name: Install dependencies
1717
run: npm ci
1818
- name: Build Release Assets

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
uses: actions/checkout@v4
2828

2929
- name: Set Node.js Version
30-
uses: actions/setup-node@v4
30+
uses: actions/setup-node@v6
3131
with:
32-
node-version: '20'
32+
node-version: '24'
3333

3434
- name: Install Dependencies
3535
run: npm ci
@@ -49,9 +49,9 @@ jobs:
4949
uses: actions/checkout@v4
5050

5151
- name: Set Node.js Version
52-
uses: actions/setup-node@v4
52+
uses: actions/setup-node@v6
5353
with:
54-
node-version: '20'
54+
node-version: '24'
5555

5656
- name: Install Dependencies
5757
run: npm ci
@@ -71,9 +71,9 @@ jobs:
7171
uses: actions/checkout@v4
7272

7373
- name: Set Node.js Version
74-
uses: actions/setup-node@v4
74+
uses: actions/setup-node@v6
7575
with:
76-
node-version: '20'
76+
node-version: '24'
7777

7878
- name: Install Dependencies
7979
run: npm ci

CHANGELOG.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.1.0] - 2025-11-27
11+
1012
- Implement WMTS REST request encoding
13+
- Fix issues with loading missing projections (adds the `GeoTIFF.js` source from ol temporarily)
14+
- Use `fromProjectionCode` for loading projections (and fall back to `fromEPSGCode`)
15+
- Support the visualization of Collections as children
1116

1217
## [1.0.5] - 2025-09-16
1318

@@ -140,11 +145,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
140145
- OpenLayers is now a peer dependency
141146
- Add support for PMTiles (via Web Map Links extension)
142147
- New general purpose option `getSourceOptions(type, options, ref)` to customize source options.
143-
It also applies to all web-map-link source options now.
144-
It replaces:
145-
- `getGeoTIFFSourceOptions(options, ref)`
146-
- `getImageStaticSourceOptions(options, ref)`
147-
- `getXYZSourceOptions(options, ref)`
148+
It also applies to all web-map-link source options now.
149+
It replaces:
150+
- `getGeoTIFFSourceOptions(options, ref)`
151+
- `getImageStaticSourceOptions(options, ref)`
152+
- `getXYZSourceOptions(options, ref)`
153+
148154
- Added `SourceType` enum for `getSourceOptions`
149155

150156
## [1.0.0-beta.5] - 2023-08-23
@@ -169,7 +175,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
169175

170176
- First release
171177

172-
[Unreleased]: <https://github.com/stac-extensions/contacts/compare/v1.0.4...HEAD>
178+
[Unreleased]: <https://github.com/stac-extensions/contacts/compare/v1.1.0...HEAD>
179+
[1.1.0]: <https://github.com/stac-extensions/contacts/compare/v1.0.5...v1.1.0>
173180
[1.0.5]: <https://github.com/stac-extensions/contacts/compare/v1.0.4...v1.0.5>
174181
[1.0.4]: <https://github.com/stac-extensions/contacts/compare/v1.0.3...v1.0.4>
175182
[1.0.3]: <https://github.com/stac-extensions/contacts/compare/v1.0.2...v1.0.3>

package-lock.json

Lines changed: 98 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ol-stac",
3-
"version": "1.0.5",
3+
"version": "1.1.0",
44
"description": "An \"automagical\" STAC LayerGroup for OpenLayers",
55
"homepage": "https://moregeo.it",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)