golang-github-gorilla-csrf 1.7.1-1 source package in Ubuntu

Changelog

golang-github-gorilla-csrf (1.7.1-1) unstable; urgency=medium

  * New upstream version 1.7.1
  * Reorder fields in debian/control
  * Bump dependency: golang-github-pkg-errors-dev (>= 0.9.1)
  * Change Section from devel to golang
  * Bump Standards-Version to 4.6.2 (no change)
  * Bump debhelper build-dependency to debhelper-compat (= 13)"
  * Use dh-sequence-golang instead of dh-golang and --with=golang

 -- Anthony Fok <email address hidden>  Mon, 13 Mar 2023 07:33:27 -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-csrf_1.7.1-1.dsc 2.3 KiB fcd2fb46d82db00206941e0627f5dc270a6c8bc78b0790ed800e2f4017fc4313
golang-github-gorilla-csrf_1.7.1.orig.tar.gz 22.1 KiB f7dc318d47fc6cdc18a6d465283406ede0cc7abd1cce98d2e1c37d2a976f0b08
golang-github-gorilla-csrf_1.7.1-1.debian.tar.xz 3.0 KiB 811b96cd3188a761344bf811b871c5a6676456efe1b1766526d5c6daea8924fa

Available diffs

No changes file available.

Binary packages built by this source

golang-github-gorilla-csrf-dev: Cross Site Request Forgery (CSRF) prevention middleware for Go

 gorilla/csrf is a HTTP middleware library that provides cross-site request
 forgery (CSRF) protection. It includes:
 .
  * The csrf.Protect middleware/handler provides CSRF protection on routes
    attached to a router or a sub-router.
  * A csrf.Token function that provides the token to pass into your response,
    whether that be a HTML form or a JSON response body.
  * ... and a csrf.TemplateField helper that you can pass into your
    html/template templates to replace a {{ .csrfField }} template tag
    with a hidden input field.
 .
 gorilla/csrf is designed to work with any Go web framework, including:
 .
  * The Gorilla toolkit
  * Go's built-in net/http package
  * Goji - see the tailored fork https://github.com/goji/csrf
  * Gin
  * Echo
  * ... and any other router/framework that rallies around Go's http.Handler
    interface.
 .
 gorilla/csrf is also compatible with middleware 'helper' libraries
 like Alice and Negroni.