-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from tideland/migrate-to-1-18
Migrate to 1 18
- Loading branch information
Showing
13 changed files
with
129 additions
and
142 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ on: | |
branches: [ main ] | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,79 @@ | ||
# Changelog | ||
|
||
## v0.6.5 | ||
### v0.7.0 | ||
|
||
* (C) Fix checking for nil error in Asserts.ErrorContains() | ||
* (C) Fix generator to resist concurrent calls | ||
- Migrate to Go 1.18 | ||
|
||
## v0.6.4 | ||
### v0.6.5 | ||
|
||
* (C) Web simulator now provides some convenience methods | ||
- Fix checking for nil error in Asserts.ErrorContains() | ||
- Fix generator to resist concurrent calls | ||
|
||
## v0.6.3 | ||
### v0.6.4 | ||
|
||
* (C) Web package now uses httptest package | ||
- Web simulator now provides some convenience methods | ||
|
||
## v0.6.2 | ||
### v0.6.3 | ||
|
||
* (C) Migrate web response to http.Response | ||
* (A) Add helper for request body | ||
- Web package now uses httptest package | ||
|
||
## v0.6.1 | ||
### v0.6.2 | ||
|
||
* (C) Change web response to use the standard http.Response | ||
* (A) Add helper for response body | ||
- Migrate web response to http.Response | ||
- Add helper for request body | ||
|
||
## v0.6.0 | ||
### v0.6.1 | ||
|
||
* (A) New web package for handler tests | ||
- Change web response to use the standard http.Response | ||
- Add helper for response body | ||
|
||
## v0.5.2 | ||
### v0.6.0 | ||
|
||
* (C) Optimize output of last change | ||
- New web package for handler tests | ||
|
||
## v0.5.1 | ||
### v0.5.2 | ||
|
||
* (C) Fix output in case of failing web body assertions | ||
- Optimize output of last change | ||
|
||
## v0.5.0 | ||
### v0.5.1 | ||
|
||
* (A) Asserts now contains NotOK() and AnyError() | ||
* (C) Asserts created with NewTesting() now uses the Failable as Printer if | ||
- Fix output in case of failing web body assertions | ||
|
||
### v0.5.0 | ||
|
||
- Asserts now contains NotOK() and AnyError() | ||
- Asserts created with NewTesting() now uses the Failable as Printer if | ||
it implements the according interface | ||
* (A) Generator now contains OneOf() | ||
- Generator now contains OneOf() | ||
|
||
## v0.4.0 | ||
### v0.4.0 | ||
|
||
* (A) Asserts now contains NotPanics() and PanicsWith() | ||
* (C) Asserts.OK() now also handles func() error | ||
* (C) Migrate Tester into private helper functions | ||
* (D) Drop unused output in Asserts unit test | ||
- Asserts now contains NotPanics() and PanicsWith() | ||
- Asserts.OK() now also handles func() error | ||
- Migrate Tester into private helper functions | ||
- Drop unused output in Asserts unit test | ||
|
||
## v0.3.4 | ||
### v0.3.4 | ||
|
||
* (C) Length tester now counts runes instead of bytes in case of strings | ||
- Length tester now counts runes instead of bytes in case of strings | ||
|
||
## v0.3.3 | ||
### v0.3.3 | ||
|
||
* (C) Extend Asserts.OK() for more types | ||
* (C) Extend Asserts.NoError() to not only check for nil but also in case | ||
- Extend Asserts.OK() for more types | ||
- Extend Asserts.NoError() to not only check for nil but also in case | ||
of a T.Err() instance to return no error | ||
* (C) Same for Asserts.ErrorMatch() and Asserts.ErrorContains() | ||
- Same for Asserts.ErrorMatch() and Asserts.ErrorContains() | ||
|
||
## v0.3.2 | ||
### v0.3.2 | ||
|
||
* (C) Add Asserts.OK() as a simple alias for Asserts.True() | ||
* (C) Fix the public embedding of the Tester to Asserts | ||
- Add Asserts.OK() as a simple alias for Asserts.True() | ||
- Fix the public embedding of the Tester to Asserts | ||
|
||
## v0.3.1 | ||
### v0.3.1 | ||
|
||
* (C) Fix output of Asserts.ErrorMatch() | ||
- Fix output of Asserts.ErrorMatch() | ||
|
||
## v0.3.0 | ||
### v0.3.0 | ||
|
||
* (C) Extracted from Tideland Go Library as part of split | ||
- Extracted from Tideland Go Library as part of split | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.