Skip to content

Commit ed0d774

Browse files
authored
0.9.2 (#348)
2 parents a3937de + 262bc92 commit ed0d774

File tree

9 files changed

+71
-44
lines changed

9 files changed

+71
-44
lines changed

.goreleaser-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ nfpms:
116116
bindir: /usr/bin
117117
overrides:
118118
rpm:
119+
dependencies:
120+
- MariaDB-client
119121
file_name_template: >-
120122
{{ .PackageName }}-{{ .Version }}.
121123
{{- if eq .Arch "386" }}i386{{- else if eq .Arch "amd64" }}x86_64{{- else }}{{ .Arch }}{{ end }}

.goreleaser.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ nfpms:
116116
bindir: /usr/bin
117117
overrides:
118118
rpm:
119+
dependencies:
120+
- MariaDB-client
119121
file_name_template: >-
120122
{{ .PackageName }}-{{ .Version }}.
121123
{{- if eq .Arch "386" }}i386{{- else if eq .Arch "amd64" }}x86_64{{- else }}{{ .Arch }}{{ end }}

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,23 @@
1212
<!-- ### Dependencies -->
1313
<!-- -->
1414

15+
## mytoken 0.9.2
16+
17+
### Packaging
18+
19+
- Fixed `mariadb-client` dependecy for `mytoken-server-migratedb` on rpm based distros
20+
21+
### Dependencies
22+
- Bump github.com/go-sql-driver/mysql from 1.7.1 to 1.8.0
23+
- Bump github.com/gofiber/fiber/v2 from to 2.52.0 2.52.2
24+
- Bump github.com/gofiber/template/mustache/v2 from 2.0.8 to 2.0.9
25+
- Bump github.com/lestrrat-go/jwx from 1.2.28 to 1.2.29
26+
- Bump github.com/redis/go-redis/v9 from 9.4.0 to 9.5.1
27+
- Bump golang.org/x/crypto from 0.19.0 to 0.21.0
28+
- Bump golang.org/x/mod from 0.15.0 to 0.16.0
29+
- Bump golang.org/x/oauth2 from 0.17.0 to 0.18.0
30+
- Bump golang.org/x/term from 0.17.0 to 0.18.0
31+
1532
## mytoken 0.9.1
1633

1734
### Enhancements

go.mod

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,36 @@ require (
99
github.com/fatih/structs v1.1.0
1010
github.com/gliderlabs/ssh v0.3.6
1111
github.com/go-resty/resty/v2 v2.11.0
12-
github.com/go-sql-driver/mysql v1.7.1
13-
github.com/gofiber/fiber/v2 v2.52.0
12+
github.com/go-sql-driver/mysql v1.8.0
13+
github.com/gofiber/fiber/v2 v2.52.2
1414
github.com/gofiber/helmet/v2 v2.2.26
15-
github.com/gofiber/template/mustache/v2 v2.0.8
15+
github.com/gofiber/template/mustache/v2 v2.0.9
1616
github.com/gofrs/uuid v4.4.0+incompatible
1717
github.com/golang-jwt/jwt v3.2.2+incompatible
1818
github.com/ip2location/ip2location-go v8.3.0+incompatible
1919
github.com/jinzhu/copier v0.4.0
2020
github.com/jmoiron/sqlx v1.3.5
21-
github.com/lestrrat-go/jwx v1.2.28
21+
github.com/lestrrat-go/jwx v1.2.29
2222
github.com/oidc-mytoken/api v0.11.2-0.20230810083726-bf164306e5b2
2323
github.com/oidc-mytoken/lib v0.7.1
2424
github.com/oidc-mytoken/utils v0.1.3-0.20230731143919-ea5b78243e5d
2525
github.com/patrickmn/go-cache v2.1.0+incompatible
2626
github.com/pires/go-proxyproto v0.7.0
2727
github.com/pkg/errors v0.9.1
28-
github.com/redis/go-redis/v9 v9.4.0
28+
github.com/redis/go-redis/v9 v9.5.1
2929
github.com/sirupsen/logrus v1.9.3
3030
github.com/urfave/cli/v2 v2.3.1-0.20211205195634-e8d81738896c
3131
github.com/valyala/fasthttp v1.52.0
3232
github.com/zachmann/go-oidcfed v0.1.0
33-
golang.org/x/crypto v0.19.0
34-
golang.org/x/mod v0.15.0
35-
golang.org/x/oauth2 v0.17.0
36-
golang.org/x/term v0.17.0
33+
golang.org/x/crypto v0.21.0
34+
golang.org/x/mod v0.16.0
35+
golang.org/x/oauth2 v0.18.0
36+
golang.org/x/term v0.18.0
3737
gopkg.in/yaml.v3 v3.0.1
3838
)
3939

4040
require (
41+
filippo.io/edwards25519 v1.1.0 // indirect
4142
github.com/adam-hanna/arrayOperations v1.0.1 // indirect
4243
github.com/andybalholm/brotli v1.1.0 // indirect
4344
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
@@ -46,9 +47,9 @@ require (
4647
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
4748
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
4849
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
49-
github.com/go-jose/go-jose/v3 v3.0.1 // indirect
50+
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
5051
github.com/goccy/go-json v0.10.2 // indirect
51-
github.com/gofiber/template v1.8.2 // indirect
52+
github.com/gofiber/template v1.8.3 // indirect
5253
github.com/gofiber/utils v1.1.0 // indirect
5354
github.com/golang/protobuf v1.5.3 // indirect
5455
github.com/google/uuid v1.5.0 // indirect
@@ -67,10 +68,10 @@ require (
6768
github.com/tinylib/msgp v1.1.8 // indirect
6869
github.com/valyala/bytebufferpool v1.0.0 // indirect
6970
github.com/valyala/tcplisten v1.0.0 // indirect
70-
golang.org/x/net v0.21.0 // indirect
71-
golang.org/x/sys v0.17.0 // indirect
71+
golang.org/x/net v0.22.0 // indirect
72+
golang.org/x/sys v0.18.0 // indirect
7273
google.golang.org/appengine v1.6.8 // indirect
73-
google.golang.org/protobuf v1.31.0 // indirect
74+
google.golang.org/protobuf v1.33.0 // indirect
7475
)
7576

7677
replace github.com/urfave/cli/v2 => github.com/zachmann/cli/v2 v2.3.1-0.20211220102037-d619fd40a704

go.sum

Lines changed: 34 additions & 29 deletions
Large diffs are not rendered by default.

internal/model/version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.1
1+
0.9.2
10 Bytes
Loading
12 Bytes
Loading

mytoken.png

12 Bytes
Loading

0 commit comments

Comments
 (0)