Skip to content

Commit e0b24b4

Browse files
committed
update gorilla websocket to 1.5.2
update go version to 1.22.3
1 parent 093246b commit e0b24b4

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# To manually invoke the locally installed Go, use ./go
1111

1212
# Go installation config.
13-
GO_VER=1.11.5
13+
GO_VER=1.22.3
1414
SYSTEM_NAME:=$(shell uname -s | tr '[:upper:]' '[:lower:]')
1515
SYSTEM_ARCH:=$(shell uname -m)
1616
GO_ARCH:=$(if $(filter x86_64, $(SYSTEM_ARCH)),amd64,386)

go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
module github.com/joewalnes/websocketd
22

3-
go 1.15
3+
go 1.22.3
44

5-
require github.com/gorilla/websocket v1.4.1
5+
require github.com/gorilla/websocket v1.5.2
6+
7+
require golang.org/x/net v0.23.0 // indirect

go.sum

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@ github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH
22
github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
33
github.com/gorilla/websocket v1.4.1 h1:q7AeDBpnBk8AogcD4DSag/Ukw/KV+YhzLj2bP5HvKCM=
44
github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
5+
github.com/gorilla/websocket v1.5.2 h1:qoW6V1GT3aZxybsbC6oLnailWnB+qTMVwMreOso9XUw=
6+
github.com/gorilla/websocket v1.5.2/go.mod h1:0n9H61RBAcf5/38py2MCYbxzPIY9rOkpvvMT24Rqs30=
7+
golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs=
8+
golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=

release/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LAST_PATCH_VERSION:=$(shell git ls-remote [email protected]:joewalnes/websocketd.gi
2121
VERSION_PATCH:=$(or $(LAST_PATCH_VERSION),0)
2222
RELEASE_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)
2323

24-
GO_VERSION=1.15.7
24+
GO_VERSION=1.22.3
2525
PLATFORMS=linux_amd64 linux_386 linux_arm linux_arm64 darwin_amd64 freebsd_amd64 freebsd_386 windows_386 windows_amd64 openbsd_386 openbsd_amd64 solaris_amd64
2626

2727

0 commit comments

Comments
 (0)