Skip to content

Commit f51c9fc

Browse files
Revert golang.org/x/net to the safest version (#172)
refactor: revert golang.org/x/net to the safest version.
1 parent faf329e commit f51c9fc

File tree

5 files changed

+20
-9
lines changed

5 files changed

+20
-9
lines changed

.pubnub.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
---
2-
version: v7.3.3
2+
version: v7.3.4
33
changelog:
4+
- date: 2025-05-08
5+
version: v7.3.4
6+
changes:
7+
- type: improvement
8+
text: "Revert golang.org/x/net to the safest version."
49
- date: 2025-05-07
510
version: v7.3.3
611
changes:
@@ -764,7 +769,7 @@ sdks:
764769
distribution-type: package
765770
distribution-repository: GitHub
766771
package-name: Go
767-
location: https://github.com/pubnub/go/releases/tag/v7.3.3
772+
location: https://github.com/pubnub/go/releases/tag/v7.3.4
768773
requires:
769774
-
770775
name: "Go"

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v7.3.4
2+
May 08 2025
3+
4+
#### Modified
5+
- Revert golang.org/x/net to the safest version.
6+
17
## v7.3.3
28
May 07 2025
39

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/google/uuid v1.6.0
99
github.com/joho/godotenv v1.5.1
1010
github.com/stretchr/testify v1.10.0
11-
golang.org/x/net v0.40.0
11+
golang.org/x/net v0.35.0
1212
)
1313

1414
require (
@@ -21,6 +21,6 @@ require (
2121
github.com/hashicorp/golang-lru v0.5.4 // indirect
2222
github.com/pmezard/go-difflib v1.0.0 // indirect
2323
github.com/spf13/pflag v1.0.5 // indirect
24-
golang.org/x/text v0.25.0 // indirect
24+
golang.org/x/text v0.22.0 // indirect
2525
gopkg.in/yaml.v3 v3.0.1 // indirect
2626
)

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o
5050
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
5151
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
5252
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
53-
golang.org/x/net v0.40.0 h1:79Xs7wF06Gbdcg4kdCCIQArK11Z1hr5POQ6+fIYHNuY=
54-
golang.org/x/net v0.40.0/go.mod h1:y0hY0exeL2Pku80/zKK7tpntoX23cqL3Oa6njdgRtds=
55-
golang.org/x/text v0.25.0 h1:qVyWApTSYLk/drJRO5mDlNYskwQznZmkpV2c8q9zls4=
56-
golang.org/x/text v0.25.0/go.mod h1:WEdwpYrmk1qmdHvhkSTNPm3app7v4rsT8F2UD6+VHIA=
53+
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=
54+
golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=
55+
golang.org/x/text v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM=
56+
golang.org/x/text v0.22.0/go.mod h1:YRoo4H8PVmsu+E3Ou7cqLVH8oXWIHVoX0jqUWALQhfY=
5757
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
5858
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
5959
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=

pubnub.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
// Default constants
1616
const (
1717
// Version :the version of the SDK
18-
Version = "7.3.3"
18+
Version = "7.3.4"
1919
// MaxSequence for publish messages
2020
MaxSequence = 65535
2121
)

0 commit comments

Comments
 (0)