mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-27 17:17:22 -04:00
Merge branch 'michal/prepare-documentation-for-bind-9.16.46' into 'v9.16.46-release'
Prepare documentation for BIND 9.16.46 See merge request isc-private/bind9!626
This commit is contained in:
commit
cd2bbf7f3e
3 changed files with 13 additions and 22 deletions
|
|
@ -44,6 +44,9 @@ relnotes_issue_or_mr_id_regex = re.compile(rb":gl:`[#!][0-9]+`")
|
|||
release_notes_regex = re.compile(r"doc/(arm|notes)/notes-.*\.(rst|xml)")
|
||||
|
||||
modified_files = danger.git.modified_files
|
||||
affected_files = (
|
||||
danger.git.modified_files + danger.git.created_files + danger.git.deleted_files
|
||||
)
|
||||
mr_labels = danger.gitlab.mr.labels
|
||||
target_branch = danger.gitlab.mr.target_branch
|
||||
is_backport = "Backport" in mr_labels or "Backport::Partial" in mr_labels
|
||||
|
|
@ -341,18 +344,18 @@ if changes_added_lines:
|
|||
# MR.
|
||||
|
||||
release_notes_regex = re.compile(r"doc/(arm|notes)/notes-.*\.(rst|xml)")
|
||||
release_notes_changed = list(filter(release_notes_regex.match, modified_files))
|
||||
release_notes_changed = list(filter(release_notes_regex.match, affected_files))
|
||||
release_notes_label_set = "Release Notes" in mr_labels
|
||||
if not release_notes_changed:
|
||||
if release_notes_label_set:
|
||||
fail(
|
||||
"This merge request has the *Release Notes* label set. "
|
||||
"Add a release note or unset the *Release Notes* label."
|
||||
"Update release notes or unset the *Release Notes* label."
|
||||
)
|
||||
elif "Customer" in mr_labels:
|
||||
warn(
|
||||
"This merge request has the *Customer* label set. "
|
||||
"Add a release note unless the changes introduced are trivial."
|
||||
"Update release notes unless the changes introduced are trivial."
|
||||
)
|
||||
if release_notes_changed and not release_notes_label_set:
|
||||
fail(
|
||||
|
|
@ -361,7 +364,9 @@ if release_notes_changed and not release_notes_label_set:
|
|||
)
|
||||
|
||||
if release_notes_changed:
|
||||
notes_added_lines = added_lines(target_branch, release_notes_changed)
|
||||
modified_or_new_files = danger.git.modified_files + danger.git.created_files
|
||||
release_notes_added = list(filter(release_notes_regex.match, modified_or_new_files))
|
||||
notes_added_lines = added_lines(target_branch, release_notes_added)
|
||||
identifiers_found = filter(relnotes_issue_or_mr_id_regex.search, notes_added_lines)
|
||||
if notes_added_lines and not any(identifiers_found):
|
||||
warn("No valid issue/MR identifiers found in added release notes.")
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ for Microsoft Windows operating systems.
|
|||
|
||||
.. include:: ../notes/notes-known-issues.rst
|
||||
|
||||
.. include:: ../notes/notes-current.rst
|
||||
.. include:: ../notes/notes-9.16.46.rst
|
||||
.. include:: ../notes/notes-9.16.45.rst
|
||||
.. include:: ../notes/notes-9.16.44.rst
|
||||
.. include:: ../notes/notes-9.16.43.rst
|
||||
|
|
|
|||
|
|
@ -41,26 +41,12 @@ Security Fixes
|
|||
ISC would like to thank Infoblox for bringing this vulnerability to
|
||||
our attention. :gl:`#4383`
|
||||
|
||||
New Features
|
||||
~~~~~~~~~~~~
|
||||
|
||||
- None.
|
||||
|
||||
Removed Features
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
||||
- The support for AES algorithm for DNS cookies has been deprecated.
|
||||
:gl:`#4421`
|
||||
|
||||
Feature Changes
|
||||
~~~~~~~~~~~~~~~
|
||||
|
||||
- None.
|
||||
|
||||
Bug Fixes
|
||||
~~~~~~~~~
|
||||
|
||||
- None.
|
||||
- Support for using AES as the DNS COOKIE algorithm (``cookie-algorithm
|
||||
aes;``) has been deprecated and will be removed in a future release.
|
||||
Please use the current default, SipHash-2-4, instead. :gl:`#4421`
|
||||
|
||||
Known Issues
|
||||
~~~~~~~~~~~~
|
||||
Loading…
Reference in a new issue