Skip to content

Commit f01dff6

Browse files
feature/story_006: Atomic Aggregation | Bug | GenericReport extensions are not aggregated via addEntry -- automated
1 parent 03e2be3 commit f01dff6

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

release-notes.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@ _An abstract extension system for inspection of Github scopes and settings_
1111
- Repository: [@pkgdist/extensions](https://github.com/pkgdist/extensions)
1212

1313
## ^0.3.5
14-
- Implemented a bug where the repo aggregator was not seeing other extensiobs of the `GenericReportEntry<T>` interface
15-
- Logic change now accepts any generic extension of this class as the report object that is processed.
14+
15+
- Implemented a bug where the repo aggregator was not seeing other extensiobs of
16+
the `GenericReportEntry<T>` interface
17+
- Logic change now accepts any generic extension of this class as the report
18+
object that is processed.
1619

1720
```ts
18-
(this.aggregate as Type.ReportEntries<Type.GenericReportEntry<T>>)
19-
.repos[entry.repo].push(entry)
21+
;(this.aggregate as Type.ReportEntries<Type.GenericReportEntry<T>>)
22+
.repos[entry.repo].push(entry)
2023
```
2124

2225
## ^0.3.4

src/class_reporting.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export class Reporting<T> {
9090
this.aggregate.repos[entry.repo] = []
9191
}
9292

93-
(this.aggregate as Type.ReportEntries<Type.GenericReportEntry<T>>)
93+
;(this.aggregate as Type.ReportEntries<Type.GenericReportEntry<T>>)
9494
.repos[entry.repo].push(entry)
9595

9696
// Trigger all hooks asynchronously (do not block on errors)

src/version.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
21
// This file is auto-generated. Do not edit.
3-
export const generatedVersion = "0.3.5";
2+
export const generatedVersion = '0.3.5'

0 commit comments

Comments
 (0)