File tree Expand file tree Collapse file tree 6 files changed +47
-4
lines changed Expand file tree Collapse file tree 6 files changed +47
-4
lines changed Original file line number Diff line number Diff line change 40
40
npm run dev:pre-commit
41
41
git --no-pager diff
42
42
[[ 0 -eq $(git status --porcelain | wc -l) ]]
43
+
44
+ # Upload Mega-Linter artifacts
45
+ - name : Archive production artifacts
46
+ if : failure()
47
+ uses : actions/upload-artifact@v3
48
+ with :
49
+ name : Expected sources
50
+ path : |
51
+ docs/
52
+ groovy/
53
+ lib/
Original file line number Diff line number Diff line change 55
55
56
56
# Upload Mega-Linter artifacts
57
57
- name : Archive production artifacts
58
- if : ${{ success() }} || ${{ failure() }}
58
+ if : success() || failure()
59
59
uses : actions/upload-artifact@v3
60
60
with :
61
61
name : Mega-Linter reports
Original file line number Diff line number Diff line change @@ -6,15 +6,13 @@ FILTER_REGEX_EXCLUDE: (lib/example|\.github|\.vscode|pull_request_template|docs/
6
6
DISABLE :
7
7
- COPYPASTE
8
8
- CSS
9
+ JAVASCRIPT_DEFAULT_STYLE : prettier
9
10
DISABLE_LINTERS :
10
11
- JAVASCRIPT_STANDARD
11
- - REPOSITORY_TRIVY
12
- - SPELL_PROSELINT
13
12
DISABLE_ERRORS_LINTERS :
14
13
- REPOSITORY_SEMGREP
15
14
FLAVOR_SUGGESTIONS : false
16
15
JAVASCRIPT_ES_FILE_NAME : " LINTER_DEFAULT"
17
- PRINT_ALL_FILES : false
18
16
GITHUB_STATUS_REPORTER : false
19
17
PRE_COMMANDS :
20
18
- continue_if_failed : false
Original file line number Diff line number Diff line change
1
+ DS002
2
+ DS026
Original file line number Diff line number Diff line change 2
2
3
3
## UNRELEASED
4
4
5
+ - Add your updates here :)
6
+
7
+ ## [ 14.0.0] 2023-12-16
8
+
9
+ - Fix data race on stdout capture which was corrupting the responses for overlapping requests by using a capturing plugin.
10
+ - Fix data race on threads read and write which could result in missed cancellations and re-enable cancellation processing.
11
+ - Ensure that threads are always removed in the case of write response exception.
12
+ - Switch to jackson to enable efficient JSON encoding and decoding including raw embedding of CodeNarc result to avoid unnecessary processing.
13
+ - Split out HTTP filters to their own files.
14
+ - Use typed variables instead of def per linter recommendation.
15
+ - Add early test for missing base directory to avoid running linter unnecessarily.
16
+ - Fix parse failures for files which contain classes that only non-zero argument constructors.
17
+ - Add gzip compression to reduce size of network traffic to improve performance
18
+ - CI: Enhance MegaLinter config
19
+ - CI: Upload expected sources as artifact if Check for changes job fails
20
+
5
21
## [ 13.0.2] 2023-12-07
6
22
7
23
- Remove useless console.log in sources.
Original file line number Diff line number Diff line change 2
2
3
3
## UNRELEASED
4
4
5
+ - Add your updates here :)
6
+
7
+ ## [ 14.0.0] 2023-12-16
8
+
9
+ - Fix data race on stdout capture which was corrupting the responses for overlapping requests by using a capturing plugin.
10
+ - Fix data race on threads read and write which could result in missed cancellations and re-enable cancellation processing.
11
+ - Ensure that threads are always removed in the case of write response exception.
12
+ - Switch to jackson to enable efficient JSON encoding and decoding including raw embedding of CodeNarc result to avoid unnecessary processing.
13
+ - Split out HTTP filters to their own files.
14
+ - Use typed variables instead of def per linter recommendation.
15
+ - Add early test for missing base directory to avoid running linter unnecessarily.
16
+ - Fix parse failures for files which contain classes that only non-zero argument constructors.
17
+ - Add gzip compression to reduce size of network traffic to improve performance
18
+ - CI: Enhance MegaLinter config
19
+ - CI: Upload expected sources as artifact if Check for changes job fails
20
+
5
21
## [ 13.0.2] 2023-12-07
6
22
7
23
- Remove useless console.log in sources.
You can’t perform that action at this time.
0 commit comments