Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update module github.com/go-chi/chi to v5 - autoclosed #33

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 28, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Type Update Change
github.com/go-chi/chi require major v1.5.4 -> v5.0.5

Release Notes

go-chi/chi

v5.0.5

Compare Source

v5.0.4

Compare Source

v5.0.3

Compare Source

v5.0.2

Compare Source

v5.0.1

Compare Source

v5.0.0

Compare Source

  • chi v5, github.com/go-chi/chi/v5 introduces the adoption of Go's SIV to adhere to the current state-of-the-tools in Go.
  • chi v1.5.x did not work out as planned, as the Go tooling is too powerful and chi's adoption is too wide.
    The most responsible thing to do for everyone's benefit is to just release v5 with SIV, so I present to you all,
    chi v5 at github.com/go-chi/chi/v5. I hope someday the developer experience and ergonomics I've been seeking
    will still come to fruition in some form, https://github.com/golang/go/issues/445504550
  • History of changes: see go-chi/chi@v1.5.4...v5.0.0

v4.1.2

Compare Source

v4.1.1

Compare Source

v4.1.0

Compare Source

  • middleware.LogEntry: Write method on interface now passes the response header
    and an extra interface type useful for custom logger implementations.
  • middleware.WrapResponseWriter: minor fix
  • middleware.Recoverer: a bit prettier
  • History of changes: see go-chi/chi@v4.0.4...v4.1.0

v4.0.4

Compare Source

v4.0.3

Compare Source

  • core: fix regexp routing to include default value when param is not matched
  • middleware: rewrite of middleware.Compress
  • middleware: suppress http.ErrAbortHandler in middleware.Recoverer
  • History of changes: see go-chi/chi@v4.0.2...v4.0.3

v4.0.2

Compare Source

v4.0.1

Compare Source

v4.0.0

