Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Release v0.42.0 #381

Open
wants to merge 8 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ jobs:
- name: Test
env:
CI: true
GRPC_NODE: ${{ secrets.GRPC_NODE }}
CORE_GRPC_NODE: ${{ secrets.CORE_GRPC_NODE }}
DATA_GRPC_NODE: ${{ secrets.DATA_GRPC_NODE }}
WALLETSERVER: ${{ secrets.WALLETSERVER }}
run: |
cd grpc/clients/js
Expand Down
15 changes: 11 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ jobs:

- name: Test with pytest
env:
GRPC_NODE: ${{ secrets.GRPC_NODE }}
CORE_GRPC_NODE: ${{ secrets.CORE_GRPC_NODE }}
DATA_GRPC_NODE: ${{ secrets.DATA_GRPC_NODE }}
FAUCETSERVER: ${{ secrets.FAUCETSERVER }}
WALLETSERVER: ${{ secrets.WALLETSERVER }}
run: |
Expand All @@ -64,7 +65,9 @@ jobs:

- name: Run example scripts for gRPC
env:
NODE_URL_GRPC: ${{ secrets.GRPC_NODE }}
CORE_GRPC_NODE: ${{ secrets.CORE_GRPC_NODE }}
DATA_GRPC_NODE: ${{ secrets.DATA_GRPC_NODE }}
NODE_URL_GRPC: ${{ secrets.CORE_GRPC_NODE }} # deprecated
WALLET_NAME: ${{ secrets.WALLET_NAME }}
WALLET_PASSPHRASE: ${{ secrets.WALLET_PASSPHRASE }}
WALLETSERVER_URL: ${{ secrets.WALLETSERVER }}
Expand All @@ -76,7 +79,9 @@ jobs:

# - name: Run example scripts for GraphQL
# env:
# NODE_URL_REST: ${{ secrets.NODE_URL_REST }}
# CORE_REST_NODE: ${{ secrets.CORE_REST_NODE }}
# DATA_REST_NODE: ${{ secrets.DATA_REST_NODE }}
# NODE_URL_REST: ${{ secrets.NODE_URL_REST }} # deprecated
# WALLET_NAME: ${{ secrets.WALLET_NAME }}
# WALLET_PASSPHRASE: ${{ secrets.WALLET_PASSPHRASE }}
# WALLETSERVER_URL: ${{ secrets.WALLETSERVER }}
Expand All @@ -88,7 +93,9 @@ jobs:

- name: Run example scripts for REST
env:
NODE_URL_REST: ${{ secrets.NODE_URL_REST }}
CORE_REST_NODE: ${{ secrets.CORE_REST_NODE }}
DATA_REST_NODE: ${{ secrets.DATA_REST_NODE }}
NODE_URL_REST: ${{ secrets.NODE_URL_REST }} # deprecated
WALLET_NAME: ${{ secrets.WALLET_NAME }}
WALLET_PASSPHRASE: ${{ secrets.WALLET_PASSPHRASE }}
WALLETSERVER_URL: ${{ secrets.WALLETSERVER }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Vega API

Version: 0.41.0
Version: 0.42.0-pre6

This repository contains everything you need for interacting with the Vega APIs.

Expand Down Expand Up @@ -79,7 +79,7 @@ VEGACORE=/path/to/go/src/vega make preproto
make proto

# Run tests
GRPC_NODE=veganode.example.com:1234 WALLETSERVER=https://vegawallet.example.com make test
CORE_GRPC_NODE=veganode.example.com:1234 DATA_GRPC_NODE=veganode.example.com:1235 WALLETSERVER=https://vegawallet.example.com make test
```

### Java gRPC generation
Expand Down
3,011 changes: 96 additions & 2,915 deletions grpc/clients/cpp/generated/api/trading.grpc.pb.cc

Large diffs are not rendered by default.

14,937 changes: 404 additions & 14,533 deletions grpc/clients/cpp/generated/api/trading.grpc.pb.h

Large diffs are not rendered by default.

37,857 changes: 2,031 additions & 35,826 deletions grpc/clients/cpp/generated/api/trading.pb.cc

Large diffs are not rendered by default.

34,721 changes: 2,021 additions & 32,700 deletions grpc/clients/cpp/generated/api/trading.pb.h

Large diffs are not rendered by default.

1,241 changes: 1,180 additions & 61 deletions grpc/clients/cpp/generated/chain_events.pb.cc

Large diffs are not rendered by default.

Loading