-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for near projects to the CLI (#1498) * Add support for near projects to the CLI * Update common near version * Update near packages * [SKIP CI] Prerelease * Arranges commands in alphabetical order (#1495) * [SKIP CI] Prerelease * user process.env.USERPROFILE for windows platform (#1502) * [SKIP CI] Prerelease * add blockTime to NodeConfig (#1501) * [SKIP CI] Prerelease * [release] 20230131 (#1503) * Worker use runtime service (#1491) * draft * update * tidy up * update * working worker runtimes * into base class * clean up * improve base on review * [SKIP CI] Prerelease * Check queue for lower blocks before processing fetched blocks (#1509) * [SKIP CI] Prerelease * Support array type in dictionary queries (#1510) * [SKIP CI] Prerelease * add flag query-limit (#1514) * [SKIP CI] Prerelease * Fix error with tempDsRecords being undefined (#1516) * Fix error with tempDsRecords being undefined * Fix schema not being used for metadata, sync dynamic-ds across workers * Be smarter about reloading dynamic ds in workers * [SKIP CI] Prerelease * Update postgraphile enable table partitions (#1520) * [SKIP CI] Prerelease * `dictionary-optimisation` flag (#1519) * add flag, to orderby blockheight instead of pk * add comment * [SKIP CI] Prerelease * [WIP] Feature/adding postgres ssl connection option (#1513) * enable ssl option postgres * Check DB_SSL Env Value , default is false * adding ENV to pass in the Path to certificates * adding SSL option for query pacakge. * use args to pass the postgres ssl informations. * load file content moved to comman package. * Update packages/node-core/src/configure/NodeConfig.ts --------- Co-authored-by: Scott Twiname <skott.twiname@gmail.com> * [SKIP CI] Prerelease * Support Cockroach db (#1521) * support cockroach db * Update comment * [SKIP CI] Prerelease * ensure pgpool connection work with ssl (#1525) * [SKIP CI] Prerelease * Fix issue when use cockroach query service not support pgPartition (#1526) * [SKIP CI] Prerelease * [release] 20230221 (#1528) * fix issue store getByField limit could potentially excess config limit (#1529) * fix issue store getByField limit could potentially excess config limit * Update packages/node-core/src/indexer/store.service.ts Co-authored-by: Scott Twiname <skott.twiname@gmail.com> * typo --------- Co-authored-by: Scott Twiname <skott.twiname@gmail.com> * [SKIP CI] Prerelease * Abi codegen (#1532) * draft * fix abi name, add support for transaction * Update packages/cli/src/template/abi-interface.ts.ejs Co-authored-by: Scott Twiname <skott.twiname@gmail.com> * fix * fix dependencies --------- Co-authored-by: Scott Twiname <skott.twiname@gmail.com> * [SKIP CI] Prerelease * Move enum under schema (#1527) * need fix query get enum * fix enum query, clean all enums * add logic to handle original enum type * update sequelize version Co-authored-by: Scott Twiname <skott.twiname@gmail.com> * lock @subql/utils version --------- Co-authored-by: Scott Twiname <skott.twiname@gmail.com> Co-authored-by: seandotau <seandotau@gmail.com> Co-authored-by: Jay Ji <jiqiang90@hotmail.com> Co-authored-by: Ben <89335033+bz888@users.noreply.github.com> Co-authored-by: Darwin Subramaniam <darwinsubramaniam@googlemail.com>
- Loading branch information
1 parent
050e99f
commit 39f5752
Showing
12 changed files
with
972 additions
and
889 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
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,11 @@ | ||
version: '3.5' | ||
|
||
services: | ||
crdb: | ||
image: cockroachdb/cockroach:latest-v22.1 | ||
ports: | ||
- '26257:26257' | ||
- '8080:8080' | ||
command: start-single-node --insecure | ||
volumes: | ||
- '${PWD}/cockroach-data/crdb:/cockroach/cockroach-data' |
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 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 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 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 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 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 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 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.