Skip to content

Commit

Permalink
Release 5.6
Browse files Browse the repository at this point in the history
Signed-off-by: Clement Verna <[email protected]>
  • Loading branch information
cverna committed Nov 30, 2020
1 parent 82e5d70 commit 0c081ed
Show file tree
Hide file tree
Showing 26 changed files with 91 additions and 56 deletions.
40 changes: 8 additions & 32 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,38 +21,6 @@ pull_request_rules:
- status-success=pip-unit
- status-success=pip-diff-cover
name: default
- actions:
backport:
branches:
- '5.0'
conditions:
- label!=WIP
- label=5.0-backports
name: backport 5.0
- actions:
backport:
branches:
- '5.1'
conditions:
- label!=WIP
- label=5.1-backports
name: backport 5.1
- actions:
backport:
branches:
- '5.2'
conditions:
- label!=WIP
- label=5.2-backports
name: backport 5.2
- actions:
backport:
branches:
- '5.3'
conditions:
- label!=WIP
- label=5.3-backports
name: backport 5.3
- actions:
backport:
branches:
Expand All @@ -69,3 +37,11 @@ pull_request_rules:
- label!=WIP
- label=5.5-backports
name: backport 5.5
- actions:
backport:
branches:
- '5.6'
conditions:
- label!=WIP
- label=5.6-backports
name: backport 5.6
2 changes: 1 addition & 1 deletion bodhi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""Fedora's update manager."""

__version__ = "5.5"
__version__ = "5.6.0"

# This is a regular expression used to match username mentions in comments.
MENTION_RE = r'(?<!\S)(@\w+)'
82 changes: 82 additions & 0 deletions docs/user/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,88 @@ Release notes

.. towncrier release notes start
v5.6
====
This is a feature release.


Dependency changes
^^^^^^^^^^^^^^^^^^

* Drop support for bleach 1.0 api (:pr:`3875`).
* Markdown >= 3.0 is now required (:pr:`4134`).

Server upgrade instructions
^^^^^^^^^^^^^^^^^^^^^^^^^^^

This release contains database migrations. To apply them, run::

$ sudo -u apache /usr/bin/alembic -c /etc/bodhi/alembic.ini upgrade head


Features
^^^^^^^^

* Added a `from_side_tag` bool search parameter for Updates and allow searching
for that and for gating status from WebUI (:pr:`4119`).
* Allow overriding `critpath.stable_after_days_without_negative_karma` based on
release status (:pr:`4135`).
* Users which owns a side-tag can now create updates from that side-tag even if
it contains builds for which they haven't commit access (:issue:`4014`).

Bug fixes
^^^^^^^^^

* Fix encoding of package and user names in search results (:pr:`4104`).
* Fix autotime display on update page (:pr:`4110`).
* Set update.stable_days to 0 for Releases not composed by Bodhi itself
(:pr:`4111`).
* Ignore builds in Unpushed updates when checking for duplicate builds
(:issue:`1809`).
* Make automatic updates obsolete older updates stuck in testing due to failing
gating tests (:issue:`3916`).
* Fix 404 pages for bot users with nonstandard characters in usernames
(:issue:`3993`).
* Fixed documentation build with Sphinx3 (:issue:`4020`).
* Serve the documentation directly from the WSGI application using WhiteNoise.
(:issue:`4066`).
* Updates from side-tag for non-rawhide releases were not pushed to testing
(:issue:`4087`).
* Side-tag updates builds were not editable in the WebUI (:issue:`4122`).
* Fixed "re-trigger tests" button not showed on update page (:issue:`4144`).
* Fixed a crash in automatic_updates handler due to `get_changelog()` returning
an unhandled exception (:issue:`4146`).
* Fixed a crash in automatic_updates handler due to trying access update.alias
after the session was closed (:issue:`4147`).
* Some comments orphaned from their update where causing internal server
errors. We now enforce a not null check so that a comment cannot be created
without associating it to an update. The orphaned comments are removed from
the database by the migration script. (:issue:`4155`).
* Dockerfile for pip CI tests has been fixed (:issue:`4158`).

Development improvements
^^^^^^^^^^^^^^^^^^^^^^^^

* Rename `Release.get_testing_side_tag()` to `get_pending_testing_side_tag()`
to avoid confusion (:pr:`4109`).
* Added F33 to tests pipeline (:pr:`4132`).

Contributors
^^^^^^^^^^^^

The following developers contributed to this release of Bodhi:

* Adam Saleh
* Clement Verna
* Justin Caratzas
* Jonathan Wakely
* Karma Dolkar
* Mattia Verga
* Pierre-Yves Chibon
* Rayan Das
* Sebastian Wojciechowski


v5.5
====
This is a bugfix release.
Expand Down
1 change: 0 additions & 1 deletion news/1809.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/3916.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/3993.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/4014.feature

This file was deleted.

1 change: 0 additions & 1 deletion news/4020.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/4066.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/4087.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/4122.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/4144.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/4146.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/4147.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/4155.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/4158.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/PR3875.dependency

This file was deleted.

1 change: 0 additions & 1 deletion news/PR4104.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/PR4109.dev

This file was deleted.

1 change: 0 additions & 1 deletion news/PR4110.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/PR4111.bug

This file was deleted.

1 change: 0 additions & 1 deletion news/PR4119.feature

This file was deleted.

1 change: 0 additions & 1 deletion news/PR4132.dev

This file was deleted.

1 change: 0 additions & 1 deletion news/PR4134.dependency

This file was deleted.

1 change: 0 additions & 1 deletion news/PR4135.feature

This file was deleted.

1 change: 0 additions & 1 deletion news/summary.migration

This file was deleted.

0 comments on commit 0c081ed

Please sign in to comment.