-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCHANGELOG
110 lines (89 loc) · 2.54 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Changed
## [2.7.0] - 2022-04-20
### Changed
- minimum node version 10 (was 8)
- updated dependencies
## [2.6.0] - 2020-12-19
### Changed
- updated dependencies
- updated docs (badges)
### Removed
- travis-ci build pipeline (replaced by github actions)
- removed nodejs 8 & 9 from build pipeline
## [2.5.0] - 2020-04-04
### Added
- added nodejs 13 to test matrix
### Changed
- uses [email protected]
- updated dependencies
- switched to pnpm package manager
- package now only includes production code
## [2.4.0] - 2019-06-07
### Added
- added windows to test matrix
### Changed
- uses [email protected]
- updated dependencies
- fixed type definitions for internal methods
### Removed
- removed support for nodejs 6 & 7
## [2.3.0] - 2019-05-01
### Added
- added MacOS to test matrix
- added support for serialized metrics
- added support for multiple processes
- use `DefaultClusterOptions` as default value for clusterOptions option
- `writer.init()` only called on master process
- events & metrics from forked processes are send to master (if enabled through options)
### Changed
- uses [email protected]
- updated dependencies
- fixed some typos in docs
## [2.2.0] - 2019-03-01
### Changed
- uses [email protected]
- transferred into monorepo
- shrunk package to contain only necessary files
## [2.1.1] - 2019-02-08
### Changed
- updated dependencies
- uses [email protected]
## [2.1.0] - 2018-11-30
### Added
- support for reporting events
### Changed
- added nodejs 11 to playground
- updated dependencies
- uses [email protected]
- set version of transitive dependency event-stream to 3.3.4
## [2.0.0] - 2018-11-04
### Added
- CHANGELOG
- compile and test script for different node versions
### Changed
- compile target from "es2017" to "es6"
- added nodejs 11 to travis.yml
- updated dependencies
- uses [email protected]
- adapted new MetricLogger implementation
## [1.0.0] - 2018-10-20
Initial release.
### Added
- project setup
- README
- typescript config
- lint config
- licensed under MIT license
- basic csv reporter
- mocha testing (with chai, sinon)
- Jenkins pipeline
- NYC code-coverage config
- added editorconfig file
- travis.yml for nodejs 6, 7, 8, 9, 10
- basic playground setup
- uses [email protected]