Skip to content

Commit

Permalink
Merge branch 'master' into redis-failover
Browse files Browse the repository at this point in the history
  • Loading branch information
bobhageman authored Oct 25, 2023
2 parents 2d7f091 + 02e8186 commit 2f023a4
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 34 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Using optimistic locking in the `irma server` instead of pessimistic locking

## [0.14.1] - 2023-10-18
### Fixed
- Improve stability of database drivers by bumping their versions

### Security
- Use Go toolchain version 1.21.3 for building `irma` CLI tool

### Internal
- Fixed failing tests due to expired test.test2 idemix key

Expand Down Expand Up @@ -467,6 +474,7 @@ This release contains several large new features. In particular, the shoulder su
- Combined issuance-disclosure requests with two schemes one of which has a keyshare server now work as expected
- Various other bugfixes

[0.14.1]: https://github.com/privacybydesign/irmago/compare/v0.14.0...v0.14.1
[0.14.0]: https://github.com/privacybydesign/irmago/compare/v0.13.3...v0.14.0
[0.13.3]: https://github.com/privacybydesign/irmago/compare/v0.13.2...v0.13.3
[0.13.2]: https://github.com/privacybydesign/irmago/compare/v0.13.1...v0.13.2
Expand Down
24 changes: 12 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/privacybydesign/irmago

go 1.21

toolchain go1.21.1
toolchain go1.21.3

require (
github.com/alexandrevicenzi/go-sse v1.6.0
Expand All @@ -27,13 +27,13 @@ require (
github.com/spf13/cobra v1.5.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.12.0
github.com/stretchr/testify v1.8.2
github.com/stretchr/testify v1.8.4
github.com/x-cray/logrus-prefixed-formatter v0.5.2
go.etcd.io/bbolt v1.3.6
gorm.io/driver/mysql v1.5.1
gorm.io/driver/postgres v1.5.2
gorm.io/driver/sqlserver v1.5.1
gorm.io/gorm v1.25.1
gorm.io/driver/mysql v1.5.2
gorm.io/driver/postgres v1.5.3
gorm.io/driver/sqlserver v1.5.2
gorm.io/gorm v1.25.5
)

require (
Expand All @@ -58,14 +58,14 @@ require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.3.1 // indirect
github.com/jackc/pgx/v5 v5.4.3 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/microsoft/go-mssqldb v1.1.0 // indirect
github.com/microsoft/go-mssqldb v1.6.0 // indirect
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect
github.com/minio/sha256-simd v0.1.1 // indirect
github.com/mr-tron/base58 v1.1.3 // indirect
Expand All @@ -85,10 +85,10 @@ require (
github.com/x448/float16 v0.8.4 // indirect
github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da // indirect
go.uber.org/atomic v1.9.0 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/term v0.8.0 // indirect
golang.org/x/text v0.10.0 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
gopkg.in/ini.v1 v1.66.6 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading

0 comments on commit 2f023a4

Please sign in to comment.