Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: check_network_version script does not clean used docker containers #2084

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
5ba0e8f
fix: check_network_version script does not clean used docker containers
lklimek Aug 26, 2024
15a63d6
feat(scripts): check_network_version nmap support
lklimek Aug 30, 2024
0294c90
build(drive-abci): debug docker image with grovedb visualizer and tok…
lklimek Sep 3, 2024
76cfbd9
chore: creation of protocol V2 (#2104)
QuantumExplorer Sep 4, 2024
7f350a6
fix(sdk): use proofs when waiting for asset lock (#2067)
lklimek Sep 4, 2024
6e2a4db
build: cache Rust dependencies build as a docker layer (#1900)
shumkov Sep 6, 2024
f6c111c
chore: add change base branch script (#2082)
shumkov Sep 6, 2024
7601b9d
Merge remote-tracking branch 'origin/master' into fix/check_network_v…
lklimek Sep 9, 2024
7ee7db8
chore: script using grpc
lklimek Sep 9, 2024
3efa6c9
feat: query many identity balances at a time (#2112)
QuantumExplorer Sep 11, 2024
4425a94
feat: query block count per Evonode proposed in any given epoch (#2114)
QuantumExplorer Sep 12, 2024
a3cf845
chore(release): update changelog and bump version to 1.3.0-dev.1 (#2117)
shumkov Sep 12, 2024
8808f0c
fix: body-parser vulnerability (#2119)
shumkov Sep 15, 2024
d338e40
chore(dashmate): update platform images to `1-dev` (#2120)
shumkov Sep 15, 2024
1d431ce
fix(platform)!: contested username distribution (#2118)
QuantumExplorer Sep 15, 2024
59d2e45
feat(platform)!: contests on testnet should take less time (#2115)
QuantumExplorer Sep 15, 2024
e703f7e
style(dapi): better api for identities balances (#2122)
QuantumExplorer Sep 16, 2024
bf5aaf6
chore(release): update changelog and bump version to 1.3.0-dev.2 (#2123)
lklimek Sep 16, 2024
a434090
fix(drive-abci): require 75 percent of active, not total hpmns (#2127)
QuantumExplorer Sep 16, 2024
188e9b3
chore(release): update changelog and bump version to 1.3.0-dev.3 (#2128)
shumkov Sep 16, 2024
bdf9e54
fix: require75p of active not total hpmns (#2129)
QuantumExplorer Sep 16, 2024
a6082f8
chore(release): update changelog and bump version to 1.3.0-dev.4 (#2130)
shumkov Sep 16, 2024
3ce39f0
fix(drive-abci): cleanup of later contests on testnet only (#2134)
QuantumExplorer Sep 16, 2024
9a2aad4
chore(release): update changelog and bump version to 1.3.0-dev.5 (#2135)
shumkov Sep 16, 2024
05a3029
feat(platform): support Tenderdash upgrade (#2136)
QuantumExplorer Sep 17, 2024
b9ad5c7
fix(platform): contested username time fix (#2137)
QuantumExplorer Sep 17, 2024
aca6712
chore(dashmate)!: docker logs rotation (#2125)
shumkov Sep 17, 2024
ecd5b4d
docs: add warning about js-sdk security (#2133)
thephez Sep 17, 2024
50d42c2
docs: checked deployed to Mainnet box on front page
QuantumExplorer Sep 17, 2024
2954e29
feat(dapi): implement getIdentityBalance (#2105)
pshenmic Sep 17, 2024
79da90a
feat(dashmate)!: enhance core logging configuration (#2121)
shumkov Sep 17, 2024
f2ded52
feat(dashmate): doctor diagnostic (#2085)
shumkov Sep 17, 2024
48a0332
chore: emergency version upgrade to v1.3 Protocol Version 2. (#2138)
QuantumExplorer Sep 18, 2024
0e8310b
build(dashmate): update tenderdash image to fix-wrong-proposer-at-rou…
lklimek Sep 18, 2024
44c4731
chore: change upgrade on testnet 1 epoch later (#2141)
QuantumExplorer Sep 18, 2024
f68995b
Merge remote-tracking branch 'origin/v1.3-dev' into fix/check_network…
lklimek Sep 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions scripts/check_network_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ function load_masternodes_json() {

function grpc_core {
docker run \
--rm \
-v "${REPO}:/repo" \
fullstorydev/grpcurl:latest \
-import-path "/repo/packages/dapi-grpc/protos/core/v0" \
Expand All @@ -49,6 +50,7 @@ function grpc_core {

function grpc_platform {
docker run \
--rm \
-v "${REPO}:/repo" \
fullstorydev/grpcurl:latest \
-import-path "/repo/packages/dapi-grpc/protos/platform/v0" \
Expand Down
Loading