Skip to content

Commit

Permalink
Merge pull request #132 from symbol/dev
Browse files Browse the repository at this point in the history
Releasing v1.1.4
  • Loading branch information
yilmazbahadir authored Jan 19, 2022
2 parents 8daf418 + cd242f9 commit f1c72e1
Show file tree
Hide file tree
Showing 19 changed files with 1,987 additions and 231 deletions.
17 changes: 11 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,33 +23,38 @@ script:
- npm run build
jobs:
include:
- stage: test
- stage: lint
name: lint
script: npm run lint
name: openapi
- stage: test
name: test
script: npm run test
- stage: test openapi
name: test-openapi
script: npm run test:openapi
- stage: generate openapi
name: openapi typescript client generation
script: bash client/generate.sh
- stage: build
name: docker test build
script: /bin/bash travis/docker-functions.sh docker_build $VERSION
node_js: 10
- stage: publish
- stage: publish alpha docker
name: docker publish alpha
script: /bin/bash travis/docker-functions.sh docker_build $VERSION publish
if: branch = env(DEV_BRANCH) AND type = push
node_js: 10
- stage: publish
- stage: publish alpha npm
name: openapi typescript client alpha
script: bash client/generate.sh publish
if: branch = env(DEV_BRANCH) AND type = push
node_js: 10
- stage: release
- stage: release docker
name: docker publish release
script: /bin/bash travis/docker-functions.sh docker_build $VERSION release
if: branch = env(RELEASE_BRANCH) AND type = api AND commit_message = env(RELEASE_MESSAGE)
node_js: 10
- stage: release
- stage: release npm
name: openapi typescript client release
script: bash client/generate.sh release
if: branch = env(RELEASE_BRANCH) AND type = api AND commit_message = env(RELEASE_MESSAGE)
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file.

The changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [v1.1.4][v1.1.4] - 18-Jan-2022

Package | Version | Link
---|---|---
REST Core| v2.4.0 | [catapult-rest][[email protected]]
SDK Core| v1.0.3 | [symbol-sdk][[email protected]]

### Fix
- `tsconfig.build.json` added to exclude test files from build but keep for tests [#128](https://github.com/symbol/statistics-service/pull/128)
- `Config.KEEP_STALE_NODES_FOR_HOURS` is added to clean up stale nodes from database [#127](https://github.com/symbol/statistics-service/pull/127)
- Preferred nodes filter fixed, `Config.PREFERRED_NODES` is now empty by default (will be set in the testnet/mainnet environment) [#126](https://github.com/symbol/statistics-service/pull/126)
- Node discovery extended, empty host info bug fixed, logging enhanced [#121](https://github.com/symbol/statistics-service/pull/121)

## [v1.1.3][v1.1.3] - 30-Nov-2021

Package | Version | Link
Expand Down Expand Up @@ -142,6 +155,8 @@ REST Core| v2.1.0 | [catapult-rest](https://github.com/nemtech/catapult-rest/rel
### Fixes
- Cors error. [#13](https://github.com/nemgrouplimited/symbol-statistics-service/issues/13)

[v1.1.4]: https://github.com/symbol/statistics-service/releases/tag/v1.1.4
[v1.1.3]: https://github.com/symbol/statistics-service/releases/tag/v1.1.3
[v1.1.2]: https://github.com/symbol/statistics-service/releases/tag/v1.1.2
[v1.1.1]: https://github.com/symbol/statistics-service/releases/tag/v1.1.1
[v1.1.0]: https://github.com/symbol/statistics-service/releases/tag/v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion openapi/openapi.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: Symbol Statistic Service API Documentation
version: '1.1.3'
version: '1.1.4'
servers:
- url: 'https://testnet.symbol.services'
description: Testnet server
Expand Down
Loading

0 comments on commit f1c72e1

Please sign in to comment.