Skip to content

Commit

Permalink
Update versions and CHANGELOG.md
Browse files Browse the repository at this point in the history
This CR prepares the code for the release.

Resolves: OLPEDGE-2303

Signed-off-by: Oleksii Zubko <ext-oleksii.zubko@here.com>
  • Loading branch information
OleksiiZubko committed Sep 21, 2020
1 parent 554098d commit 781344f
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 23 deletions.
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ deploy:
on:
branch: master
condition: [ $TRAVIS_EVENT_TYPE = api && $allow_publish_npm = true && $allow_publish_api = true ]
- provider: script
script: $WORKSPACE/scripts/publish-packages.sh -core
cleanup: false
on:
branch: master
condition: [ $TRAVIS_EVENT_TYPE = api && $allow_publish_npm = true && $allow_publish_core = true ]
- provider: script
script: $WORKSPACE/scripts/publish-packages.sh -auth
cleanup: false
Expand All @@ -53,11 +59,5 @@ deploy:
cleanup: false
on:
branch: master
condition: [ $TRAVIS_EVENT_TYPE = api && $allow_publish_npm = true && $allow_publish_write = true ]
- provider: script
script: $WORKSPACE/scripts/publish-packages.sh -core
cleanup: false
on:
branch: master
condition: [ $TRAVIS_EVENT_TYPE = api && $allow_publish_npm = true && $allow_publish_core = true ]
condition: [ $TRAVIS_EVENT_TYPE = api && $allow_publish_npm = true && $allow_publish_write = true ]

6 changes: 3 additions & 3 deletions @here/olp-sdk-authentication/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/olp-sdk-authentication",
"version": "1.5.1",
"version": "1.6.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",
Expand Down Expand Up @@ -49,9 +49,9 @@
},
"license": "Apache-2.0",
"dependencies": {
"@here/olp-sdk-core": "^1.0.0",
"@here/olp-sdk-core": "^1.1.0",
"@types/properties-reader": "^0.0.1",
"@here/olp-sdk-fetch": "^1.5.0",
"@here/olp-sdk-fetch": "^1.6.0",
"properties-reader": "^0.3.1"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions @here/olp-sdk-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/olp-sdk-core",
"version": "1.0.1",
"version": "1.1.0",
"description": "Core features of the HERE Data Platform",
"main": "index.js",
"browser": "index.web.js",
Expand Down Expand Up @@ -49,8 +49,8 @@
},
"license": "Apache-2.0",
"dependencies": {
"@here/olp-sdk-fetch": "^1.5.0",
"@here/olp-sdk-dataservice-api": "^1.5.0"
"@here/olp-sdk-fetch": "^1.6.0",
"@here/olp-sdk-dataservice-api": "^1.6.0"
},
"devDependencies": {
"@types/chai": "^4.2.7",
Expand Down
2 changes: 1 addition & 1 deletion @here/olp-sdk-dataservice-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/olp-sdk-dataservice-api",
"version": "1.5.0",
"version": "1.6.0",
"description": "Generated from the OpenAPI specification of the HERE Open Location Platform Data API",
"main": "index.js",
"typings": "index",
Expand Down
8 changes: 4 additions & 4 deletions @here/olp-sdk-dataservice-read/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/olp-sdk-dataservice-read",
"version": "1.5.1",
"version": "1.6.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",
Expand Down Expand Up @@ -49,9 +49,9 @@
},
"license": "Apache-2.0",
"dependencies": {
"@here/olp-sdk-core": "^1.0.0",
"@here/olp-sdk-dataservice-api": "^1.5.0",
"@here/olp-sdk-fetch": "^1.5.0"
"@here/olp-sdk-core": "^1.1.0",
"@here/olp-sdk-dataservice-api": "^1.6.0",
"@here/olp-sdk-fetch": "^1.6.0"
},
"devDependencies": {
"@types/chai": "^4.2.7",
Expand Down
7 changes: 4 additions & 3 deletions @here/olp-sdk-dataservice-write/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/olp-sdk-dataservice-write",
"version": "1.0.1",
"version": "1.1.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",
Expand Down Expand Up @@ -50,8 +50,9 @@
},
"license": "Apache-2.0",
"dependencies": {
"@here/olp-sdk-core": "^1.0.0",
"@here/olp-sdk-fetch": "^1.5.0"
"@here/olp-sdk-core": "^1.1.0",
"@here/olp-sdk-dataservice-api": "^1.6.0",
"@here/olp-sdk-fetch": "^1.6.0"
},
"devDependencies": {
"@types/chai": "^4.2.7",
Expand Down
2 changes: 1 addition & 1 deletion @here/olp-sdk-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/olp-sdk-fetch",
"version": "1.5.0",
"version": "1.6.0",
"description": "Adds a subset of the fetch API for Node.js",
"main": "index.js",
"browser": "index.web.js",
Expand Down
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
## v1.6.0 (21/09/2020)

**olp-sdk-core**

- Removed the `User-Agent` custom header from the requests. This was necessary due to issues sending a custom user-agent in Mozilla browsers.

**olp-sdk-authentication**

- Removed the `User-Agent` custom header from the requests. This was necessary due to issues sending a custom user-agent in Mozilla browsers.
- Updated `@here/olp-sdk-fetch` to version 1.6.0.

**olp-sdk-dataservice-api**

- Added generated functions and interfaces for supporting Authorization APIs. You can find them in `@here/olp-sdk-dataservice-api/lib/authorization-api-v1.1.ts`.

**olp-sdk-fetch**

- Updated dependencies.

**olp-sdk-dataservice-read**

- Fixed the issue with caching partitions metadata without additional fields.
- Started using `RequestFactory` from the `@here/olp-sdk-core` package.

**olp-sdk-dataservice-write**

- Added `@here/olp-sdk-dataservice-api` as a dependency.
- Updated `@here/olp-sdk-core` to version 1.1.0.
- Updated `@here/olp-sdk-fetch` to version 1.6.0.


## v1.5.1 (19/08/2020)

**olp-sdk-core**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/olp-sdk-ts",
"version": "1.5.1",
"version": "1.6.0",
"description": "HERE OLP SDK for TypeScript",
"author": {
"name": "HERE Europe B.V.",
Expand Down

0 comments on commit 781344f

Please sign in to comment.