golang-github-gorilla-handlers 1.5.1-3 source package in Ubuntu

Changelog

golang-github-gorilla-handlers (1.5.1-3) unstable; urgency=medium

  * debian/control: Restore "Testsuite: autopkgtest-pkg-go"
    which I inadvertently removed while reordering fields.  Silly me!

 -- Anthony Fok <email address hidden>  Wed, 15 Mar 2023 15:29:03 -0600

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-gorilla-handlers_1.5.1-3.dsc 2.3 KiB 50123f0ffce9111c043687213e3da913a06a9c6a795b634c939f1b5e1938efd0
golang-github-gorilla-handlers_1.5.1.orig.tar.gz 20.5 KiB be22eafc7020cba749c8638d0051c326f1b31b5a76a98d86beafc595079f6b09
golang-github-gorilla-handlers_1.5.1-3.debian.tar.xz 11.4 KiB 7a7d86cae4d871102ee0b5814c82b51c26d12ad5b1734a05bf53d8da515f3c08

Available diffs

No changes file available.

Binary packages built by this source

golang-github-gorilla-handlers-dev: collection of useful handlers for Go's net/http package

 Package handlers is a collection of handlers (aka "HTTP middleware") for use
 with Go's net/http package (or any framework supporting http.Handler),
 including:
 .
  • LoggingHandler for logging HTTP requests in the Apache Common Log Format
    (http://httpd.apache.org/docs/2.2/logs.html#common).
  • CombinedLoggingHandler for logging HTTP requests in the Apache Combined Log
    Format (http://httpd.apache.org/docs/2.2/logs.html#combined) commonly used
    by both Apache and nginx.
  • CompressHandler for gzipping responses.
  • ContentTypeHandler for validating requests against a list of accepted
    content types.
  • MethodHandler for matching HTTP methods against handlers in a
    map[string]http.Handler
  • ProxyHeaders for populating r.RemoteAddr and r.URL.Scheme based on the
    X-Forwarded-For, X-Real-IP, X-Forwarded-Proto and RFC7239 Forwarded headers
    when running a Go server behind a HTTP reverse proxy.
  • CanonicalHost for re-directing to the preferred host when handling multiple
    domains (i.e. multiple CNAME aliases).
 .
 Other handlers are documented on the Gorilla website
 (http://www.gorillatoolkit.org/pkg/handlers).