Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.5.0 #213

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 35 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,41 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased
- No changes yet.
## 0.5.0 (15 Oct 2024)
### Added
- [#153][]: Add `--write_command_comment` flag to specify whether to include
`Generated by this command` comment.
- [#191][]: Add `--build_constraint` flag to add `//go:build` directives
to generated mocks
- [#214][]: Add gob mode to support custom package loading techniques in place
of --exec_only

### Changed
- [#181][]: Made mockgen faster by changing flags passed to `go list`.
- [#183][]: Made `Cond` matcher generic.
- [#204][]: Removed `ISGOMOCK()` from generated mocks.
- [#207][]: Deprecated reflect mode and replaced it with the new package mode.

### Fixed
- [#144][]: Fix a deadlock that can happen when mocking an interface that
matches `fmt.Stringer`.
- [#168][]: Fix an issue where the "generated by" comment was being included
in the package comment of generated mocks.

[#144]: https://github.com/uber-go/mock/pull/144
[#153]: https://github.com/uber-go/mock/pull/153
[#168]: https://github.com/uber-go/mock/pull/168
[#181]: https://github.com/uber-go/mock/pull/181
[#183]: https://github.com/uber-go/mock/pull/183
[#191]: https://github.com/uber-go/mock/pull/191
[#204]: https://github.com/uber-go/mock/pull/204
[#207]: https://github.com/uber-go/mock/pull/207
[#214]: https://github.com/uber-go/mock/pull/214

Thanks to @tulzke @JacobOaks @ARR4N @sashamelentyev @sywhang @fasmat
@eyasy1217 @ghouscht @tie @Neo2308 @carson-brill @alexandear @sodul
@nbgraham for their contributions this release.


## 0.4.0 (20 Dec 2023)
### Added
Expand Down
Loading