golang-github-grpc-ecosystem-go-grpc-middleware 1.3.0-2 source package in Ubuntu

Changelog

golang-github-grpc-ecosystem-go-grpc-middleware (1.3.0-2) unstable; urgency=medium

  * Team upload
  * d/control:
    - Update Standards-Version to 4.6.2 (no changes needed)
    - Allow golang-github-golang-protobuf-1-5-dev as optional Depends

 -- Mathias Gibbens <email address hidden>  Fri, 16 Feb 2024 21:54:58 +0000

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-grpc-ecosystem-go-grpc-middleware_1.3.0-2.dsc 2.8 KiB 7978c69a31c8f7434159091e8e8d257108223a0abf870e2410b7714e6f562987
golang-github-grpc-ecosystem-go-grpc-middleware_1.3.0.orig.tar.gz 101.3 KiB c9b908202c05a7f821b03ee49cd678e7e71469519054629770e0565d78275cbc
golang-github-grpc-ecosystem-go-grpc-middleware_1.3.0-2.debian.tar.xz 2.8 KiB 29c0fd56ca6b90bf743ecf38ed2e1692f23b925d3068cc6fce15296e570b623a

Available diffs

No changes file available.

Binary packages built by this source

golang-github-grpc-ecosystem-go-grpc-middleware-dev: Go gRPC Middlewares: interceptor chaining, auth, logging, retries and more

 gRPC Go recently acquired support for Interceptors, i.e. middleware
 that is executed either on the gRPC Server before the request is passed
 onto the user's application logic, or on the gRPC client either around
 the user call. It is a perfect way to implement common patterns: auth,
 logging, message, validation, retries or monitoring.
 .
 These are generic building blocks that make it easy to build multiple
 microservices easily. The purpose of this repository is to act as a
 go-to point for such reusable functionality. It contains some of them
 itself, but also will link to useful external repos.
 .
 grpc_middleware itself provides support for chaining interceptors.