From e8ab69848cd8bc1475c6956e22ff0b993e1275e9 Mon Sep 17 00:00:00 2001 From: Oleksii Zubko Date: Mon, 7 Dec 2020 15:04:53 +0200 Subject: [PATCH] Update CHANGELOG and versions. This is a release commit before creating release tag. Resolves: OLPEDGE-2378 Signed-off-by: Oleksii Zubko --- @here/olp-sdk-authentication/package.json | 6 ++--- .../olp-sdk-authentication/test/OAuth.test.ts | 2 +- @here/olp-sdk-core/lib.version.ts | 2 +- @here/olp-sdk-core/package.json | 6 ++--- @here/olp-sdk-dataservice-api/package.json | 2 +- @here/olp-sdk-dataservice-read/package.json | 8 +++--- @here/olp-sdk-dataservice-write/package.json | 8 +++--- @here/olp-sdk-fetch/package.json | 2 +- CHANGELOG.md | 27 +++++++++++++++++++ package.json | 2 +- 10 files changed, 46 insertions(+), 19 deletions(-) diff --git a/@here/olp-sdk-authentication/package.json b/@here/olp-sdk-authentication/package.json index 4e0fd72b..78678719 100644 --- a/@here/olp-sdk-authentication/package.json +++ b/@here/olp-sdk-authentication/package.json @@ -1,6 +1,6 @@ { "name": "@here/olp-sdk-authentication", - "version": "1.7.0", + "version": "1.8.0", "description": "Wrapper around the HERE Authentication and Authorization REST API obtaining short-lived access tokens that are used to authenticate requests to HERE services.", "main": "index.js", "browser": "index.web.js", @@ -49,8 +49,8 @@ }, "license": "Apache-2.0", "dependencies": { - "@here/olp-sdk-core": "^1.2.0", - "@here/olp-sdk-fetch": "^1.7.0", + "@here/olp-sdk-core": "^1.3.0", + "@here/olp-sdk-fetch": "^1.8.0", "properties-reader": "^0.3.1" }, "devDependencies": { diff --git a/@here/olp-sdk-authentication/test/OAuth.test.ts b/@here/olp-sdk-authentication/test/OAuth.test.ts index fd2fdfdd..74393d31 100644 --- a/@here/olp-sdk-authentication/test/OAuth.test.ts +++ b/@here/olp-sdk-authentication/test/OAuth.test.ts @@ -94,7 +94,7 @@ describe("oauth-request-offline", function() { const options: RequestInit & any = fetchMock.calls()[0][1]; expect(options.headers.get("Authorization")).to.be.equal( - `OAuth oauth_consumer_key="mocked-key",oauth_nonce="mocked-nonce",oauth_signature_method="HMAC-SHA256",oauth_timestamp="1550777140",oauth_version="1.0",oauth_signature="ShzC6ULa9P52tbrEJFPwktjnqyxm%2FMEYzeL0HaxJSx8%3D"` + `OAuth oauth_consumer_key="mocked-key",oauth_nonce="mocked-nonce",oauth_signature_method="HMAC-SHA256",oauth_timestamp="1550777140",oauth_version="1.0",oauth_signature="iUg4i15Ur5ogUmxKQ4ESdiwRVGrRx6O1h18NbMndV5Q%3D"` ); }); diff --git a/@here/olp-sdk-core/lib.version.ts b/@here/olp-sdk-core/lib.version.ts index 3fb72baf..f4d2b2cf 100644 --- a/@here/olp-sdk-core/lib.version.ts +++ b/@here/olp-sdk-core/lib.version.ts @@ -17,4 +17,4 @@ * License-Filename: LICENSE */ -export const LIB_VERSION = "1.7.0"; +export const LIB_VERSION = "1.8.0"; diff --git a/@here/olp-sdk-core/package.json b/@here/olp-sdk-core/package.json index 7235fcc0..1b6574b1 100644 --- a/@here/olp-sdk-core/package.json +++ b/@here/olp-sdk-core/package.json @@ -1,6 +1,6 @@ { "name": "@here/olp-sdk-core", - "version": "1.2.0", + "version": "1.3.0", "description": "Core features of the HERE Data Platform", "main": "index.js", "browser": "index.web.js", @@ -49,8 +49,8 @@ }, "license": "Apache-2.0", "dependencies": { - "@here/olp-sdk-fetch": "^1.7.0", - "@here/olp-sdk-dataservice-api": "^1.7.0" + "@here/olp-sdk-fetch": "^1.8.0", + "@here/olp-sdk-dataservice-api": "^1.8.0" }, "devDependencies": { "@types/chai": "^4.2.7", diff --git a/@here/olp-sdk-dataservice-api/package.json b/@here/olp-sdk-dataservice-api/package.json index 7efbf067..4c480261 100644 --- a/@here/olp-sdk-dataservice-api/package.json +++ b/@here/olp-sdk-dataservice-api/package.json @@ -1,6 +1,6 @@ { "name": "@here/olp-sdk-dataservice-api", - "version": "1.7.0", + "version": "1.8.0", "description": "Generated from the OpenAPI specification of the HERE Open Location Platform Data API", "main": "index.js", "typings": "index", diff --git a/@here/olp-sdk-dataservice-read/package.json b/@here/olp-sdk-dataservice-read/package.json index 32073204..927f98e0 100644 --- a/@here/olp-sdk-dataservice-read/package.json +++ b/@here/olp-sdk-dataservice-read/package.json @@ -1,6 +1,6 @@ { "name": "@here/olp-sdk-dataservice-read", - "version": "1.7.0", + "version": "1.8.0", "description": "Wrapper around a subset of the HERE Open Location Platform Data REST API related to reading data from OLP catalogs", "main": "index.js", "browser": "index.web.js", @@ -49,9 +49,9 @@ }, "license": "Apache-2.0", "dependencies": { - "@here/olp-sdk-core": "^1.2.0", - "@here/olp-sdk-dataservice-api": "^1.7.0", - "@here/olp-sdk-fetch": "^1.7.0" + "@here/olp-sdk-core": "^1.3.0", + "@here/olp-sdk-dataservice-api": "^1.8.0", + "@here/olp-sdk-fetch": "^1.8.0" }, "devDependencies": { "@types/chai": "^4.2.7", diff --git a/@here/olp-sdk-dataservice-write/package.json b/@here/olp-sdk-dataservice-write/package.json index 0908fdad..f7a6d0a6 100644 --- a/@here/olp-sdk-dataservice-write/package.json +++ b/@here/olp-sdk-dataservice-write/package.json @@ -1,6 +1,6 @@ { "name": "@here/olp-sdk-dataservice-write", - "version": "1.2.0", + "version": "1.3.0", "description": "Wrapper around a subset of the HERE Open Location Platform Data REST API related to writing data to OLP catalogs", "main": "index.js", "browser": "index.web.js", @@ -50,9 +50,9 @@ }, "license": "Apache-2.0", "dependencies": { - "@here/olp-sdk-core": "^1.2.0", - "@here/olp-sdk-dataservice-api": "^1.7.0", - "@here/olp-sdk-fetch": "^1.7.0" + "@here/olp-sdk-core": "^1.3.0", + "@here/olp-sdk-dataservice-api": "^1.8.0", + "@here/olp-sdk-fetch": "^1.8.0" }, "devDependencies": { "@types/chai": "^4.2.7", diff --git a/@here/olp-sdk-fetch/package.json b/@here/olp-sdk-fetch/package.json index 457b31e1..7c3ee9fa 100644 --- a/@here/olp-sdk-fetch/package.json +++ b/@here/olp-sdk-fetch/package.json @@ -1,6 +1,6 @@ { "name": "@here/olp-sdk-fetch", - "version": "1.7.0", + "version": "1.8.0", "description": "Adds a subset of the fetch API for Node.js", "main": "index.js", "browser": "index.web.js", diff --git a/CHANGELOG.md b/CHANGELOG.md index 78980945..12f1d984 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,30 @@ +## v1.8.0 (07/12/2020) + +**olp-sdk-core** + +- Changed the webpack configuration for bundling JS. + +**olp-sdk-authentication** + +- Added the maximum validity of the token `expiresIn` parameter to `UserAuthConfig`. +- Changed the webpack configuration for bundling JS. + +**olp-sdk-fetch** + +- Changed the webpack configuration for bundling JS. + +**olp-sdk-dataservice-api** + +- Changed the webpack configuration for bundling JS. + +**olp-sdk-dataservice-read** + +- Changed the webpack configuration for bundling JS. + +**olp-sdk-dataservice-write** + +- Changed the webpack configuration for bundling JS. + ## v1.7.0 (02/11/2020) **olp-sdk-core** diff --git a/package.json b/package.json index 196b1c61..3a9948ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@here/olp-sdk-ts", - "version": "1.7.0", + "version": "1.8.0", "description": "HERE OLP SDK for TypeScript", "author": { "name": "HERE Europe B.V.",