golang-github-go-playground-validator-v10 10.28.0-2 source package in Ubuntu

Changelog

golang-github-go-playground-validator-v10 (10.28.0-2) unstable; urgency=medium

  * Team upload
  * Add patch to fix test failure on 32bit systems

 -- Mathias Gibbens <email address hidden>  Sat, 18 Oct 2025 14:18:57 +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

Downloads

File Size SHA-256 Checksum
golang-github-go-playground-validator-v10_10.28.0-2.dsc 2.7 KiB 5ecae41a09b45c4779fd2acaa2c99e0b88cff67d0dfd86cc88a8c4d28dd60cf3
golang-github-go-playground-validator-v10_10.28.0.orig.tar.gz 301.7 KiB 094ceb6c2064fe1b28a2d5e307cde4f5bcecef70123eb671edcb07f6d751dafd
golang-github-go-playground-validator-v10_10.28.0-2.debian.tar.xz 3.6 KiB 552b4623480622469948a121826d0dd3addce800bd6a1cc238449e356d80399f

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.