-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [v1.3.0](https://github.com/ctc-oss/fapolicy-analyzer/releases/tag/v1.3.0) - 2024-02-11 ### Added - Allow rules to be loaded dynamically into a profiling session ([#990](#990)) - Added syntax highlighting to the fapolicyd config editor ([#991](#991)) ### Packaging - Use digest crate for sha256 hashing, removing need for ring crate. ([#984](#984)) - Add a version number to the PDF user guide content and filename. ([#995](#995))
- Loading branch information
Showing
10 changed files
with
55 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{% for section_text, section in sections.items() %}{%- if section %}{{section_text}}{% endif -%} | ||
{% if section %} | ||
{% for category in ['packaging', 'added', 'changed', 'removed', 'fixed' ] if category in section %} | ||
### {{ definitions[category]['name'] }} | ||
|
||
{% if definitions[category]['showcontent'] %} | ||
{% for text, pull_requests in section[category].items() %} | ||
- {{ text }} {{ pull_requests|join(', ') }} | ||
{% endfor %} | ||
{% else %} | ||
- {{ section[category]['']|join(', ') }} | ||
{% endif %} | ||
|
||
{% endfor %}{% else %}No significant changes.{% endif %}{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
Summary: File Access Policy Analyzer | ||
Name: fapolicy-analyzer | ||
Version: 1.2.2 | ||
Version: 1.3.0 | ||
Release: 1%{?dist} | ||
|
||
SourceLicense: GPL-3.0-or-later | ||
|
@@ -128,5 +128,5 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop | |
%ghost %attr(640,root,root) %verify(not md5 size mtime) %{_localstatedir}/log/%{name}/%{name}.log | ||
|
||
%changelog | ||
* Wed Dec 27 2023 John Wass <[email protected]> 1.2.2-1 | ||
* Sat Feb 03 2024 John Wass <[email protected]> 1.3.0-1 | ||
- New release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,22 @@ | ||
[tool.ruff.lint] | ||
ignore = ["E402"] | ||
|
||
[tool.towncrier] | ||
filename = "CHANGELOG.md" | ||
version = "1.3.0" | ||
start_string = "<!-- towncrier release notes start -->\n" | ||
title_format = "## [v{version}](https://github.com/ctc-oss/fapolicy-analyzer/releases/tag/v{version}) - {project_date}" | ||
issue_format = "[#{issue}](https://github.com/ctc-oss/fapolicy-analyzer/pull/{issue})" | ||
underlines = ["", "", ""] | ||
directory = "news" | ||
|
||
[tool.towncrier.fragment.added] | ||
name = "Added" | ||
[tool.towncrier.fragment.changed] | ||
name = "Changed" | ||
[tool.towncrier.fragment.removed] | ||
name = "Removed" | ||
[tool.towncrier.fragment.fixed] | ||
name = "Fixed" | ||
[tool.towncrier.fragment.packaging] | ||
name = "Packaging" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Summary: File Access Policy Analyzer | ||
Name: fapolicy-analyzer | ||
Version: 1.2.2 | ||
Version: 1.3.0 | ||
Release: 1%{?dist} | ||
License: GPL-3.0-or-later | ||
URL: https://github.com/ctc-oss/fapolicy-analyzer | ||
|
@@ -221,5 +221,5 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop | |
%attr(755,root,root) %{_datadir}/applications/%{name}.desktop | ||
|
||
%changelog | ||
* Wed Dec 27 2023 John Wass <[email protected]> 1.2.2-1 | ||
* Sat Feb 03 2024 John Wass <[email protected]> 1.3.0-1 | ||
- New release |