Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.22
- name: Set up Go 1.24
uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: 1.24
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Lint, test and build
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- Updated to Go 1.24
- Updated dependencies to resolve security vulnerabilities

## [v1.3.0] - 2024-10-26
### Added
- New `--socks` option which allows forwarding requests to a SOCKS5 proxy.
- New `--socks-auth` option which allows adding basic authentication details to forwarded SOCKS5 proxy requests.
Expand Down Expand Up @@ -39,7 +44,8 @@ provided in the `Proxy-Authentication` header.
- Can choose the log verbosity with the `-v` flag.
- Can choose to log to a file.

[Unreleased]: https://github.com/jthomperoo/simple-proxy/compare/v1.2.0...HEAD
[Unreleased]: https://github.com/jthomperoo/simple-proxy/compare/v1.3.0...HEAD
[v1.3.0]:https://github.com/jthomperoo/simple-proxy/compare/v1.2.0...v1.3.0
[v1.2.0]:https://github.com/jthomperoo/simple-proxy/compare/v1.1.1...v1.2.0
[v1.1.1]:https://github.com/jthomperoo/simple-proxy/compare/v1.1.0...v1.1.1
[v1.1.0]:https://github.com/jthomperoo/simple-proxy/compare/v1.0.0...v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ the other projects that solved it better and which could serve as inspiration.

Developing this project requires these dependencies:

* [Go](https://golang.org/doc/install) >= `1.22`
* [Go](https://golang.org/doc/install) >= `1.24`
* [Static Check](https://github.com/dominikh/go-tools) == `2023.1 (v0.4.0)`

### Commands
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ be called from anywhere (e.g. the `/usr/bin` directory).
You can use `wget` to download and install the program to your `/usr/bin` directory by running these commands:

```bash
wget https://github.com/jthomperoo/simple-proxy/releases/download/v1.2.0/simple-proxy_linux_amd64.zip
wget https://github.com/jthomperoo/simple-proxy/releases/download/v1.3.0/simple-proxy_linux_amd64.zip
unzip -d simple-proxy simple-proxy_linux_amd64.zip
cp simple-proxy/simple-proxy /usr/bin/simple-proxy
rm -r simple-proxy/ simple-proxy_linux_amd64.zip
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/jthomperoo/simple-proxy

go 1.22
go 1.24.0

require (
github.com/golang/glog v1.0.0
golang.org/x/net v0.30.0
github.com/golang/glog v1.2.5
golang.org/x/net v0.41.0
)
10 changes: 6 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ=
github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4=
golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4=
golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU=
github.com/golang/glog v1.2.5 h1:DrW6hGnjIhtvhOIiAKT6Psh/Kd/ldepEa81DKeiRJ5I=
github.com/golang/glog v1.2.5/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
golang.org/x/net v0.41.0 h1:vBTly1HeNPEn3wtREYfy4GZ/NECgw2Cnl+nK6Nz3uvw=
golang.org/x/net v0.41.0/go.mod h1:B/K4NNqkfmg07DQYrbwvSluqCJOOXwUjeb/5lOisjbA=
Loading