Skip to content

Commit

Permalink
Merge pull request #377 from privacybydesign/update-go-toolchain
Browse files Browse the repository at this point in the history
Chore: update go toolchain to 1.22.1 and fix sqlserver issues when running tests
  • Loading branch information
ivard authored Mar 19, 2024
2 parents 8501f2c + 15ac721 commit 4d3c707
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Security
- Update go toolchain to 1.22.1

### Internal
- Fix sqlserver tests in GitHub Actions workflow

## [0.15.1] - 2023-12-18
### Fixed
- `RemoveScheme` function in `irmaclient` already stripping storage before checking whether the scheme is in assets
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ services:
image: kcollins/mssql:2019-latest
environment:
ACCEPT_EULA: Y # Confirms your acceptance of the End-User Licensing Agreement.
SA_PASSWORD: test-Password # Include dash and uppercase letter to meet password requirements.
MSSQL_RANDOM_SA_PASSWORD: Y
MSSQL_DATABASE: test
MSSQL_USER: testuser
MSSQL_PASSWORD: test-Password
MSSQL_PASSWORD: testpassword
MSSQL_PID: Developer
ports:
- 1433:1433
Expand Down
2 changes: 1 addition & 1 deletion 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.5
toolchain go1.22.1

require (
github.com/alexandrevicenzi/go-sse v1.6.0
Expand Down
2 changes: 1 addition & 1 deletion internal/sessiontest/revocation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var (
revocationDbStrs = map[string]string{
"postgres": "host=127.0.0.1 port=5432 user=testuser dbname=test password='testpassword' sslmode=disable",
"mysql": "testuser:testpassword@tcp(127.0.0.1)/test",
"sqlserver": "sqlserver://testuser:test-Password@127.0.0.1:1433?database=test",
"sqlserver": "sqlserver://testuser:testpassword@127.0.0.1:1433?database=test",
}

revocationPkCounter uint = 2
Expand Down

0 comments on commit 4d3c707

Please sign in to comment.