From 6d0e09bd3373870b6538628518c3c3167bd8070f Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Sat, 4 Jan 2025 20:21:05 +0100 Subject: [PATCH] v2.7.0 --- CHANGELOG.md | 8 ++++++-- README.md | 2 +- package.json | 2 +- src/openeo.js | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d939c6..0a03eda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.7.0] - 2025-01-04 + ### Added - New function `getMissingBackends` for `Logs` - New property `federation:backends` added to the array returned by `validateProcess` +- New property `axios` in the `Environment` - New functions in `Connection` for paginating through lists: - `paginateProcesses` - `paginateCollections` @@ -18,11 +21,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `paginateFiles` - `paginateUserProcesses` - `paginateServices` -- The client may add a self link to the links in responses ### Changed - The `listCollectionItems` function in `Connection` was completely rewritten. +- The client may add a self link to the links in responses ## [2.6.0] - 2024-07-11 @@ -235,7 +238,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 All prior releases have been documented in the [GitHub Releases](https://github.com/Open-EO/openeo-js-client/releases). -[Unreleased]: https://github.com/Open-EO/openeo-js-client/compare/v2.6.0...HEAD +[Unreleased]: https://github.com/Open-EO/openeo-js-client/compare/v2.7.0...HEAD +[2.7.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.6.0...v2.7.0 [2.6.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.5.1...v2.6.0 [2.5.1]: https://github.com/Open-EO/openeo-js-client/compare/v2.5.0...v2.5.1 [2.5.0]: https://github.com/Open-EO/openeo-js-client/compare/v2.4.1...v2.5.0 diff --git a/README.md b/README.md index a7a0657..157bf6d 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ JavaScript/TypeScript client for the openEO API. * [Documentation](https://open-eo.github.io/openeo-js-client/latest/). -The version of this client is **2.6.0** and supports **openEO API versions 1.x.x**. +The version of this client is **2.7.0** and supports **openEO API versions 1.x.x**. Legacy versions are available as releases. See the [CHANGELOG](CHANGELOG.md) for recent changes. diff --git a/package.json b/package.json index ac99c51..3f0cfeb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@openeo/js-client", - "version": "2.6.0", + "version": "2.7.0", "author": "openEO Consortium", "contributors": [ { diff --git a/src/openeo.js b/src/openeo.js index 9ef90fe..690299b 100644 --- a/src/openeo.js +++ b/src/openeo.js @@ -109,7 +109,7 @@ class OpenEO { * @returns {string} Version number (according to SemVer). */ static clientVersion() { - return "2.6.0"; + return "2.7.0"; } }