-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated Travis. Using travis function submodule * Fixed e2e script * Currency and CurrencyService (#695) * Network Currency and Service * Code improvements * Renamed NetworkCurrency with Currency Docs fixes * Removed cache from service. The repository factory caches them * Fixed lazy loading cache * Improved e2e for travis cron Mosaic id is prefered when loading from rest. Removed hardcoded mosaic id from public * Fixed lint error * Fixed build * Updated bootstrap * create-index-files npm command (#701) Generates the index.ts automatically * Revisit how npm package is created (#702) * Updated open api to latest alpha (Requires New Rest) (#698) * Fixed #672 - Added finalization http * Security alert fix * Updated libs * Updated open api to latest alpha Added secret filter in secret lock search Updated transaction search * Improved e2e tests * Increased timeout * Fixed build error Co-authored-by: Steven Liu <[email protected]> * Typo in docs of PublicAccount.ts (#703) * UnlockedAccount endpoint and latest openAPI changes (#706) * Fixed #705 - Added unlocked account endpoint - Applied latest changes from openAPI * Updated open api to latest alpha (Requires New Rest) (#698) * Fixed #672 - Added finalization http * Security alert fix * Updated libs * Updated open api to latest alpha Added secret filter in secret lock search Updated transaction search * Improved e2e tests * Increased timeout * Fixed build error Co-authored-by: Steven Liu <[email protected]> * Fixed #705 - Added unlocked account endpoint - Applied latest changes from openAPI * Updated change log Co-authored-by: fboucquez <[email protected]> * Added prettier-plugin-organize-imports to prettier. (#708) * Added prettier-plugin-organize-imports to prettier. It fixes all the unsued imports warnings and order conflicts. It's integrated with npm run style:fox * Updated openAPI spec for unlockedAccount (#710) * Updated openAPI spec for unlockedAccount * Added Peer param in unlocked account * Updated travis (#711) * PersistentDelegationRequestTransaction message bug fix (#709) * Fixed message parsing from dto and buffer * State serialization and Mako Catbuffer (#707) * message marker harvesting (#714) * Fixed persistentHarvesting message marker issue. * Working on persistent delegate harvest * Improved doc and unit tests Co-authored-by: fernando <[email protected]> * - Added nodePublicKey in NodeInfo (#719) - Cache nodePublicKey in RepoFactory * /Merkle endpoints (#717) * Added /merkle endpoints * Added new block type (#724) * Added new block type * PR feedbacks * Server 10.0.0.4 upgrade (#725) * V1 Transactions * Added voting key v1 and v2 * fixed lint * Fixed DTO mapping and improved unit test. * Fixed repository merkle name Fixed search criteria * Server duration parser and test refactor (#729) * - Fixed #728 - server duration parser and test refactor * Added more check in duration parser * All transaction related notification should take an unresolved address (#731) * issue-#664: change filter Address to be unresolved Address * [issue-664]: resolve transaction notification with unresolved address * [issue-664]: fix invalid address name in docs * [issue-664]: add some test case for unresolved address * Merkle proof + finalization proof + block type fixes (#727) Improved creation of streamers Finality proof fix Make nemesis/importance block optional Co-authored-by: fernando <[email protected]> * Fixed deadline is sometimes 1 sec different * instead of minus milsecs, minus secs, sinc server epochAdjustment is using secs * New Role types (#733) * Bump highlight.js from 10.1.2 to 10.4.1 (#735) Bumps [highlight.js](https://github.com/highlightjs/highlight.js) from 10.1.2 to 10.4.1. - [Release notes](https://github.com/highlightjs/highlight.js/releases) - [Changelog](https://github.com/highlightjs/highlight.js/blob/master/CHANGES.md) - [Commits](highlightjs/highlight.js@10.1.2...10.4.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 0.22.0 changelog (#732) * Updated version to 0.22.0 Updated changelog * Feedback changes * State proof fixes (#736) * Added version 1 fallback * removed log * Addes sort_key:keys (#737) * Updated change log (#738) * Version upgrades (#739) * Version upgrades * updated open api version Co-authored-by: Steven Liu <[email protected]> Co-authored-by: Xavi Artigas <[email protected]> Co-authored-by: James Lin <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
b1a555a
commit da26f22
Showing
342 changed files
with
9,310 additions
and
4,478 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "travis"] | ||
path = travis | ||
url = https://github.com/nemgrouplimited/travis-functions.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
src/ | ||
test/ | ||
node_modules/ | ||
e2e/ | ||
docs/ | ||
coverage/ | ||
.nyc_output/ | ||
.github/ | ||
.idea/ | ||
dist/test | ||
dist/e2e | ||
licenses/ | ||
travis/ | ||
target/ | ||
ts-docs/ | ||
.travis | ||
*.iml | ||
*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,54 @@ | ||
dist: bionic | ||
language: node_js | ||
node_js: | ||
- "10" | ||
- "12" | ||
- 10 | ||
- 12 | ||
services: | ||
- docker | ||
env: | ||
global: | ||
- DEV_BRANCH=dev | ||
- RELEASE_BRANCH=main | ||
- POST_RELEASE_BRANCH=main | ||
- RELEASE_MESSAGE=release | ||
cache: | ||
directories: | ||
- "node_modules" | ||
- .eslintcache | ||
jobs: | ||
include: | ||
- stage: e2e | ||
script: npm run test:e2e | ||
if: branch = e2e | ||
before_script: | ||
- npm run build | ||
- if [ "$TRAVIS_NODE_VERSION" = "10" ] || [ "$TRAVIS_NODE_VERSION" = "12" ]; then npm run lint; fi | ||
- . ./travis/node-functions.sh | ||
- VERSION="$(node_load_version)" | ||
- log_env_variables | ||
script: | ||
- npm run test:cov | ||
- npm run doc | ||
- touch ./ts-docs/.nojekyll | ||
- if [ "$TRAVIS_NODE_VERSION" = "10" ]; then npm run coveralls-report; fi | ||
deploy: | ||
- provider: script | ||
skip_cleanup: true | ||
script: /bin/sh travis/github-pages.sh | ||
on: | ||
branch: main | ||
node_js: "12" | ||
- provider: script | ||
skip_cleanup: true | ||
script: /bin/sh travis/uploadArchives.sh | ||
on: | ||
branch: main | ||
node_js: "10" | ||
- provider: script | ||
skip_cleanup: true | ||
script: /bin/sh travis/release.sh | ||
on: | ||
branch: $RELEASE_BRANCH | ||
node_js: "10" | ||
jobs: | ||
include: | ||
- stage: test | ||
name: docs | ||
script: npm run doc | ||
- stage: test | ||
name: lint | ||
script: npm run lint | ||
- name: e2e | ||
script: npm run e2e | ||
if: (branch = env(DEV_BRANCH) AND type = cron) OR (commit_message = e2e) | ||
- stage: publish | ||
name: github alpha pages | ||
script: node_push_github_pages | ||
if: branch = env(DEV_BRANCH) AND type = push | ||
- name: alpha npm | ||
script: npm run build && node_publish_alpha | ||
if: branch = env(DEV_BRANCH) AND type = push | ||
- stage: release | ||
name: release npm | ||
script: npm run build && node_publish_release | ||
if: branch = env(RELEASE_BRANCH) AND type = api AND commit_message = env(RELEASE_MESSAGE) | ||
- stage: release | ||
name: github release pages | ||
script: node_push_github_pages | ||
if: branch = env(RELEASE_BRANCH) AND type = api AND commit_message = env(RELEASE_MESSAGE) | ||
- stage: post release | ||
name: tag and version upgrade | ||
script: node_post_release | ||
if: branch = env(RELEASE_BRANCH) AND type = api AND commit_message = env(RELEASE_MESSAGE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
nemesis: | ||
mosaics: | ||
- accounts: 10 | ||
symbolRestImage: symbolplatform/symbol-rest:2.1.1-alpha-202011061935 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.