Skip to content

Commit 6d0e09b

Browse files
committed
v2.7.0
1 parent a5d56e3 commit 6d0e09b

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.7.0] - 2025-01-04
11+
1012
### Added
1113

1214
- New function `getMissingBackends` for `Logs`
1315
- New property `federation:backends` added to the array returned by `validateProcess`
16+
- New property `axios` in the `Environment`
1417
- New functions in `Connection` for paginating through lists:
1518
- `paginateProcesses`
1619
- `paginateCollections`
1720
- `paginateJobs`
1821
- `paginateFiles`
1922
- `paginateUserProcesses`
2023
- `paginateServices`
21-
- The client may add a self link to the links in responses
2224

2325
### Changed
2426

2527
- The `listCollectionItems` function in `Connection` was completely rewritten.
28+
- The client may add a self link to the links in responses
2629

2730
## [2.6.0] - 2024-07-11
2831

@@ -235,7 +238,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
235238

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

238-
[Unreleased]: https://github.com/Open-EO/openeo-js-client/compare/v2.6.0...HEAD
241+
[Unreleased]: https://github.com/Open-EO/openeo-js-client/compare/v2.7.0...HEAD
242+
[2.7.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.6.0...v2.7.0
239243
[2.6.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.5.1...v2.6.0
240244
[2.5.1]: https://github.com/Open-EO/openeo-js-client/compare/v2.5.0...v2.5.1
241245
[2.5.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.4.1...v2.5.0

README.md

Lines changed: 1 addition & 1 deletion
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.6.0** and supports **openEO API versions 1.x.x**.
7+
The version of this client is **2.7.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

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.6.0",
3+
"version": "2.7.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.6.0";
112+
return "2.7.0";
113113
}
114114

115115
}

0 commit comments

Comments
 (0)