Compare Source

  • chi v4 requires Go 1.10.3+ (or Go 1.9.7+) - we have deprecated support for Go 1.7 and 1.8
  • router: respond with 404 on router with no routes (#​362)
  • router: additional check to ensure wildcard is at the end of a url pattern (#​333)
  • middleware: deprecate use of http.CloseNotifier (#​347)
  • middleware: fix RedirectSlashes to include query params on redirect (#​334)
  • History of changes: see go-chi/chi@v3.3.4...v4.0.0

v3.3.4

Compare Source

  • Minor middleware improvements. No changes to core library/router. Moving v3 into its
  • own branch as a version of chi for Go 1.7, 1.8, 1.9, 1.10, 1.11
  • History of changes: see go-chi/chi@v3.3.3...v3.3.4

v3.3.3

Compare Source

v3.3.2

Compare Source

  • Support to route trailing slashes on mounted sub-routers (#​281)
  • middleware: new ContentCharset to check matching charsets. Thank you
    @​csucu for your community contribution!

v3.3.1

Compare Source

  • middleware: new AllowContentType handler for explicit whitelist of accepted request Content-Types
  • middleware: new SetHeader handler for short-hand middleware to set a response header key/value
  • Minor bug fixes

v3.3.0

Compare Source

  • New chi.RegisterMethod(method) to add support for custom HTTP methods, see _examples/custom-method for usage
  • Deprecated LINK and UNLINK methods from the default list, please use chi.RegisterMethod("LINK") and chi.RegisterMethod("UNLINK") in an init() function

v3.2.1

Compare Source

  • Add new Match(rctx *Context, method, path string) bool method to Routes interface
    and Mux. Match searches the mux's routing tree for a handler that matches the method/path
  • Add new RouteMethod to *Context
  • Add new Routes pointer to *Context
  • Add new middleware.GetHead to route missing HEAD requests to GET handler
  • Updated benchmarks (see README)

v3.2.0

Compare Source

v3.1.5

Compare Source

  • Setup golint and go vet for the project
  • As per golint, we've redefined func ServerBaseContext(h http.Handler, baseCtx context.Context) http.Handler
    to func ServerBaseContext(baseCtx context.Context, h http.Handler) http.Handler

v3.1.4

Compare Source

v3.1.3

Compare Source

func Walk(r Routes, walkFn WalkFunc) error

type WalkFunc func(method string, route string, handler http.Handler, middlewares ...func(http.Handler) http.Handler) error

v3.1.2

Compare Source

v3.1.1

Compare Source

v3.1.0

Compare Source

v3.0.0

Compare Source

  • Major update to chi library with many exciting updates, but also some breaking changes
  • URL parameter syntax changed from /:id to /{id} for even more flexible routing, such as
    /articles/{month}-{day}-{year}-{slug}, /articles/{id}, and /articles/{id}.{ext} on the
    same router
  • Support for regexp for routing patterns, in the form of /{paramKey:regExp} for example:
    r.Get("/articles/{name:[a-z]+}", h) and chi.URLParam(r, "name")
  • Add Method and MethodFunc to chi.Router to allow routing definitions such as
    r.Method("GET", "/", h) which provides a cleaner interface for custom handlers like
    in _examples/custom-handler
  • Deprecating mux#FileServer helper function. Instead, we encourage users to create their
    own using file handler with the stdlib, see _examples/fileserver for an example
  • Add support for LINK/UNLINK http methods via r.Method() and r.MethodFunc()
  • Moved the chi project to its own organization, to allow chi-related community packages to
    be easily discovered and supported, at: https://github.com/go-chi
  • NOTE: please update your import paths to "github.com/go-chi/chi"
  • NOTE: chi v2 is still available at https://github.com/go-chi/chi/tree/v2

v2.1.0

Compare Source

  • Minor improvements and update to the chi core library
  • Introduced a brand new chi/render sub-package to complete the story of building
    APIs to offer a pattern for managing well-defined request / response payloads. Please
    check out the updated _examples/rest example for how it works.
  • Added MethodNotAllowed(h http.HandlerFunc) to chi.Router interface

v2.0.0

Compare Source

  • After many months of v2 being in an RC state with many companies and users running it in
    production, the inclusion of some improvements to the middlewares, we are very pleased to
    announce v2.0.0 of chi.

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch 2 times, most recently from 0caca14 to 5f268dd Compare March 13, 2021 09:37
@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch 14 times, most recently from ea80235 to 0fcd09f Compare April 1, 2021 13:14
@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch 11 times, most recently from cd9d1e9 to 2a78c75 Compare April 3, 2021 20:45
@renovate
Copy link
Contributor Author

renovate bot commented Apr 3, 2021

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻️ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you check the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: docker run --rm --name=renovate_go --label=renovate_child -v "/mnt/renovate/gh/batazor/microservice-template-ddd":"/mnt/renovate/gh/batazor/microservice-template-ddd" -v "/tmp/renovate-cache":"/tmp/renovate-cache" -v "/tmp/renovate-cache/others/go":"/tmp/renovate-cache/others/go" -e GOPATH -e CGO_ENABLED -w "/mnt/renovate/gh/batazor/microservice-template-ddd" docker.io/renovate/go:1.16.3 bash -l -c "git config --global url.\"https://**redacted**@github.com/\".insteadOf \"https://github.com/\" && go get -d ./... && go mod tidy && go mod tidy"
go: downloading github.com/spf13/viper v1.7.1
go: downloading go.uber.org/zap v1.16.0
go: downloading google.golang.org/grpc v1.37.0
go: downloading github.com/go-chi/cors v1.2.0
go: downloading github.com/go-chi/render v1.0.1
go: downloading github.com/golang/protobuf v1.5.2
go: downloading google.golang.org/protobuf v1.26.0
go: downloading github.com/go-redis/redis v6.15.9+incompatible
go: downloading github.com/golang-migrate/migrate/v4 v4.14.1
go: downloading go.mongodb.org/mongo-driver v1.5.1
go: downloading github.com/google/wire v0.5.0
go: downloading github.com/opentracing/opentracing-go v1.2.0
go: downloading go.uber.org/atomic v1.7.0
go: downloading github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
go: downloading github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
go: downloading github.com/opentracing-contrib/go-grpc v0.0.0-20210225150812-73cb765af46e
go: downloading github.com/uber/jaeger-client-go v2.27.0+incompatible
go: downloading github.com/fsnotify/fsnotify v1.4.9
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading github.com/magiconair/properties v1.8.1
go: downloading github.com/mitchellh/mapstructure v1.1.2
go: downloading github.com/pelletier/go-toml v1.7.0
go: downloading github.com/spf13/afero v1.1.2
go: downloading github.com/spf13/cast v1.3.0
go: downloading github.com/spf13/jwalterweatherman v1.0.0
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/subosito/gotenv v1.2.0
go: downloading gopkg.in/ini.v1 v1.51.0
go: downloading gopkg.in/yaml.v2 v2.3.0
go: downloading go.uber.org/multierr v1.5.0
go: downloading golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb
go: downloading google.golang.org/genproto v0.0.0-20201030142918-24207fddd1c3
go: downloading github.com/hashicorp/go-multierror v1.1.0
go: downloading github.com/cenkalti/backoff/v4 v4.1.0
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d
go: downloading github.com/prometheus/client_golang v0.9.3
go: downloading github.com/uber/jaeger-lib v2.4.0+incompatible
go: downloading golang.org/x/sys v0.0.0-20210112080510-489259a85091
go: downloading golang.org/x/text v0.3.5
go: downloading github.com/hashicorp/errwrap v1.0.0
go: downloading github.com/go-stack/stack v1.8.0
go: downloading github.com/golang/snappy v0.0.1
go: downloading github.com/klauspost/compress v1.10.10
go: downloading github.com/aws/aws-sdk-go v1.34.28
go: downloading github.com/xdg-go/scram v1.0.2
go: downloading github.com/xdg-go/stringprep v1.0.2
go: downloading golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899
go: downloading golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
go: downloading github.com/beorn7/perks v1.0.0
go: downloading github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
go: downloading github.com/prometheus/common v0.4.0
go: downloading github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084
go: downloading github.com/xdg-go/pbkdf2 v1.0.0
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.1
go: downloading github.com/jmespath/go-jmespath v0.4.0
go: downloading github.com/go-chi/chi v1.5.4
robovoice-template/internal/api imports
	github.com/spf13/viper imports
	gopkg.in/ini.v1: fstatat /tmp/renovate-cache/others/go/pkg/mod/gopkg.in/ini.v1@v1.51.0: permission denied
robovoice-template/internal/api imports
	github.com/spf13/viper imports
	gopkg.in/yaml.v2: fstatat /tmp/renovate-cache/others/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0: permission denied
go: downloading github.com/uber/jaeger-client-go v1.6.0
go: downloading github.com/uber/jaeger-lib v1.5.0

@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch from 2a78c75 to b80becc Compare April 29, 2021 23:36
@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch from b80becc to c7780cd Compare August 29, 2021 15:11
@renovate renovate bot reopened this Aug 30, 2021
@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch from c7780cd to 7afde2c Compare August 30, 2021 15:59
@renovate renovate bot changed the title fix(deps): update module github.com/go-chi/chi to v5 fix(deps): update module github.com/go-chi/chi to v5 - autoclosed Aug 30, 2021
@renovate renovate bot closed this Aug 30, 2021
@renovate renovate bot deleted the renovate/github.com-go-chi-chi-5.x branch August 30, 2021 16:30
@renovate renovate bot changed the title fix(deps): update module github.com/go-chi/chi to v5 - autoclosed fix(deps): update module github.com/go-chi/chi to v5 Aug 30, 2021
@renovate renovate bot restored the renovate/github.com-go-chi-chi-5.x branch August 30, 2021 18:23
@renovate renovate bot reopened this Aug 30, 2021
@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch from 7afde2c to 562c471 Compare August 30, 2021 18:25
@renovate renovate bot changed the title fix(deps): update module github.com/go-chi/chi to v5 fix(deps): update module github.com/go-chi/chi to v5 - autoclosed Aug 31, 2021
@renovate renovate bot closed this Aug 31, 2021
@renovate renovate bot deleted the renovate/github.com-go-chi-chi-5.x branch August 31, 2021 00:35
@renovate renovate bot changed the title fix(deps): update module github.com/go-chi/chi to v5 - autoclosed fix(deps): update module github.com/go-chi/chi to v5 Aug 31, 2021
@renovate renovate bot restored the renovate/github.com-go-chi-chi-5.x branch August 31, 2021 01:52
@renovate renovate bot reopened this Aug 31, 2021
@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch 2 times, most recently from 2fe54a7 to a50a578 Compare September 2, 2021 20:16
@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch from a50a578 to cac0f16 Compare September 8, 2021 23:26
@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch 4 times, most recently from 0d1bfca to 61100ee Compare September 25, 2021 12:48
@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch 2 times, most recently from 167ce53 to 70b75c6 Compare October 5, 2021 19:44
@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch from 70b75c6 to 09d83c1 Compare October 11, 2021 20:35
Signed-off-by: Renovate Bot <bot@renovateapp.com>
@renovate renovate bot force-pushed the renovate/github.com-go-chi-chi-5.x branch from 09d83c1 to ac82449 Compare October 27, 2021 12:19
@renovate renovate bot changed the title fix(deps): update module github.com/go-chi/chi to v5 fix(deps): update module github.com/go-chi/chi to v5 - autoclosed Oct 31, 2021
@renovate renovate bot closed this Oct 31, 2021
@renovate renovate bot deleted the renovate/github.com-go-chi-chi-5.x branch October 31, 2021 09:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant