[PR #110] [MERGED] Update and lock latest go-http-tunnel dependency #148

Closed
opened 2026-05-05 11:02:31 -06:00 by gitea-mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mmatczuk/go-http-tunnel/pull/110
Author: @janpieterz
Created: 2/12/2020
Status: Merged
Merged: 2/12/2020
Merged by: @mmatczuk

Base: masterHead: hotfix/dependency


📝 Commits (1)

  • 8284ab2 Update and lock latest go-http-tunnel dependency

📊 Changes

26 files changed (+1695 additions, -73 deletions)

View changed files

📝 Gopkg.lock (+13 -3)
📝 Gopkg.toml (+5 -0)
vendor/github.com/inconshreveable/go-vhost/LICENSE (+13 -0)
vendor/github.com/inconshreveable/go-vhost/README.md (+110 -0)
vendor/github.com/inconshreveable/go-vhost/http.go (+42 -0)
vendor/github.com/inconshreveable/go-vhost/http_test.go (+45 -0)
vendor/github.com/inconshreveable/go-vhost/interface.go (+11 -0)
vendor/github.com/inconshreveable/go-vhost/mux.go (+337 -0)
vendor/github.com/inconshreveable/go-vhost/mux_test.go (+195 -0)
vendor/github.com/inconshreveable/go-vhost/shared.go (+52 -0)
vendor/github.com/inconshreveable/go-vhost/shared_test.go (+64 -0)
vendor/github.com/inconshreveable/go-vhost/tls.go (+434 -0)
vendor/github.com/inconshreveable/go-vhost/tls_test.go (+39 -0)
📝 vendor/github.com/mmatczuk/go-http-tunnel/.gitignore (+3 -0)
📝 vendor/github.com/mmatczuk/go-http-tunnel/Gopkg.lock (+69 -9)
📝 vendor/github.com/mmatczuk/go-http-tunnel/Gopkg.toml (+7 -7)
📝 vendor/github.com/mmatczuk/go-http-tunnel/Makefile (+47 -36)
📝 vendor/github.com/mmatczuk/go-http-tunnel/README.md (+69 -4)
📝 vendor/github.com/mmatczuk/go-http-tunnel/cmd/tunnel/config.go (+28 -0)
📝 vendor/github.com/mmatczuk/go-http-tunnel/cmd/tunnel/options.go (+4 -0)

...and 6 more files

📄 Description

Update and explicitly set the go-http-tunnel dependency. A raw clone and dep ensure fails to build as the dependency on the project's own files fails to resolve to the latest version containing SNI protocol.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mmatczuk/go-http-tunnel/pull/110 **Author:** [@janpieterz](https://github.com/janpieterz) **Created:** 2/12/2020 **Status:** ✅ Merged **Merged:** 2/12/2020 **Merged by:** [@mmatczuk](https://github.com/mmatczuk) **Base:** `master` ← **Head:** `hotfix/dependency` --- ### 📝 Commits (1) - [`8284ab2`](https://github.com/mmatczuk/go-http-tunnel/commit/8284ab269a6ae1293bbc7d7d45f288510dfa4e2b) Update and lock latest go-http-tunnel dependency ### 📊 Changes **26 files changed** (+1695 additions, -73 deletions) <details> <summary>View changed files</summary> 📝 `Gopkg.lock` (+13 -3) 📝 `Gopkg.toml` (+5 -0) ➕ `vendor/github.com/inconshreveable/go-vhost/LICENSE` (+13 -0) ➕ `vendor/github.com/inconshreveable/go-vhost/README.md` (+110 -0) ➕ `vendor/github.com/inconshreveable/go-vhost/http.go` (+42 -0) ➕ `vendor/github.com/inconshreveable/go-vhost/http_test.go` (+45 -0) ➕ `vendor/github.com/inconshreveable/go-vhost/interface.go` (+11 -0) ➕ `vendor/github.com/inconshreveable/go-vhost/mux.go` (+337 -0) ➕ `vendor/github.com/inconshreveable/go-vhost/mux_test.go` (+195 -0) ➕ `vendor/github.com/inconshreveable/go-vhost/shared.go` (+52 -0) ➕ `vendor/github.com/inconshreveable/go-vhost/shared_test.go` (+64 -0) ➕ `vendor/github.com/inconshreveable/go-vhost/tls.go` (+434 -0) ➕ `vendor/github.com/inconshreveable/go-vhost/tls_test.go` (+39 -0) 📝 `vendor/github.com/mmatczuk/go-http-tunnel/.gitignore` (+3 -0) 📝 `vendor/github.com/mmatczuk/go-http-tunnel/Gopkg.lock` (+69 -9) 📝 `vendor/github.com/mmatczuk/go-http-tunnel/Gopkg.toml` (+7 -7) 📝 `vendor/github.com/mmatczuk/go-http-tunnel/Makefile` (+47 -36) 📝 `vendor/github.com/mmatczuk/go-http-tunnel/README.md` (+69 -4) 📝 `vendor/github.com/mmatczuk/go-http-tunnel/cmd/tunnel/config.go` (+28 -0) 📝 `vendor/github.com/mmatczuk/go-http-tunnel/cmd/tunnel/options.go` (+4 -0) _...and 6 more files_ </details> ### 📄 Description Update and explicitly set the go-http-tunnel dependency. A raw clone and dep ensure fails to build as the dependency on the project's own files fails to resolve to the latest version containing SNI protocol. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
gitea-mirror 2026-05-05 11:02:31 -06:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/go-http-tunnel#148
No description provided.