You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[main@f1298c6] Update AL-Go System Files from microsoft/AL-Go-AppSource@preview - 1a78239 (#21)
## v7.2
### Removed functionality
As stated in [AL-Go
Deprecations](https://aka.ms/algodeprecations#cleanModePreprocessorSymbols),
setting `cleanModePreprocessorSymbols` is no longer supported and will
be ignored by AL-Go for GitHub.
### Security
- Add top-level permissions for _Increment Version Number_ workflow
### Issues
- Issue 1697 Error in CheckForUpdates: "Internet Explorer engine is not
available" when using self-hosted runners
- Issue 1685 HttpError: Resource not accessible by integration
- Issue 1757 Error when signing apps with key vault signing
### Workflow input validation
Some workflow inputs are now validated early in order to avoid workflows
to make modifications like creating a release, when we already should
know that an error will occur later.
### Test settings against a JSON schema
AL-Go for GitHub settings now has a schema. The following line is added
at the beginning to any AL-Go settings files to utilize the schema:
```
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go-Actions/<version>/Actions/settings.schema.json"
```
### Failing pull requests if new warnings are added
By setting failOn to 'newWarning', pull requests will fail if new
warnings are introduced. This feature compares the warnings in the pull
request build against those in the latest successful CI/CD build and
fails if new warnings are detected.
### AL-Go Telemetry
Now AL-Go telemetry also logs `ActionDuration` which makes it possible
to track the duration of the different steps in the AL-Go workflows
(e.g. RunPipeline or Sign)
Co-authored-by: aholstrup1 <aholstrup1@users.noreply.github.com>
Copy file name to clipboardExpand all lines: .github/RELEASENOTES.copy.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,39 @@
1
+
## v7.2
2
+
3
+
### Removed functionality
4
+
5
+
As stated in [AL-Go Deprecations](https://aka.ms/algodeprecations#cleanModePreprocessorSymbols), setting `cleanModePreprocessorSymbols` is no longer supported and will be ignored by AL-Go for GitHub.
6
+
7
+
### Security
8
+
9
+
- Add top-level permissions for _Increment Version Number_ workflow
10
+
11
+
### Issues
12
+
13
+
- Issue 1697 Error in CheckForUpdates: "Internet Explorer engine is not available" when using self-hosted runners
14
+
- Issue 1685 HttpError: Resource not accessible by integration
15
+
- Issue 1757 Error when signing apps with key vault signing
16
+
17
+
### Workflow input validation
18
+
19
+
Some workflow inputs are now validated early in order to avoid workflows to make modifications like creating a release, when we already should know that an error will occur later.
20
+
21
+
### Test settings against a JSON schema
22
+
23
+
AL-Go for GitHub settings now has a schema. The following line is added at the beginning to any AL-Go settings files to utilize the schema:
### Failing pull requests if new warnings are added
30
+
31
+
By setting failOn to 'newWarning', pull requests will fail if new warnings are introduced. This feature compares the warnings in the pull request build against those in the latest successful CI/CD build and fails if new warnings are detected.
32
+
33
+
### AL-Go Telemetry
34
+
35
+
Now AL-Go telemetry also logs `ActionDuration` which makes it possible to track the duration of the different steps in the AL-Go workflows (e.g. RunPipeline or Sign)
0 commit comments