golang-github-gorilla-mux 1.8.1-1 source package in Ubuntu

Changelog

golang-github-gorilla-mux (1.8.1-1) unstable; urgency=medium

  [ Tianon Gravi ]
  * Remove self from Uploaders

  [ Anthony Fok ]
  * New upstream version 1.8.1
  * Reorder fields in debian/control and debian/copyright
  * Bump Standards-Version to 4.6.2 (no change)

 -- Anthony Fok <email address hidden>  Fri, 08 Dec 2023 15:54:40 -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-mux_1.8.1-1.dsc 2.2 KiB fb26e2bbbdb9f1798d3ecfdf90220b796c15e7c30865fc05d07fad7cd7d4ad48
golang-github-gorilla-mux_1.8.1.orig.tar.gz 45.9 KiB c2a09e78d1886abb2d291b472eba3ac9185acb35234c1f5616669664ba893d6d
golang-github-gorilla-mux_1.8.1-1.debian.tar.xz 4.1 KiB e4312efe5dce44edbeecd8dbc6392dde5b7dfb9547d5138c97f11c0f3367158d

Available diffs

No changes file available.

Binary packages built by this source

golang-github-gorilla-mux-dev: powerful URL router and dispatcher for golang

 Package gorilla/mux implements a request router and dispatcher.
 .
 The name mux stands for "HTTP request multiplexer". Like the standard
 http.ServeMux, mux.Router matches incoming requests against a list of
 registered routes and calls a handler for the route that matches the URL
 or other conditions. The main features are:
 .
  * Requests can be matched based on URL host, path, path prefix, schemes,
    header and query values, HTTP methods or using custom matchers.
  * URL hosts and paths can have variables with an optional regular expression.
  * Registered URLs can be built, or "reversed", which helps maintaining
    references to resources.
  * Routes can be used as subrouters: nested routes are only tested if the
    parent route matches. This is useful to define groups of routes that share
    common conditions like a host, a path prefix or other repeated attributes.
    As a bonus, this optimizes request matching.
  * It implements the http.Handler interface so it is compatible with the
    standard http.ServeMux.