ac-logger 1.2.0 → 1.3.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 +23 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
<a name="1.3.0"></a>
|
|
2
|
+
|
|
3
|
+
# [1.3.0](https://github.com/admiralcloud/ac-logger/compare/v1.2.1..v1.3.0) (2022-04-20 11:46:13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Feature
|
|
7
|
+
|
|
8
|
+
* **Misc:** Add hrLine separator based on HTML tag hr | VD | [d5fffbbcac366d6cb1b326e261c7de35f2803243](https://github.com/admiralcloud/ac-logger/commit/d5fffbbcac366d6cb1b326e261c7de35f2803243)
|
|
9
|
+
Add hrLine separator based on HTML tag hr
|
|
10
|
+
### Chores
|
|
11
|
+
|
|
12
|
+
* **release:** v1.2.0 [ci skip] | [207c29b2f41cebe905abf2634ab51c722a559d16](https://github.com/admiralcloud/ac-logger/commit/207c29b2f41cebe905abf2634ab51c722a559d16)
|
|
13
|
+
|
|
14
|
+
<a name="1.2.1"></a>
|
|
15
|
+
|
|
16
|
+
## [1.2.1](https://github.com/admiralcloud/ac-logger/compare/v1.2.0..v1.2.1) (2022-04-20 11:44:27)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fix
|
|
20
|
+
|
|
21
|
+
* **App:** Packages updated | MP | [b1d460a98b1f7fd49d2fab5b1276df7106e87e9b](https://github.com/admiralcloud/ac-logger/commit/b1d460a98b1f7fd49d2fab5b1276df7106e87e9b)
|
|
22
|
+
Packages updated
|
|
23
|
+
Related issues: [undefined/undefined#master](undefined/browse/master)
|
|
1
24
|
<a name="1.2.0"></a>
|
|
2
25
|
|
|
3
26
|
# [1.2.0](https://github.com/admiralcloud/ac-logger/compare/v1.1.3..v1.2.0) (2021-11-18 17:51:01)
|
package/package.json
CHANGED
|
@@ -3,17 +3,17 @@
|
|
|
3
3
|
"author": "Mark Poepping (https://www.admiralcloud.com)",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "admiralcloud/ac-logger",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.3.0",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"lodash": "^4.17.21",
|
|
9
|
-
"moment": "^2.29.
|
|
10
|
-
"winston": "^3.
|
|
9
|
+
"moment": "^2.29.3",
|
|
10
|
+
"winston": "^3.7.2"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"ac-semantic-release": "^0.
|
|
14
|
-
"eslint": "^
|
|
15
|
-
"expect": "^27.
|
|
16
|
-
"mocha": "^9.
|
|
13
|
+
"ac-semantic-release": "^0.3.0",
|
|
14
|
+
"eslint": "^8.13.0",
|
|
15
|
+
"expect": "^27.5.1",
|
|
16
|
+
"mocha": "^9.2.2",
|
|
17
17
|
"mocha-jenkins-reporter": "^0.4.7"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
@@ -21,6 +21,6 @@
|
|
|
21
21
|
"test-jenkins": "JUNIT_REPORT_PATH=./report.xml mocha --colors --reporter mocha-jenkins-reporter --reporter-options junit_report_name='ACLogger'"
|
|
22
22
|
},
|
|
23
23
|
"engines": {
|
|
24
|
-
"node": ">=
|
|
24
|
+
"node": ">=12.0.0"
|
|
25
25
|
}
|
|
26
26
|
}
|