Skip to content

Commit d7ef9c4

Browse files
committed
v2.8.0
1 parent 1d0127e commit d7ef9c4

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.8.0] - 2025-04-25
11+
1012
### Added
1113

1214
- New property `id` added to `FederationBackend` objects returned by `listFederation` in `Capabilities`
1315
- New functions `getFederationBackend` and `getFederationBackends` in `Capabilities`
1416

17+
### Fixed
18+
19+
- Updated/fixed Typescript declaration
20+
1521
## [2.7.0] - 2025-01-04
1622

1723
### Added
@@ -243,7 +249,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
243249

244250
All prior releases have been documented in the [GitHub Releases](https://github.com/Open-EO/openeo-js-client/releases).
245251

246-
[Unreleased]: https://github.com/Open-EO/openeo-js-client/compare/v2.7.0...HEAD
252+
[Unreleased]: https://github.com/Open-EO/openeo-js-client/compare/v2.8.0...HEAD
253+
[2.8.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.7.0...v2.8.0
247254
[2.7.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.6.0...v2.7.0
248255
[2.6.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.5.1...v2.6.0
249256
[2.5.1]: https://github.com/Open-EO/openeo-js-client/compare/v2.5.0...v2.5.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ JavaScript/TypeScript client for the openEO API.
44

55
* [Documentation](https://open-eo.github.io/openeo-js-client/latest/).
66

7-
The version of this client is **2.7.0** and supports **openEO API versions 1.x.x**.
7+
The version of this client is **2.8.0** and supports **openEO API versions 1.x.x**.
88
Legacy versions are available as releases.
99
See the [CHANGELOG](CHANGELOG.md) for recent changes.
1010

@@ -32,7 +32,7 @@ To install it in a NodeJS environment run:
3232
Afterwards, you can import the package:
3333
`const { OpenEO } = require('@openeo/js-client');`
3434

35-
### TypeScript
35+
### TypeScript
3636

3737
Warning: The TypeScript integration is still **experimental**! Please help us improve it by opening issues or pull requests.
3838

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openeo/js-client",
3-
"version": "2.7.0",
3+
"version": "2.8.0",
44
"author": "openEO Consortium",
55
"contributors": [
66
{

src/openeo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class OpenEO {
109109
* @returns {string} Version number (according to SemVer).
110110
*/
111111
static clientVersion() {
112-
return "2.7.0";
112+
return "2.8.0";
113113
}
114114

115115
}

0 commit comments

Comments
 (0)