Null Versions Save

reasonable handling of nullable values

v5.0.0

4 months ago
  • Now a Go module under the path github.com/guregu/null/v5
    • ⚠️ Please use this instead of from the former gopkg.in path.
    • Previously this package didn't use modules to support ancient pre-go mod environments, but now module support is required.
  • Added missing types from database/sql: Int32, Int16, Byte
  • Added generic Value[T] embedding sql.Null[T]
    • Note that zero.Value[T] requires that T is comparable. null.Value[T] supports any value.
    • This doesn't support TextMarshaler because there's no generic way to support all types (e.g. structs). We could support some types but I'm not sure if that's useful.
    • This type requires Go version ≥1.22, on lower versions it won't be present

Behavior from v4 is unchanged, so it should be an easy upgrade. Thank you and enjoy.

What's Changed

Full Changelog: https://github.com/guregu/null/compare/v4.0.0...v5.0.0

v4.0.0

4 years ago

This is a new major release that improves performance and fixes an inconsistency that existed in v3.

  • null.Time and zero.Time now embed sql.NullTime.
  • null.Time and zero.Time's UnmarshalText returns a blank string if invalid, making them consistent with the rest of the package (see #47).
  • Errors returned by this package are now wrapped using Go 1.13-style errors.
  • Support for unmarshaling from the JSON representation of sql.NullXXX objects (ex. {"Int64": 123, "Valid": true}) has been dropped, significantly improving unmarshaling time and reducing allocations.
  • Unmarshaling errors no longer affect Valid. Always check for errors.

Support for Equal was added in the previous release.

v3.5.0

4 years ago

This release adds an Equal method to all types, for easy equality checks. It also adds ValueOrZero to the zero package. Types in the null package are considered Equal if they're either both invalid, or both valid and have the same value. Types on the zero package are considered Equal if their ValueOrZero is the same, so an invalid string and a valid "" are equal.

This will be the last release before v4.

v3.4.0

5 years ago

Adds IsZero methods for Time in line with the rest of the types.

v3.3.0

6 years ago

Added a new method ValueOrZero to every type in the null package. This method returns the inner value if valid, or the zero value if invalid (similar to the zero package). See #17.

v3.2.1

6 years ago

If you try to JSON marshal Infinity or NaN, you'll get *encoding/json.UnsupportedValueError. This brings us in line with the standard library.

v3.2.0

6 years ago

Int and Float can now be read from JSON strings. #23

v3.1

8 years ago

MarshalText was missing from null.String, but no longer!

v3.0.1

8 years ago

This version updates the GoDoc to be consistent with the changes described in #10 and #14.

v3

8 years ago

Blank string input now produces a null null.String. Now the null package is consistent. Please use the zero.String type or v2 if you would like the old behavior.

Fixes #10.