Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jul 11, 2024
1 parent ef0c8f5 commit b2144f3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.5.2] - 2024-07-11

### Added

- Support to retrieve conformance classes
Expand All @@ -16,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Support for `level` parameter for log requests in batch jobs and services
- Support passing additional parameters to synchronous jobs.

### Changed

- Updated axios from 0.x to 1.x

### Removed

- Dependency for `node-abort-controller` not required any longer in nodeJS
Expand Down Expand Up @@ -211,7 +218,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.5.1...HEAD
[Unreleased]: https://github.com/Open-EO/openeo-js-client/compare/v2.5.2...HEAD
[2.5.2]: https://github.com/Open-EO/openeo-js-client/compare/v2.5.1...v2.5.2
[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
[2.4.1]: https://github.com/Open-EO/openeo-js-client/compare/v2.4.0...v2.4.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.1** and supports **openEO API versions 1.x.x**.
The version of this client is **2.5.2** and supports **openEO API versions 1.x.x**.
Legacy versions are available as releases.
See the [CHANGELOG](CHANGELOG.md) for recent changes.

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openeo/js-client",
"version": "2.5.1",
"version": "2.5.2",
"author": "openEO Consortium",
"contributors": [
{
Expand Down Expand Up @@ -55,7 +55,7 @@
"dependencies": {
"@openeo/js-commons": "^1.4.0",
"@radiantearth/stac-migrate": "^1.0.0",
"axios": "^0.24.0",
"axios": "^1.0.0",
"oidc-client": "^1.11.5"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/openeo.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class OpenEO {
* @returns {string} Version number (according to SemVer).
*/
static clientVersion() {
return "2.5.1";
return "2.5.2";
}

}
Expand Down

0 comments on commit b2144f3

Please sign in to comment.