golang-github-go-playground-validator-v10 10.4.1-4 source package in Ubuntu

Changelog

golang-github-go-playground-validator-v10 (10.4.1-4) unstable; urgency=medium

  * Team upload
  * Override dh_auto_test: add -tags timetzdata (Closes: #1027366)
  * Bump Standards-Version to 4.6.2 (no changes)
  * Replace dh-golang with dh-sequence-golang

 -- Daniel Swarbrick <email address hidden>  Mon, 09 Jan 2023 00:19:13 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Questing release universe misc
Plucky release universe misc
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-go-playground-validator-v10_10.4.1-4.dsc 2.6 KiB 7077786dbb136eaaf0b0b87860e350f50a585503605e1c8d5c7fe812b32bbff5
golang-github-go-playground-validator-v10_10.4.1.orig.tar.gz 169.1 KiB 04eacf16e9df0a78e331fc5f7fe1ff374e16e3a3625d838af5fd246e388d3d7d
golang-github-go-playground-validator-v10_10.4.1-4.debian.tar.xz 3.4 KiB ab557f352548d6de64923945207f65a094ffad1216595703c0e169708b13d2c6

Available diffs

No changes file available.

Binary packages built by this source

golang-github-go-playground-validator-v10-dev: Go library for struct and field validation

 The validator package implements value validations for structs and
 individual fields based on tags.
 .
 It has the following unique features:
  - Cross Field and Cross Struct validation by using validation tags
    or custom validators.
  - Slice, Array and Map diving, which allows any or all levels of a
    multidimensional field to be validated.
  - Ability to dive into both map keys and values for validation.
  - Handles type interface by determining its underlying type prior
    to validation.
  - Handles custom field types such as the SQL driver's Valuer.
  - Alias validation tags, which allows for mapping of several
    validations to a single tag for easier definition of validations
    on structs.
  - Extraction of custom defined Field Name, allowing to specify
    extracting the JSON name while validating and making it available
    in the resulting FieldError.
  - Customizable i18n-aware error messages.