File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ Please see [CONTRIBUTING.md](./CONTRIBUTING.md) on how to contribute to Cucumber
11
11
### Added
12
12
- Formatters create sub-directory automatically instead of failing ([ #2266 ] ( https://github.com/cucumber/cucumber-js/pull/2266 ) )
13
13
14
+ ### Changed
15
+ - Change hashes type from ` any ` to ` Record<string, string> ` in ` DataTable ` ([ #2270 ] ( https://github.com/cucumber/cucumber-js/pull/2270 ) )
16
+
14
17
## [ 9.0.1] - 2023-03-15
15
18
### Fixed
16
19
- Ensure feature paths are properly deduplicated ([ #2258 ] ( https://github.com/cucumber/cucumber-js/pull/2258 ) )
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default class DataTable {
13
13
}
14
14
}
15
15
16
- hashes ( ) : any [ ] {
16
+ hashes ( ) : Record < string , string > [ ] {
17
17
const copy = this . raw ( )
18
18
const keys = copy [ 0 ]
19
19
const valuesArray = copy . slice ( 1 )
You can’t perform that action at this time.
0 commit comments