Skip to content

Commit 564fc31

Browse files
authored
Merge pull request #694 from openziti/update-deps
Update deps and go version
2 parents fb99ace + 61a6402 commit 564fc31

File tree

10 files changed

+239
-215
lines changed

10 files changed

+239
-215
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
# Release notes 0.25.0
2+
3+
## Go Version Update
4+
5+
The oldest supported Go version, as per the [Go Release Policy](https://go.dev/doc/devel/release#policy)
6+
is now 1.23. The OpenZiti Go SDK now requires Go v1.23.0 as its minimum version.
7+
8+
## Issues Fixed and Dependency Updates
9+
10+
* github.com/openziti/sdk-golang: [v0.24.1 -> v0.25.0](https://github.com/openziti/sdk-golang/compare/v0.24.1...v0.25.0)
11+
* github.com/go-resty/resty/v2: v2.16.4 -> v2.16.5
12+
* github.com/openziti/channel/v3: [v3.0.27 -> v3.0.39](https://github.com/openziti/channel/compare/v3.0.27...v3.0.39)
13+
* [Issue #168](https://github.com/openziti/channel/issues/168) - Add DisconnectHandler to reconnecting channel
14+
15+
* github.com/openziti/edge-api: [v0.26.38 -> v0.26.42](https://github.com/openziti/edge-api/compare/v0.26.38...v0.26.42)
16+
* github.com/openziti/foundation/v2: [v2.0.56 -> v2.0.59](https://github.com/openziti/foundation/compare/v2.0.56...v2.0.59)
17+
* github.com/openziti/identity: [v1.0.94 -> v1.0.100](https://github.com/openziti/identity/compare/v1.0.94...v1.0.100)
18+
* github.com/openziti/metrics: [v1.2.65 -> v1.3.0](https://github.com/openziti/metrics/compare/v1.2.65...v1.3.0)
19+
* [Issue #49](https://github.com/openziti/metrics/issues/49) - Make usage registry event queue size configurable
20+
* [Issue #50](https://github.com/openziti/metrics/issues/50) - Do metrics message construction in msg sender goroutine rather than usage/interval event goroutine
21+
22+
* github.com/openziti/secretstream: [v0.1.28 -> v0.1.32](https://github.com/openziti/secretstream/compare/v0.1.28...v0.1.32)
23+
* github.com/openziti/transport/v2: [v2.0.160 -> v2.0.167](https://github.com/openziti/transport/compare/v2.0.160...v2.0.167)
24+
* golang.org/x/oauth2: v0.25.0 -> v0.28.0
25+
* golang.org/x/sys: v0.29.0 -> v0.31.0
26+
* google.golang.org/protobuf: v1.36.3 -> v1.36.5
27+
* github.com/fsnotify/fsnotify: v1.7.0 -> v1.8.0
28+
* github.com/mattn/go-colorable: v0.1.13 -> v0.1.14
29+
* golang.org/x/crypto: v0.32.0 -> v0.36.0
30+
* golang.org/x/net: v0.34.0 -> v0.37.0
31+
* golang.org/x/sync: v0.10.0 -> v0.12.0
32+
* golang.org/x/term: v0.28.0 -> v0.30.0
33+
* golang.org/x/text: v0.21.0 -> v0.23.0
34+
135
# Release notes 0.24.1
236

337
## Issues Fixed and Dependency Updates

example/go.mod

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/openziti/sdk-golang/example
22

3-
go 1.21
3+
go 1.23.0
44

5-
toolchain go1.22.1
5+
toolchain go1.23.1
66

77
replace github.com/openziti/sdk-golang => ../
88

@@ -11,16 +11,16 @@ require (
1111
github.com/google/uuid v1.6.0
1212
github.com/gorilla/mux v1.8.1
1313
github.com/michaelquigley/pfxlog v0.6.10
14-
github.com/openziti/foundation/v2 v2.0.56
14+
github.com/openziti/foundation/v2 v2.0.59
1515
github.com/openziti/runzmd v1.0.33
1616
github.com/openziti/sdk-golang v0.0.0
17-
github.com/openziti/transport/v2 v2.0.160
17+
github.com/openziti/transport/v2 v2.0.167
1818
github.com/pkg/errors v0.9.1
1919
github.com/sirupsen/logrus v1.9.3
20-
github.com/spf13/cobra v1.8.1
20+
github.com/spf13/cobra v1.9.1
2121
github.com/spf13/viper v1.17.0
2222
github.com/zitadel/oidc v1.13.5
23-
golang.org/x/text v0.21.0
23+
golang.org/x/text v0.23.0
2424
google.golang.org/grpc v1.59.0
2525
google.golang.org/grpc/examples v0.0.0-20231107231549-482de2224942
2626
gopkg.in/resty.v1 v1.12.0
@@ -38,7 +38,7 @@ require (
3838
github.com/dlclark/regexp2 v1.10.0 // indirect
3939
github.com/eliukblau/pixterm/pkg/ansimage v0.0.0-20191210081756-9fb6cf8c2f75 // indirect
4040
github.com/fatih/color v1.16.0 // indirect
41-
github.com/fsnotify/fsnotify v1.7.0 // indirect
41+
github.com/fsnotify/fsnotify v1.8.0 // indirect
4242
github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa // indirect
4343
github.com/go-logr/logr v1.4.2 // indirect
4444
github.com/go-logr/stdr v1.2.2 // indirect
@@ -69,7 +69,7 @@ require (
6969
github.com/lufia/plan9stats v0.0.0-20231016141302-07b5767bb0ed // indirect
7070
github.com/magiconair/properties v1.8.7 // indirect
7171
github.com/mailru/easyjson v0.7.7 // indirect
72-
github.com/mattn/go-colorable v0.1.13 // indirect
72+
github.com/mattn/go-colorable v0.1.14 // indirect
7373
github.com/mattn/go-isatty v0.0.20 // indirect
7474
github.com/mattn/go-runewidth v0.0.15 // indirect
7575
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
@@ -79,11 +79,11 @@ require (
7979
github.com/muhlemmer/gu v0.3.1 // indirect
8080
github.com/oklog/ulid v1.3.1 // indirect
8181
github.com/opentracing/opentracing-go v1.2.0 // indirect
82-
github.com/openziti/channel/v3 v3.0.27 // indirect
83-
github.com/openziti/edge-api v0.26.38 // indirect
84-
github.com/openziti/identity v1.0.94 // indirect
85-
github.com/openziti/metrics v1.2.65 // indirect
86-
github.com/openziti/secretstream v0.1.28 // indirect
82+
github.com/openziti/channel/v3 v3.0.39 // indirect
83+
github.com/openziti/edge-api v0.26.42 // indirect
84+
github.com/openziti/identity v1.0.100 // indirect
85+
github.com/openziti/metrics v1.3.0 // indirect
86+
github.com/openziti/secretstream v0.1.32 // indirect
8787
github.com/orcaman/concurrent-map/v2 v2.0.1 // indirect
8888
github.com/parallaxsecond/parsec-client-go v0.0.0-20221025095442-f0a77d263cf9 // indirect
8989
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
@@ -99,7 +99,7 @@ require (
9999
github.com/speps/go-hashids v2.0.0+incompatible // indirect
100100
github.com/spf13/afero v1.10.0 // indirect
101101
github.com/spf13/cast v1.5.1 // indirect
102-
github.com/spf13/pflag v1.0.5 // indirect
102+
github.com/spf13/pflag v1.0.6 // indirect
103103
github.com/subosito/gotenv v1.6.0 // indirect
104104
github.com/tklauser/go-sysconf v0.3.12 // indirect
105105
github.com/tklauser/numcpus v0.6.1 // indirect
@@ -114,16 +114,16 @@ require (
114114
go.opentelemetry.io/otel/metric v1.29.0 // indirect
115115
go.opentelemetry.io/otel/trace v1.29.0 // indirect
116116
go.uber.org/multierr v1.11.0 // indirect
117-
golang.org/x/crypto v0.32.0 // indirect
117+
golang.org/x/crypto v0.36.0 // indirect
118118
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
119119
golang.org/x/image v0.18.0 // indirect
120-
golang.org/x/net v0.34.0 // indirect
121-
golang.org/x/oauth2 v0.25.0 // indirect
122-
golang.org/x/sync v0.10.0 // indirect
123-
golang.org/x/sys v0.29.0 // indirect
124-
golang.org/x/term v0.28.0 // indirect
120+
golang.org/x/net v0.37.0 // indirect
121+
golang.org/x/oauth2 v0.28.0 // indirect
122+
golang.org/x/sync v0.12.0 // indirect
123+
golang.org/x/sys v0.31.0 // indirect
124+
golang.org/x/term v0.30.0 // indirect
125125
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
126-
google.golang.org/protobuf v1.36.3 // indirect
126+
google.golang.org/protobuf v1.36.5 // indirect
127127
gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect
128128
gopkg.in/ini.v1 v1.67.0 // indirect
129129
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)