What's Changed
- Handle in? and not_in? with a single element list by @solnic in https://github.com/solnic/drops/pull/58
Full Changelog: https://github.com/solnic/drops/compare/v0.2.0...v0.2.1
Unclaimed project
Are you a maintainer of drops? Claim this project to take control of your public changelog and roadmap.
Changelog
🛠️ Tools for working with data effectively - data contracts using types, schemas, domain validation rules, type-safe casting, and more.
Full Changelog: https://github.com/solnic/drops/compare/v0.2.0...v0.2.1
Drops.Type module that allows you to define custom types (via #36)Drops.Type.Validator protocol that allows you to define custom validators for your typesDrops.Types.Number type (issue #33)union to type definition DSL (issue #37)conform callback is gone (issue #34)Drops.Contract] Rules are now correctly applied only to the root map (via #32)Drops.Contract module for defining validation schemas with additional rulesDrops.Validator module for running validation functions against inputDrops.Validator.Messages.DefaultBackend that's configured by default in contractsDrops.Types module with the following built-in types:
Drops.Types.Type - basic typeDrops.Types.List - a list if me...