@@ -3,8 +3,41 @@ All notable changes to this project will be documented in this file.
3
3
4
4
This project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
5
5
6
- ## Unreleased
7
- - No changes yet.
6
+ ## 0.5.0 (15 Oct 2024)
7
+ ### Added
8
+ - [ #153 ] [ ] : Add ` --write_command_comment ` flag to specify whether to include
9
+ ` Generated by this command ` comment.
10
+ - [ #191 ] [ ] : Add ` --build_constraint ` flag to add ` //go:build ` directives
11
+ to generated mocks
12
+ - [ #214 ] [ ] : Add gob mode to support custom package loading techniques in place
13
+ of --exec_only
14
+
15
+ ### Changed
16
+ - [ #181 ] [ ] : Made mockgen faster by changing flags passed to ` go list ` .
17
+ - [ #183 ] [ ] : Made ` Cond ` matcher generic.
18
+ - [ #204 ] [ ] : Removed ` ISGOMOCK() ` from generated mocks.
19
+ - [ #207 ] [ ] : Deprecated reflect mode and replaced it with the new package mode.
20
+
21
+ ### Fixed
22
+ - [ #144 ] [ ] : Fix a deadlock that can happen when mocking an interface that
23
+ matches ` fmt.Stringer ` .
24
+ - [ #168 ] [ ] : Fix an issue where the "generated by" comment was being included
25
+ in the package comment of generated mocks.
26
+
27
+ [ #144 ] : https://github.com/uber-go/mock/pull/144
28
+ [ #153 ] : https://github.com/uber-go/mock/pull/153
29
+ [ #168 ] : https://github.com/uber-go/mock/pull/168
30
+ [ #181 ] : https://github.com/uber-go/mock/pull/181
31
+ [ #183 ] : https://github.com/uber-go/mock/pull/183
32
+ [ #191 ] : https://github.com/uber-go/mock/pull/191
33
+ [ #204 ] : https://github.com/uber-go/mock/pull/204
34
+ [ #207 ] : https://github.com/uber-go/mock/pull/207
35
+ [ #214 ] : https://github.com/uber-go/mock/pull/214
36
+
37
+ Thanks to @tulzke @JacobOaks @ARR4N @sashamelentyev @sywhang @fasmat
38
+ @eyasy1217 @ghouscht @tie @Neo2308 @carson-brill @alexandear @sodul
39
+ @nbgraham for their contributions this release.
40
+
8
41
9
42
## 0.4.0 (20 Dec 2023)
10
43
### Added
0 commit comments