golang-github-go-playground-validator-v10 10.30.1-1 source package in Ubuntu

Changelog

golang-github-go-playground-validator-v10 (10.30.1-1) unstable; urgency=medium

  * Team upload
  * New upstream release
  * d/control:
    - Update Standards-Version to 4.7.3, drop Priority field

 -- Mathias Gibbens <email address hidden>  Sun, 28 Dec 2025 01:04:58 +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
Resolute release universe misc

Builds

Resolute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-go-playground-validator-v10_10.30.1-1.dsc 2.7 KiB b7abb666c2626f9fed9535a37566ad24abf64d156d1e571703676dbab86102ed
golang-github-go-playground-validator-v10_10.30.1.orig.tar.gz 305.3 KiB defe86d159e7696301f54071db13bb1d7cab4b9c22193a4b2f708bc63c63e101
golang-github-go-playground-validator-v10_10.30.1-1.debian.tar.xz 3.1 KiB 31725a4b0fb1be9c4ffd88c37e26efca3e43153b2a29e352d2a1bc20b756ea84

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.