Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thalesfsp committed Oct 14, 2021
1 parent d686581 commit 1990c4b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 19 deletions.
29 changes: 14 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Roadmap

- Abstract the underlying proxy implementation - currently bound to GoProxy.
- Load config from Config file, and from env vars. Use viper for that.
- Options
- Abstract the underlying proxy implementation - currently bound to GoProxy
- Load config from Config file, and from env vars. Use viper for that

## [0.1.1] - 2021-10-4
## [0.1.2] - 2021-10-13
### Changed
- Updated dependencies.

## [0.1.1] - 2021-10-4
### Added

- Integrated PAC (Pacman)
- More tests
- Added benchmark
- Integrated PAC (Pacman).
- More tests.
- Added benchmark.

## [0.1.0] - 2021-09-21
### Added
- [x] Ability to proxy connections.
- [x] Ability to protect local proxy with basic auth.
- [x] Ability to forward connections to a parent proxy.
- [x] Ability to forward connections to a parent proxy protected with basic auth.

### Checklist

Expand Down Expand Up @@ -66,10 +72,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [x] Output to `stdout`
- [x] Output to `stderr`
- [x] Output to file

### Added

- [x] Ability to proxy connections
- [x] Ability to protect local proxy with basic auth
- [x] Ability to forward connections to a parent proxy
- [x] Ability to forward connections to a parent proxy protected with basic auth
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/saucelabs/customerror v0.0.2
github.com/saucelabs/pacman v0.0.8
github.com/saucelabs/pacman v0.0.9
github.com/saucelabs/randomness v0.0.2
github.com/saucelabs/sypl v1.5.3
github.com/saucelabs/sypl v1.5.4
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect
golang.org/x/sys v0.0.0-20211013075003-97ac67df715c // indirect
golang.org/x/text v0.3.7 // indirect
)

require (
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91 // indirect
github.com/dop251/goja v0.0.0-20211010160034-ce3fee827ad0 // indirect
github.com/dop251/goja v0.0.0-20211011172007-d99e4b8cbf48 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
Expand Down
8 changes: 8 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91/go.mod h1:2pZnwu
github.com/dop251/goja v0.0.0-20211006122547-7efcb634c641/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk=
github.com/dop251/goja v0.0.0-20211010160034-ce3fee827ad0 h1:MF4b1ty2XKxUcCgEOMAGoHsgQJgrpgghtmR/2vW8Meg=
github.com/dop251/goja v0.0.0-20211010160034-ce3fee827ad0/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk=
github.com/dop251/goja v0.0.0-20211011172007-d99e4b8cbf48 h1:iZOop7pqsg+56twTopWgwCGxdB5SI2yDO8Ti7eTRliQ=
github.com/dop251/goja v0.0.0-20211011172007-d99e4b8cbf48/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk=
github.com/dop251/goja_nodejs v0.0.0-20210225215109-d91c329300e7/go.mod h1:hn7BA7c8pLvoGndExHudxTDKZ84Pyvv+90pbBjbTz0Y=
github.com/elazarl/goproxy v0.0.0-20210801061803-8e322dfb79c4 h1:lS3P5Nw3oPO05Lk2gFiYUOL3QPaH+fRoI1wFOc4G1UY=
github.com/elazarl/goproxy v0.0.0-20210801061803-8e322dfb79c4/go.mod h1:Ro8st/ElPeALwNFlcTpWmkr6IoMFfkjXAvTHpevnDsM=
Expand Down Expand Up @@ -256,10 +258,14 @@ github.com/saucelabs/lumberjack/v3 v3.0.2 h1:d2xl3L4gtuwhFOnBEWTcTRxZ64wQWyFfUK8
github.com/saucelabs/lumberjack/v3 v3.0.2/go.mod h1:YWvEpPjHrjk7jKET9K4Vphyk6RFlXFD1e/rP60Fr+JA=
github.com/saucelabs/pacman v0.0.8 h1:iYgI+bVgNgmJDHSSc8VlG15cfspPi8AROhrA44d0ToY=
github.com/saucelabs/pacman v0.0.8/go.mod h1:Ozb8Nq69vgHbPH6j0fkgd+Ww8e7KCv8mKiNHi6rhyns=
github.com/saucelabs/pacman v0.0.9 h1:9L9Cdb1NMztHDS7gA0WCQPZMvcI9dBg9K2ggm2+RHvc=
github.com/saucelabs/pacman v0.0.9/go.mod h1:y1PFcZtZpyhyHDJtkXFDyv2qD58HjAyDEo4uumP+7zA=
github.com/saucelabs/randomness v0.0.2 h1:PktaJ7+9/ZK4wFfDQh06jSUgvLeMPLINwlYFXAgsCLM=
github.com/saucelabs/randomness v0.0.2/go.mod h1:7G1I9BSE1Tw1/Q8hx5lmLV57Rda0CCXm8BRH/FiWYEw=
github.com/saucelabs/sypl v1.5.3 h1:6/aN5G8g8hUwUxoHNgZ3FpRW5KjopZvsGVPfLz5j1WQ=
github.com/saucelabs/sypl v1.5.3/go.mod h1:ubSLpo9I9awtabutiS6Npjof7s/km+HJ/9aOOPClMW0=
github.com/saucelabs/sypl v1.5.4 h1:LEIoFMuCcaScBWfZTjyoTpFk6HJIz6m/jSi37ELUHyc=
github.com/saucelabs/sypl v1.5.4/go.mod h1:ubSLpo9I9awtabutiS6Npjof7s/km+HJ/9aOOPClMW0=
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=
github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=
Expand Down Expand Up @@ -453,6 +459,8 @@ golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBc
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac h1:oN6lz7iLW/YC7un8pq+9bOLyXrprv2+DKfkJY+2LJJw=
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20211013075003-97ac67df715c h1:taxlMj0D/1sOAuv/CbSD+MMDof2vbyPTqz5FNYKpXt8=
golang.org/x/sys v0.0.0-20211013075003-97ac67df715c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
Expand Down

0 comments on commit 1990c4b

Please sign in to comment.