@widergy/polling-handling 1.6.1 → 1.7.0
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.
- package/CHANGELOG.md +21 -0
- package/README.md +2 -0
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
# [1.7.0](https://github.com/widergy/polling-handling/compare/v1.6.2...v1.7.0) (2023-09-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* new version ([#15](https://github.com/widergy/polling-handling/issues/15)) ([b236c55](https://github.com/widergy/polling-handling/commit/b236c55c507ce5a01e3e929fe366ad79784744d6))
|
|
7
|
+
* readme change ([#16](https://github.com/widergy/polling-handling/issues/16)) ([0ed0936](https://github.com/widergy/polling-handling/commit/0ed09361b2cf05a9f0a6fab01060862941107b41))
|
|
8
|
+
|
|
9
|
+
## [1.6.2](https://github.com/widergy/polling-handling/compare/v1.6.1...v1.6.2) (2023-09-22)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* create auto_assign.yml ([65c3c52](https://github.com/widergy/polling-handling/commit/65c3c52f3961f81869711c7fb2e503271c432eed))
|
|
15
|
+
* create pull_request_template.md ([7dd9d1f](https://github.com/widergy/polling-handling/commit/7dd9d1f51e44978649ac30e9df04b6bbc5c13383))
|
|
16
|
+
* delete auto-assign config ([e02ef6f](https://github.com/widergy/polling-handling/commit/e02ef6f76a8bb6a7aa7d893f39207ce5f785ad08))
|
|
17
|
+
* delete semantic.yml ([8b24b30](https://github.com/widergy/polling-handling/commit/8b24b309c8ed99b52e2c054e24b85895e87bf22e))
|
|
18
|
+
* semver web util ([#14](https://github.com/widergy/polling-handling/issues/14)) ([7f33154](https://github.com/widergy/polling-handling/commit/7f33154812ff76450bded69a5f80f266b0f48169))
|
|
19
|
+
* update energy-bot.yml ([169e0ce](https://github.com/widergy/polling-handling/commit/169e0ced956346bbcc8656882557218101cb3f5e))
|
|
20
|
+
* update energybot config ([d17f5c6](https://github.com/widergy/polling-handling/commit/d17f5c6ff2c76cde112e437f8a9c92c84bea2721))
|
|
21
|
+
|
|
1
22
|
## [1.6.1](https://github.com/widergy/polling-handling/compare/v1.6.0...v1.6.1) (2021-07-06)
|
|
2
23
|
|
|
3
24
|
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@widergy/polling-handling",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Utility GO! Polling Handling",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"apisauce": "^0.14.1",
|
|
44
|
-
"@widergy/web-utils": "
|
|
44
|
+
"@widergy/web-utils": "^1.0.0"
|
|
45
45
|
},
|
|
46
46
|
"husky": {
|
|
47
47
|
"hooks": {
|
|
@@ -49,6 +49,9 @@
|
|
|
49
49
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
|
+
"resolutions": {
|
|
53
|
+
"@types/node": "^12.0.0"
|
|
54
|
+
},
|
|
52
55
|
"release": {
|
|
53
56
|
"plugins": [
|
|
54
57
|
"@semantic-release/commit-analyzer",
|