This is an automated email from the git hooks/post-receive script.
cohosh pushed a change to branch main in repository pluggable-transports/snowflake.
from 986fc82 proxy: Correctly handle argument parsing error new 31b9583 Bump minimum go version to 1.15 new 8b1970a Update CI tests to include latest and min go versions
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
Summary of changes: .gitlab-ci.yml | 14 +++++++------- client/README.md | 2 +- go.mod | 4 ++-- proxy/README.md | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-)
This is an automated email from the git hooks/post-receive script.
cohosh pushed a commit to branch main in repository pluggable-transports/snowflake.
commit 31b958302e93457aa9188c7ae5f5977dad1929bf Author: Cecylia Bocovich cohosh@torproject.org AuthorDate: Wed Oct 12 11:03:06 2022 -0400
Bump minimum go version to 1.15 --- client/README.md | 2 +- go.mod | 4 ++-- proxy/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/client/README.md b/client/README.md index c6f4bda..a68d0b4 100644 --- a/client/README.md +++ b/client/README.md @@ -15,7 +15,7 @@ It is based on the [goptlib](https://gitweb.torproject.org/pluggable-transports/
### Dependencies
-- Go 1.13+ +- Go 1.15+ - We use the [pion/webrtc](https://github.com/pion/webrtc) library for WebRTC communication with Snowflake proxies. Note: running `go get` will fetch this dependency automatically during the build process.
### Building the Snowflake client diff --git a/go.mod b/go.mod index c782967..332475f 100644 --- a/go.mod +++ b/go.mod @@ -1,10 +1,10 @@ module git.torproject.org/pluggable-transports/snowflake.git/v2
-go 1.13 +go 1.15
require ( git.torproject.org/pluggable-transports/goptlib.git v1.1.0 - github.com/clarkduvall/hyperloglog v0.0.0-20171127014514-a0107a5d8004 // indirect + github.com/clarkduvall/hyperloglog v0.0.0-20171127014514-a0107a5d8004 github.com/gorilla/websocket v1.4.1 github.com/pion/ice/v2 v2.2.6 github.com/pion/sdp/v3 v3.0.5 diff --git a/proxy/README.md b/proxy/README.md index e736667..c845aab 100644 --- a/proxy/README.md +++ b/proxy/README.md @@ -12,7 +12,7 @@ This is a standalone (not browser-based) version of the Snowflake proxy. For bro
### Dependencies
-- Go 1.13+ +- Go 1.15+ - We use the [pion/webrtc](https://github.com/pion/webrtc) library for WebRTC communication with Snowflake proxies. Note: running `go get` will fetch this dependency automatically during the build process.
### Building the standalone Snowflake proxy
This is an automated email from the git hooks/post-receive script.
cohosh pushed a commit to branch main in repository pluggable-transports/snowflake.
commit 8b1970a3ce85436e87a9ac868652c3fc3d8c4b58 Author: Cecylia Bocovich cohosh@torproject.org AuthorDate: Wed Oct 12 11:05:05 2022 -0400
Update CI tests to include latest and min go versions --- .gitlab-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e03c8c4..7db34d5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -139,22 +139,22 @@ android: - go get golang.org/x/mobile/bind - gomobile bind -v -target=android $REPRODUCIBLE_FLAGS .
-go-1.16: - image: golang:1.16-stretch +go-1.15: + image: golang:1.15-stretch <<: *golang-docker-debian-template <<: *test-template script: - *go-test
-go-1.17: - image: golang:1.17-stretch +go-1.18: + image: golang:1.18-stretch <<: *golang-docker-debian-template <<: *test-template script: - *go-test
-go-1.18: - image: golang:1.18-stretch +go-1.19: + image: golang:1.19-buster <<: *golang-docker-debian-template <<: *test-template script: @@ -169,7 +169,7 @@ debian-testing:
generate_tarball: stage: deploy - image: golang:1.17-stretch + image: golang:1.19-buster rules: - if: $CI_COMMIT_TAG script:
tor-commits@lists.torproject.org