Conversation
Reviewer's Guide by SourceryThis pull request removes the deprecated Updated class diagram for the Store interfaceclassDiagram
class Store {
<<interface>>
Search(ctx context.Context, q *v1.Query) ([]search.Result, error)
Walk(ctx context.Context, fn func(obj PT) error) error
WalkByQuery(ctx context.Context, q *v1.Query, fn func(obj PT) error) error
Get(ctx context.Context, id string) (PT, bool, error)
GetByQuery(ctx context.Context, query *v1.Query) ([]*T, error)
GetIDs(ctx context.Context) ([]string, error)
}
note for Store "GetAll method removed"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
Images are ready for the commit at 047b9ce. To use with deploy scripts, first |
b0cb3fd to
8999ee3
Compare
Signed-off-by: Tomasz Janiszewski <tomek@redhat.com>
8999ee3 to
6719e19
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #14947 +/- ##
==========================================
- Coverage 48.96% 48.95% -0.01%
==========================================
Files 2550 2550
Lines 187257 187241 -16
==========================================
- Hits 91684 91662 -22
- Misses 88322 88328 +6
Partials 7251 7251
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Signed-off-by: Tomasz Janiszewski <tomek@redhat.com>
Description
GetAllwas deprecated and removed. There is no need to keep code generation for it.Testing
Automated testing
How I validated my change
CI
Summary by Sourcery
Remove deprecated GetAll generator and related code generation functionality across multiple files
Enhancements:
Chores: