Skip to content

Commit

Permalink
Release Review Board 6.0 Beta 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
chipx86 committed Apr 4, 2023
1 parent 55a4036 commit e55b22a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion contrib/docker/examples/docker-compose.mysql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ services:
# This should not be accessed directly. Instead, please access the frontend
# nginx server.
reviewboard:
image: beanbag/reviewboard:5.0
image: beanbag/reviewboard:6.0b1
depends_on:
- db
- memcached
Expand Down
2 changes: 1 addition & 1 deletion contrib/docker/examples/docker-compose.postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ services:
# This should not be accessed directly. Instead, please access the frontend
# nginx server.
reviewboard:
image: beanbag/reviewboard:5.0
image: beanbag/reviewboard:6.0b1
depends_on:
- db
- memcached
Expand Down
23 changes: 12 additions & 11 deletions docs/releasenotes/6.0-beta-1.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
.. default-intersphinx:: djblets4.x rb6.x


=====================================
Review Board 6.0 Beta 1 Release Notes
=====================================

**Release date**: TBD
**Release date**: April 4, 2023

This release contains all bug fixes and features from Review Board version
:doc:`5.0.4 <5.0.4>`.
Expand All @@ -13,7 +14,7 @@ This release contains all bug fixes and features from Review Board version
Installation/Upgrade
====================

Review Board 6.0 Beta 1 is compatible with Python 3.7-3.11.
Review Board 6.0 Beta 1 is compatible with Python 3.7 - 3.11.

Follow our :ref:`installation guide <installing-reviewboard-toc>` to prepare
your system for Review Board to to upgrade your existing install.
Expand Down Expand Up @@ -68,8 +69,8 @@ Upgrade Notes
Packaging
=========

* Review Board 6.0 beta 1 supports Python 3.7-3.11. Due to Python's end of life
schedule, it's likely that 6.0 final will be 3.8-3.11.
* Review Board 6.0 beta 1 supports Python 3.7 - 3.11. Due to Python's end of
life schedule, it's likely that 6.0 final will be 3.8 - 3.11.

* :pypi:`Djblets` 4.0 beta 1 is required.

Expand Down Expand Up @@ -143,15 +144,15 @@ Bug Fixes
Known Issues
============

* When a review request is open in multiple browser tabs/windows, if the review
is discarded from one tab, attempts to create or edit comments from another tab
will result in errors.
* When a review request is open in multiple browser tabs/windows, if the
review is discarded from one tab, attempts to create or edit comments from
another tab will result in errors.

This bug was technically present in earlier versions, but due to the way things
are loaded from the server, it's now a lot easier to hit.
This bug was technically present in earlier versions, but due to the way
things are loaded from the server, it's now a lot easier to hit.

The best way to avoid this for now is to avoid opening the same review request
in multiple browser tabs.
The best way to avoid this for now is to avoid opening the same review
request in multiple browser tabs.


Extensions and Internal API Changes
Expand Down
2 changes: 1 addition & 1 deletion reviewboard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#:
#: (Major, Minor, Micro, Patch, alpha/beta/rc/final, Release Number, Released)
#:
VERSION = (6, 0, 0, 0, 'alpha', 0, False)
VERSION = (6, 0, 0, 0, 'beta', 1, True)


def get_version_string():
Expand Down

0 comments on commit e55b22a

Please sign in to comment.