File: CHANGES.md

package info (click to toggle)
golang-github-go-test-deep 1.0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 144 kB
  • sloc: makefile: 2
file content (47 lines) | stat: -rw-r--r-- 1,652 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# go-test/deep Changelog

## v1.0.8 released 2021-10-13

* Updated matrix to go1.15, go1.16, and go1.17
* Added SECURITY.md and GitHub code analysis

## v1.0.7 released 2020-07-11

* Fixed issue #39: Confusing diff when comparing distinct types with the same name (PR #44)

## v1.0.6 released 2020-04-21

* Added `NilMapsAreEmpty` variable which causes a nil map to equal an empty map (PR #43) (@yalegko)

## v1.0.5 released 2020-01-16

* Added `NilSlicesAreEmpty` variable which causes a nil slice to be equal to an empty slice (PR #27) (@Anaminus)

## v1.0.4 released 2019-09-15

* Added \`deep:"-"\` structure field tag to ignore field (PR #38) (@flga)

## v1.0.3 released 2019-08-18

* Fixed issue #31: panic on typed primitives that implement error interface

## v1.0.2 released 2019-07-14

* Enabled Go module (@radeksimko)
* Changed supported and tested Go versions: 1.10, 1.11, and 1.12 (dropped 1.9)
* Changed Error equality: additional struct fields are compared too (PR #29) (@andrewmostello)
* Fixed typos and ineffassign issues (PR #25) (@tariq1890)
* Fixed diff order for nil comparison (PR #16) (@gmarik)
* Fixed slice equality when slices are extracted from the same array (PR #11) (@risteli)
* Fixed test spelling and messages (PR #19) (@sofuture)
* Fixed issue #15: panic on comparing struct with anonymous time.Time
* Fixed issue #18: Panic when comparing structs with time.Time value and CompareUnexportedFields is true
* Fixed issue #21: Set default MaxDepth = 0 (disabled) (PR #23)

## v1.0.1 released 2018-01-28

* Fixed issue #12: Arrays are not properly compared (@samlitowitz)

## v1.0.0 releaesd 2017-10-27 

* First release