1
|
# Change Log
|
2
|
All notable changes to this project will be documented in this file.
|
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
4
|
|
5
|
## 2.0.11 - 2019-08-10
|
6
|
|
7
|
### Fixed
|
8
|
|
9
|
* License metadata in `package.json` now in standard SPDX format
|
10
|
|
11
|
## 2.0.10 - 2018-04-18
|
12
|
|
13
|
### Fixed
|
14
|
|
15
|
* Guard `global` usage in scope to avoid reference errors
|
16
|
|
17
|
## 2.0.9 - 2018-04-17
|
18
|
|
19
|
### Fixed
|
20
|
|
21
|
* Guard `self` usage in scope to avoid Webpack reference errors
|
22
|
|
23
|
## 2.0.8 - 2018-04-17
|
24
|
|
25
|
### Fixed
|
26
|
|
27
|
* Worker support now explicitly references `self` and `window` rather then using
|
28
|
`this` implicitly to fix issues in Webpack builds.
|
29
|
|
30
|
## 2.0.7 - 2018-04-16
|
31
|
|
32
|
### Fixed
|
33
|
|
34
|
* Support `setTimeout` / `setInterval` in workers
|
35
|
|
36
|
## 2.0.6 - 2018-01-24
|
37
|
|
38
|
### Fixed
|
39
|
|
40
|
* Use `typeof` to search globals more carefully.
|
41
|
|
42
|
## 2.0.5 - 2018-01-23
|
43
|
|
44
|
### Fixed
|
45
|
|
46
|
* Try harder to retrieve `setImmediate` and `clearImmediate` in esoteric
|
47
|
environments.
|
48
|
|
49
|
## 2.0.4 - 2017-08-14
|
50
|
|
51
|
### Fixed
|
52
|
|
53
|
* Revert `setImmediate` and `clearImmediate` changes from 2.0.3 because they
|
54
|
appear to break Webpack.
|
55
|
|
56
|
## 2.0.3 - 2017-07-31
|
57
|
|
58
|
### Fixed
|
59
|
|
60
|
* `setImmediate` and `clearImmediate` are indirected through the `global` module
|
61
|
for better coverage of esoteric environments.
|
62
|
|
63
|
## 2.0.2 - 2016-10-19
|
64
|
|
65
|
### Added
|
66
|
|
67
|
* `.npmignore` now excludes example scripts, reducing package size
|
68
|
|
69
|
## 2.0.1 - 2016-06-21
|
70
|
|
71
|
### Fixed
|
72
|
* `clearTimeout` and `clearInterval` no longer throws when passed null or
|
73
|
undefined instead of the timeout token.
|
74
|
|
75
|
## 2.0.0 - 2016-03-28
|
76
|
|
77
|
### Changed
|
78
|
* `setImmediate` and `clearImmediate` now use the `setimmediate` module which
|
79
|
has better cross-browser coverage. In particular, it resolves a crash in
|
80
|
Safari. The `setimmediate` module adds these methods to the global
|
81
|
immediately, so a major version bump seems safest.
|
82
|
|
83
|
## 1.4.2 - 2015-12-08
|
84
|
|
85
|
### Added
|
86
|
* Metadata used by `jspm` in `package.json`
|
87
|
|
88
|
## 1.4.1 - 2015-05-10
|
89
|
|
90
|
### Changed
|
91
|
* Update `process` dependency
|
92
|
|
93
|
## 1.4.0 - 2015-02-23
|
94
|
|
95
|
### Added
|
96
|
* Link to `timers-browserify-full`, which offers a larger, but much more exact,
|
97
|
version of Node's `timers` library
|
98
|
|
99
|
### Changed
|
100
|
* `setTimeout` and `setInterval` return objects with the same API as the Node
|
101
|
implementation, instead of just IDs
|
102
|
|
103
|
### Fixed
|
104
|
* `active` implementation actually has an effect, as in Node
|
105
|
* Replaced usages of `apply` that break in IE 8
|
106
|
|
107
|
## 1.3.0 - 2015-02-04
|
108
|
|
109
|
### Changed
|
110
|
* Prefer native versions of `setImmediate` and `clearImmediate` if they exist
|
111
|
|
112
|
## 1.2.0 - 2015-01-02
|
113
|
|
114
|
### Changed
|
115
|
* Update `process` dependency
|
116
|
|
117
|
## 1.1.0 - 2014-08-26
|
118
|
|
119
|
### Added
|
120
|
* `clearImmediate` available to undo `setImmediate`
|
121
|
|
122
|
## 1.0.3 - 2014-06-30
|
123
|
|
124
|
### Fixed
|
125
|
* Resume returning opaque IDs from `setTimeout` and `setInterval`
|
126
|
|
127
|
## 1.0.2 - 2014-06-30
|
128
|
|
129
|
### Fixed
|
130
|
* Pass `window` explicitly to `setTimeout` and others to resolve an error in
|
131
|
Chrome
|
132
|
|
133
|
## 1.0.1 - 2013-12-28
|
134
|
|
135
|
### Changed
|
136
|
* Replaced `setimmediate` dependency with `process` for the `nextTick` shim
|
137
|
|
138
|
## 1.0.0 - 2013-12-10
|
139
|
|
140
|
### Added
|
141
|
* Guard against undefined globals like `setTimeout` in some environments
|
142
|
|
143
|
## 0.0.0 - 2012-05-30
|
144
|
|
145
|
### Added
|
146
|
* Basic functionality for initial release
|