Skip to content

Commit 33d3bb4

Browse files
committed
Release 1.9.0
Adding CHANGELOGs, updating versions and copyright to the current year in READMEs. Resolves: OLPEDGE-2469 Signed-off-by: Oleksii Zubko <ext-oleksii.zubko@here.com>
1 parent a089dbe commit 33d3bb4

File tree

18 files changed

+64
-26
lines changed

18 files changed

+64
-26
lines changed

@here/olp-sdk-authentication/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,6 @@ Add the minified JavaScript file to your `HTML` and create the `userAuth` object
151151

152152
## LICENSE
153153

154-
Copyright (C) 20192020 HERE Europe B.V.
154+
Copyright (C) 20192021 HERE Europe B.V.
155155

156156
For license details, see the [LICENSE](LICENSE).

@here/olp-sdk-authentication/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
},
5050
"license": "Apache-2.0",
5151
"dependencies": {
52-
"@here/olp-sdk-core": "^1.3.0",
53-
"@here/olp-sdk-fetch": "^1.8.0",
52+
"@here/olp-sdk-core": "^1.4.0",
53+
"@here/olp-sdk-fetch": "^1.9.0",
5454
"properties-reader": "^0.3.1"
5555
},
5656
"devDependencies": {

@here/olp-sdk-authentication/test/OAuth.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ describe("oauth-request-offline", function() {
9494

9595
const options: RequestInit & any = fetchMock.calls()[0][1];
9696
expect(options.headers.get("Authorization")).to.be.equal(
97-
`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"`
97+
`OAuth oauth_consumer_key="mocked-key",oauth_nonce="mocked-nonce",oauth_signature_method="HMAC-SHA256",oauth_timestamp="1550777140",oauth_version="1.0",oauth_signature="QbfSZff9wtPYD4B0EHWNhDIdWgAa5%2BLtImIAPVR69fc%3D"`
9898
);
9999
});
100100

@here/olp-sdk-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ npm run prepublish-bundle
6565

6666
## LICENSE
6767

68-
Copyright (C) 2020 HERE Europe B.V.
68+
Copyright (C) 2020-2021 HERE Europe B.V.
6969

7070
For license details, see the [LICENSE](LICENSE).

@here/olp-sdk-core/lib.version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2020 HERE Europe B.V.
2+
* Copyright (C) 2020-2021 HERE Europe B.V.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -17,4 +17,4 @@
1717
* License-Filename: LICENSE
1818
*/
1919

20-
export const LIB_VERSION = "1.8.0";
20+
export const LIB_VERSION = "1.9.0";

@here/olp-sdk-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/olp-sdk-core",
3-
"version": "1.3.0",
3+
"version": "1.4.0",
44
"description": "Core features of the HERE Data Platform",
55
"main": "index.js",
66
"browser": "index.web.js",
@@ -49,8 +49,8 @@
4949
},
5050
"license": "Apache-2.0",
5151
"dependencies": {
52-
"@here/olp-sdk-fetch": "^1.8.0",
53-
"@here/olp-sdk-dataservice-api": "^1.8.0"
52+
"@here/olp-sdk-fetch": "^1.9.0",
53+
"@here/olp-sdk-dataservice-api": "^1.9.0"
5454
},
5555
"devDependencies": {
5656
"@types/chai": "^4.2.7",

@here/olp-sdk-dataservice-api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ Add minified JavaScript files to your `html`:
4242

4343
## LICENSE
4444

45-
Copyright (C) 2019-2020 HERE Europe B.V.
45+
Copyright (C) 2019-2021 HERE Europe B.V.
4646

4747
For license details, see the [LICENSE](LICENSE).

@here/olp-sdk-dataservice-api/lib/config-api.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -819,6 +819,10 @@ export interface StatusLink {
819819
* href of the created/update/delete catalog action
820820
*/
821821
href?: string;
822+
/**
823+
* token of the created/update/delete catalog action
824+
*/
825+
configToken?: string;
822826
/**
823827
* Title of the action.
824828
*/

@here/olp-sdk-dataservice-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/olp-sdk-dataservice-api",
3-
"version": "1.8.0",
3+
"version": "1.9.0",
44
"description": "Generated from the OpenAPI specification of the HERE Open Location Platform Data API",
55
"main": "index.js",
66
"typings": "index",

@here/olp-sdk-dataservice-read/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,6 @@ Add minified JavaScript files to your `html` and create an object of userAuth an
123123

124124
## LICENSE
125125

126-
Copyright (C) 2019 HERE Europe B.V.
126+
Copyright (C) 2019-2021 HERE Europe B.V.
127127

128128
For license details, see the [LICENSE](LICENSE).

@here/olp-sdk-dataservice-read/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/olp-sdk-dataservice-read",
3-
"version": "1.8.0",
3+
"version": "1.9.0",
44
"description": "Wrapper around a subset of the HERE Open Location Platform Data REST API related to reading data from OLP catalogs",
55
"main": "index.js",
66
"browser": "index.web.js",
@@ -49,9 +49,9 @@
4949
},
5050
"license": "Apache-2.0",
5151
"dependencies": {
52-
"@here/olp-sdk-core": "^1.3.0",
53-
"@here/olp-sdk-dataservice-api": "^1.8.0",
54-
"@here/olp-sdk-fetch": "^1.8.0"
52+
"@here/olp-sdk-core": "^1.4.0",
53+
"@here/olp-sdk-dataservice-api": "^1.9.0",
54+
"@here/olp-sdk-fetch": "^1.9.0"
5555
},
5656
"devDependencies": {
5757
"@types/chai": "^4.2.7",

@here/olp-sdk-dataservice-write/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,6 @@ const publicationDetails = await clientWrite.getBatch(
248248

249249
## LICENSE
250250

251-
Copyright (C) 2020 HERE Europe B.V.
251+
Copyright (C) 2020-2021 HERE Europe B.V.
252252

253253
For license details, see the [LICENSE](LICENSE).

@here/olp-sdk-dataservice-write/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/olp-sdk-dataservice-write",
3-
"version": "1.3.0",
3+
"version": "1.4.0",
44
"description": "Wrapper around a subset of the HERE Open Location Platform Data REST API related to writing data to OLP catalogs",
55
"main": "index.js",
66
"browser": "index.web.js",
@@ -50,9 +50,9 @@
5050
},
5151
"license": "Apache-2.0",
5252
"dependencies": {
53-
"@here/olp-sdk-core": "^1.3.0",
54-
"@here/olp-sdk-dataservice-api": "^1.8.0",
55-
"@here/olp-sdk-fetch": "^1.8.0"
53+
"@here/olp-sdk-core": "^1.4.0",
54+
"@here/olp-sdk-dataservice-api": "^1.9.0",
55+
"@here/olp-sdk-fetch": "^1.9.0"
5656
},
5757
"devDependencies": {
5858
"@types/chai": "^4.2.7",

@here/olp-sdk-fetch/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ Add minified JavaScript file to your `html` and create an object of userAuth:
6060

6161
## LICENSE
6262

63-
Copyright (C) 2019 HERE Europe B.V.
63+
Copyright (C) 2019-2021 HERE Europe B.V.
6464

6565
For license details, see the [LICENSE](LICENSE).

@here/olp-sdk-fetch/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/olp-sdk-fetch",
3-
"version": "1.8.0",
3+
"version": "1.9.0",
44
"description": "Adds a subset of the fetch API for Node.js",
55
"main": "index.js",
66
"browser": "index.web.js",

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
## v1.9.0 (11/02/2021)
2+
3+
**olp-sdk-core**
4+
5+
- Added the `isValid` method to `TileKey`.
6+
- Fixed the bug related to handling 202 and 303 responses.
7+
- Extended the `HttpError` messages by adding details from the response if it exists.
8+
- Changed the Lookup API host URL for SIT.
9+
- Updated dependencies.
10+
11+
**olp-sdk-authentication**
12+
13+
- Removed the deprecated code (https://github.com/heremaps/here-data-sdk-typescript/pull/425).
14+
- Updated dependencies.
15+
16+
**olp-sdk-fetch**
17+
18+
- Updated dependencies.
19+
20+
**olp-sdk-dataservice-api**
21+
22+
- Removed the deprecated code (https://github.com/heremaps/here-data-sdk-typescript/pull/425).
23+
- Added the APIs generated by `Blob V2`.
24+
- Updated dependencies.
25+
26+
**olp-sdk-dataservice-read**
27+
28+
- Removed the deprecated code (https://github.com/heremaps/here-data-sdk-typescript/pull/425).
29+
- Updated dependencies.
30+
31+
**olp-sdk-dataservice-write**
32+
33+
- Updated dependencies.
34+
135
## v1.8.0 (07/12/2020)
236

337
**olp-sdk-core**

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,6 @@ npm run bundle
172172

173173
## LICENSE
174174

175-
Copyright (C) 2019–2020 HERE Europe B.V.
175+
Copyright (C) 2019–2021 HERE Europe B.V.
176176

177177
For license details, see the <a href="https://github.com/heremaps/here-data-sdk-typescript/blob/master/LICENSE" target="_blank">LICENSE</a> file in the root of this project.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/olp-sdk-ts",
3-
"version": "1.8.0",
3+
"version": "1.9.0",
44
"description": "HERE OLP SDK for TypeScript",
55
"author": {
66
"name": "HERE Europe B.V.",

0 commit comments

Comments
 (0)