golang-github-gorilla-handlers 1.5.2-1 source package in Ubuntu

Changelog

golang-github-gorilla-handlers (1.5.2-1) unstable; urgency=medium

  * New upstream version 1.5.2
  * Revert "Vendor a copy of github.com/felixge/httpsnoop v1.0.3 temporarily"
    as golang-github-felixge-httpsnoop-dev is in Debian testing (trixie) now
  * Bump versioned dependencies as per go.mod
  * Refresh debian/patches/internet-test.patch

 -- Anthony Fok <email address hidden>  Fri, 08 Dec 2023 16:44:59 -0700

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
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-gorilla-handlers_1.5.2-1.dsc 2.3 KiB 9a5b2cdac54743226b0bf218869547f0fde18918a56af6a450ad39e28bdbcffc
golang-github-gorilla-handlers_1.5.2.orig.tar.gz 21.1 KiB 8760b84a1b5cd49ce81a56c9fce0ba0de157355b1bb38d112bdfd7cf7ad7a44d
golang-github-gorilla-handlers_1.5.2-1.debian.tar.xz 4.2 KiB 7a408337982afdf277aa41fd7dfbbd807a64160fdadfd62a1c700f210a67e4a5

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).