Skip to content

Commit

Permalink
Upgrade dependecies and versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed May 8, 2024
1 parent 03358c1 commit 8dc6500
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
## this will contain a matrix of all of the combinations
## we wish to test again:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x]
go-version: [1.18.x, 1.21.x]
platform: [ubuntu-latest]

runs-on: ${{ matrix.platform }}
Expand Down
10 changes: 1 addition & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
module github.com/vividvilla/simplesessions

require (
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect
github.com/alicebob/miniredis v2.5.0+incompatible
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-redis/redis/v8 v8.5.0
github.com/gomodule/redigo v1.8.3 // indirect
github.com/stretchr/testify v1.6.1
github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da // indirect
)
require github.com/stretchr/testify v1.9.0

go 1.14
20 changes: 20 additions & 0 deletions stores/goredis/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module github.com/vividvilla/simplesessions/stores/goredis/v9

go 1.18

require (
github.com/alicebob/miniredis/v2 v2.32.1
github.com/redis/go-redis/v9 v9.5.1
github.com/stretchr/testify v1.9.0
github.com/vividvilla/simplesessions v0.2.0
)

require (
github.com/alicebob/gopher-json v0.0.0-20230218143504-906a9b012302 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/yuin/gopher-lua v1.1.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
2 changes: 1 addition & 1 deletion stores/goredis/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync"
"time"

"github.com/go-redis/redis/v8"
"github.com/redis/go-redis/v9"
"github.com/vividvilla/simplesessions"
"github.com/vividvilla/simplesessions/conv"
)
Expand Down
4 changes: 2 additions & 2 deletions stores/goredis/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"testing"
"time"

"github.com/alicebob/miniredis"
"github.com/go-redis/redis/v8"
"github.com/alicebob/miniredis/v2"
"github.com/redis/go-redis/v9"
"github.com/stretchr/testify/assert"
"github.com/vividvilla/simplesessions"
)
Expand Down
12 changes: 10 additions & 2 deletions stores/memory/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
module github.com/vividvilla/simplesessions/stores/memory

go 1.18

require (
github.com/stretchr/testify v1.9.0
github.com/vividvilla/simplesessions v0.2.0
)

require (
github.com/stretchr/testify v1.2.2
github.com/vividvilla/simplesessions v0.0.1
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
20 changes: 14 additions & 6 deletions stores/redis/go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
module github.com/vividvilla/simplesessions/stores/redis

go 1.18

require (
github.com/alicebob/miniredis/v2 v2.32.1
github.com/gomodule/redigo v1.9.2
github.com/stretchr/testify v1.9.0
github.com/vividvilla/simplesessions v0.2.0
)

require (
github.com/alicebob/gopher-json v0.0.0-20180125190556-5a6b3ba71ee6 // indirect
github.com/alicebob/miniredis v0.0.0-20180903194238-a6a1e4126522
github.com/gomodule/redigo v2.0.0+incompatible
github.com/stretchr/testify v1.2.2
github.com/vividvilla/simplesessions v0.0.1
github.com/yuin/gopher-lua v0.0.0-20180827083657-b942cacc89fe // indirect
github.com/alicebob/gopher-json v0.0.0-20230218143504-906a9b012302 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/yuin/gopher-lua v1.1.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
2 changes: 1 addition & 1 deletion stores/redis/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/vividvilla/simplesessions"

"github.com/alicebob/miniredis"
"github.com/alicebob/miniredis/v2"
"github.com/gomodule/redigo/redis"
"github.com/stretchr/testify/assert"
)
Expand Down
6 changes: 3 additions & 3 deletions stores/securecookie/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/vividvilla/simplesessions/stores/securecookie
go 1.14

require (
github.com/gorilla/securecookie v1.1.1
github.com/stretchr/testify v1.2.2
github.com/vividvilla/simplesessions v0.0.1
github.com/gorilla/securecookie v1.1.2
github.com/stretchr/testify v1.9.0
github.com/vividvilla/simplesessions v0.2.0
)

0 comments on commit 8dc6500

Please sign in to comment.