Skip to content

Commit

Permalink
Merge pull request #333 from kjaskiewiczz/deps-update
Browse files Browse the repository at this point in the history
chore: upgrade websocket to version 1.15.1
  • Loading branch information
kjaskiewiczz committed Nov 29, 2023
2 parents 1b09e48 + 777734a commit bfa4054
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/gin-gonic/gin v1.9.1
github.com/go-ozzo/ozzo-validation/v4 v4.3.0
github.com/google/uuid v1.4.0
github.com/gorilla/websocket v1.5.0
github.com/gorilla/websocket v1.5.1
github.com/mendersoftware/go-lib-micro v0.0.0-20231031082957-e2bce6ff3edd
github.com/nats-io/nats-server/v2 v2.10.4
github.com/nats-io/nats.go v1.31.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g=
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/gorilla/websocket v1.5.1 h1:gmztn0JnHVt9JZquRuzLw3g4wouNVzKL15iLr/zn/QY=
github.com/gorilla/websocket v1.5.1/go.mod h1:x3kM2JMyaluk02fnUJpQuwD2dCS5NDG2ZHL0uE0tcaY=
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
Expand Down
2 changes: 1 addition & 1 deletion licenses.csv
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ github.com/go-playground/universal-translator,MIT
github.com/go-playground/validator/v10,MIT
github.com/golang/snappy,BSD-3-Clause
github.com/google/uuid,BSD-3-Clause
github.com/gorilla/websocket,BSD-2-Clause
github.com/gorilla/websocket,BSD-3-Clause
github.com/hashicorp/hcl,MPL-2.0
github.com/klauspost/compress,Apache-2.0
github.com/klauspost/compress/internal/snapref,BSD-3-Clause
Expand Down
8 changes: 4 additions & 4 deletions tests/tests/test_connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_connect(self, clean_mongo, tenant_id=None):
"00000000-0000-0000-0000-000000000000",
connection="Upgrade",
upgrade="websocket",
sec_websocket_key="mumbojumbo==",
sec_websocket_key="dGhlIHNhbXBsZSBub25jZQ==",
sec_websocket_version=13,
)
except management_api.ApiException as e:
Expand All @@ -53,7 +53,7 @@ def test_connect(self, clean_mongo, tenant_id=None):
dev.id,
connection="Upgrade",
upgrade="websocket",
sec_websocket_key="mumbojumbo==",
sec_websocket_key="dGhlIHNhbXBsZSBub25jZQ==",
sec_websocket_version=13,
)
except management_api.ApiException as e:
Expand Down Expand Up @@ -84,7 +84,7 @@ def test_connect(self, clean_mongo, tenant_id=None):
dev.id,
connection="Upgrade",
upgrade="websocket",
sec_websocket_key="mumbojumbo==",
sec_websocket_key="dGhlIHNhbXBsZSBub25jZQ==",
sec_websocket_version=13,
)
except management_api.ApiException as e:
Expand Down Expand Up @@ -158,7 +158,7 @@ def test_connect(self, clean_mongo, tenant_id=None):
dev.id,
connection="Upgrade",
upgrade="websocket",
sec_websocket_key="mumbojumbo==",
sec_websocket_key="dGhlIHNhbXBsZSBub25jZQ==",
sec_websocket_version=13,
)
except management_api.ApiException as e:
Expand Down

0 comments on commit bfa4054

Please sign in to comment.