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

Update to vega 0.74.3 #744

Merged
merged 3 commits into from
Feb 23, 2024
Merged
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
10 changes: 8 additions & 2 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@ on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main

permissions:
id-token: write
contents: read
checks: write

env:
WAILS_VERSION: v2.4.1
WAILS_VERSION: v2.8.0
NODE_VERSION: 18.12.0
GO_VERSION: 1.20.6
GO_VERSION: 1.21.7

jobs:
download-frontend:
Expand Down Expand Up @@ -141,6 +143,8 @@ jobs:
exclude:
- os: ubuntu-latest
arch: arm64
- os: windows-latest
arch: arm64
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -205,6 +209,8 @@ jobs:
exclude:
- os: ubuntu-latest
arch: arm64
- os: windows-latest
arch: arm64
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ on:

env:
VITE_SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
WAILS_VERSION: v2.4.1
WAILS_VERSION: v2.8.0
NODE_VERSION: 18.12.0
GO_VERSION: 1.20.6
GO_VERSION: 1.21.7

jobs:
release-macos:
Expand Down Expand Up @@ -141,7 +141,6 @@ jobs:
matrix:
arch:
- amd64
- arm64
network:
- mainnet
- fairground
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.13.0

Support for vega v0.74.3

## 0.12.6

Support for vega v0.73.1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The Vega Wallet desktop app provides a graphical user interface for Vega Protoco

#### Golang

You will need to go 1.20.
You will need to go 1.21.

#### Wails

Expand All @@ -28,7 +28,7 @@ Be sure to have the following environment variables set:
- `GO111MODULE=on`

```sh
go install github.com/wailsapp/wails/v2/cmd/wails@v2.4.1
go install github.com/wailsapp/wails/v2/cmd/wails@v2.8.0
```

To check if you have the correct dependencies installed, use the following command:
Expand Down
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var (

// Version specifies the version used to build the application.
// See VERSION in Makefile for details.
Version = "v0.12.6"
Version = "v0.13.0"

About = fmt.Sprintf(aboutAppTemplate, Version, VersionHash)
)
Expand Down
Binary file modified build/appicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vegawallet",
"author": "Gobalsky Labs Ltd.",
"version": "0.12.6",
"version": "0.13.0",
"private": true,
"engines": {
"node": "^18.12.0"
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/wailsjs/go/backend/Handler.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
import {connections} from '../models';
import {menu} from '../models';
import {app} from '../models';
import {backend} from '../models';
import {service} from '../models';
Expand All @@ -15,7 +16,7 @@ export function APIV2GenerateAPIToken(arg1:connections.GenerateAPITokenParams):P

export function APIV2ListAPITokens():Promise<connections.ListAPITokensResult>;

export function AppMenu():Promise<any>;
export function AppMenu():Promise<menu.Menu>;

export function ChooseFolder():Promise<string>;

Expand Down
64 changes: 35 additions & 29 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,71 +1,77 @@
module code.vegaprotocol.io/vegawallet-desktop

go 1.20
go 1.21

toolchain go1.21.7

require (
code.vegaprotocol.io/vega v0.73.1
github.com/gen2brain/beeep v0.0.0-20220909211152-5a9ec94374f6
github.com/wailsapp/wails/v2 v2.4.1
go.uber.org/zap v1.24.0
code.vegaprotocol.io/vega v0.74.3
github.com/gen2brain/beeep v0.0.0-20240112042604-c7bb2cd88fea
github.com/wailsapp/wails/v2 v2.8.0
go.uber.org/zap v1.27.0
)

require (
github.com/PaesslerAG/gval v1.0.0 // indirect
github.com/PaesslerAG/jsonpath v0.1.1 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/leaanthony/u v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/samber/lo v1.36.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/samber/lo v1.38.1 // indirect
github.com/tadvi/systray v0.0.0-20190226123456-11a2b8fa57af // indirect
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
github.com/wailsapp/go-webview2 v1.0.10 // indirect
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
)

require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/adrg/xdg v0.4.0
github.com/bep/debounce v1.2.1 // indirect
github.com/blang/semver/v4 v4.0.0
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
github.com/dgrijalva/jwt-go/v4 v4.0.0-preview1 // indirect
github.com/ethereum/go-ethereum v1.11.6 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/google/uuid v1.4.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.9.0 // indirect
github.com/holiman/uint256 v1.2.2-0.20230321075855-87b91420868c // indirect
github.com/jchv/go-winloader v0.0.0-20210711035445-715c2860da7e // indirect
github.com/julienschmidt/httprouter v1.3.0 // indirect
github.com/labstack/echo/v4 v4.9.0 // indirect
github.com/labstack/gommon v0.3.1 // indirect
github.com/leaanthony/go-ansi-parser v1.0.1 // indirect
github.com/labstack/echo/v4 v4.10.2 // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/leaanthony/go-ansi-parser v1.6.0 // indirect
github.com/leaanthony/gosod v1.0.3 // indirect
github.com/leaanthony/slicer v1.5.0 // indirect
github.com/leaanthony/slicer v1.6.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20220317090546-adb2f9614b17 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20220708102147-0a8a51822cae // indirect
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rs/cors v1.8.2 // indirect; iwndirect
github.com/rs/cors v1.8.3 // indirect; iwndirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/tkrajina/go-reflector v0.5.5 // indirect
github.com/tkrajina/go-reflector v0.5.6 // indirect
github.com/tyler-smith/go-bip39 v1.1.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/vegaprotocol/go-slip10 v0.1.0 // indirect
github.com/wailsapp/mimetype v1.4.1 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/grpc v1.56.3 // indirect
google.golang.org/protobuf v1.30.0 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect
google.golang.org/grpc v1.60.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)

replace github.com/shopspring/decimal => github.com/vegaprotocol/decimal v1.3.1-uint256
Loading
Loading