worker-timers 8.0.1 → 8.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +11 -11
package/README.md CHANGED
@@ -65,3 +65,7 @@ This package is intended to be used in the browser and requires the browser to h
65
65
  ## Angular (& Zone.js)
66
66
 
67
67
  If `worker-timers` is used inside of an Angular app and Zone.js (which is the default) is used to detect changes, the behavior of `worker-timers` can be confusing. Angular is using Zone.js which is patching the native `setInterval()` and `setTimeout()` functions to get notified about the invocation of their callback functions. But Angular (more specifically Zone.js) is not aware of `worker-timers` and doesn't get notified about any callback invocations. Therefore Angular needs to be notified manually about state changes that occur inside of a callback function which was scheduled with the help of `worker-timers`.
68
+
69
+ ## Security contact information
70
+
71
+ To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure.
package/package.json CHANGED
@@ -15,18 +15,18 @@
15
15
  }
16
16
  ],
17
17
  "dependencies": {
18
- "@babel/runtime": "^7.24.7",
18
+ "@babel/runtime": "^7.24.8",
19
19
  "tslib": "^2.6.3",
20
- "worker-timers-broker": "^7.0.2",
21
- "worker-timers-worker": "^8.0.1"
20
+ "worker-timers-broker": "^7.0.3",
21
+ "worker-timers-worker": "^8.0.2"
22
22
  },
23
23
  "description": "A replacement for setInterval() and setTimeout() which works in unfocused windows.",
24
24
  "devDependencies": {
25
- "@babel/cli": "^7.24.7",
26
- "@babel/core": "^7.24.7",
25
+ "@babel/cli": "^7.24.8",
26
+ "@babel/core": "^7.24.8",
27
27
  "@babel/plugin-external-helpers": "^7.24.7",
28
28
  "@babel/plugin-transform-runtime": "^7.24.7",
29
- "@babel/preset-env": "^7.24.7",
29
+ "@babel/preset-env": "^7.24.8",
30
30
  "@babel/register": "^7.24.6",
31
31
  "@commitlint/cli": "^19.3.0",
32
32
  "@commitlint/config-angular": "^19.3.0",
@@ -37,7 +37,7 @@
37
37
  "commitizen": "^4.3.0",
38
38
  "cz-conventional-changelog": "^3.3.0",
39
39
  "eslint": "^8.57.0",
40
- "eslint-config-holy-grail": "^59.0.11",
40
+ "eslint-config-holy-grail": "^59.0.14",
41
41
  "grunt": "^1.6.1",
42
42
  "grunt-cli": "^1.4.3",
43
43
  "grunt-sh": "^0.2.1",
@@ -48,7 +48,7 @@
48
48
  "karma-mocha": "^2.0.1",
49
49
  "karma-sauce-launcher": "^4.3.6",
50
50
  "karma-sinon-chai": "^2.0.2",
51
- "karma-webkit-launcher": "^2.4.0",
51
+ "karma-webkit-launcher": "^2.6.0",
52
52
  "karma-webpack": "^5.0.1",
53
53
  "lint-staged": "^15.2.7",
54
54
  "load-grunt-config": "^4.0.1",
@@ -56,7 +56,7 @@
56
56
  "mocha": "^10.6.0",
57
57
  "prettier": "^3.3.2",
58
58
  "rimraf": "^5.0.8",
59
- "rollup": "^4.18.0",
59
+ "rollup": "^4.18.1",
60
60
  "sinon": "^17.0.2",
61
61
  "sinon-chai": "^3.7.0",
62
62
  "terser-webpack-plugin": "^5.3.10",
@@ -65,7 +65,7 @@
65
65
  "tslint": "^6.1.3",
66
66
  "tslint-config-holy-grail": "^56.0.2",
67
67
  "typescript": "^5.5.3",
68
- "webpack": "^5.92.1",
68
+ "webpack": "^5.93.0",
69
69
  "webpack-cli": "^5.1.4"
70
70
  },
71
71
  "files": [
@@ -102,5 +102,5 @@
102
102
  "test": "grunt lint && grunt test"
103
103
  },
104
104
  "types": "build/es2019/module.d.ts",
105
- "version": "8.0.1"
105
+ "version": "8.0.2"
106
106
  }