diff options
22 files changed, 40 insertions, 30 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c46ff20d..5db85fb6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,46 @@ Changelog --------- +0.9.0rc1 July 10 +++++++++++++++++ + +Features +~~~~~~~~ +- `#5526 <https://leap.se/code/issues/5526>`_: Make "check" button selected by default. +- `#6359 <https://leap.se/code/issues/6359>`_: Adapt bitmask to the new events api on leap.common. +- `#6360 <https://leap.se/code/issues/6360>`_: Use txzmq in backend. +- `#6368 <https://leap.se/code/issues/6368>`_: Add support to the new async-api of keymanager. +- `#6683 <https://leap.se/code/issues/6683>`_: Add ability to generate sumo tarball. +- `#6713 <https://leap.se/code/issues/6713>`_: Add support for xfce-polkit agent. +- `#6876 <https://leap.se/code/issues/6876>`_: Update api port for pinned riseup. +- `#7139 <https://leap.se/code/issues/7139>`_: Use logbook zmq handler to centralize logging. +- `#7140 <https://leap.se/code/issues/7140>`_: Implement a thread-safe zmq handler for logbook. +- `#7141 <https://leap.se/code/issues/7141>`_: Add log handler to display colored logs on the terminal. +- `#7142 <https://leap.se/code/issues/7142>`_: Add log handler to store logs on bitmask.log. +- `#7143 <https://leap.se/code/issues/7143>`_: Adapt existing log filter/silencer to the new logbook handler. +- `#7144 <https://leap.se/code/issues/7144>`_: Replace logging handler with logbook handler bitmask-wide. +- `#7162 <https://leap.se/code/issues/7162>`_: Log LSB-release info if available. +- `#7180 <https://leap.se/code/issues/7180>`_: Add log rotation for bitmask.log. +- `#7184 <https://leap.se/code/issues/7184>`_: Forward twisted logs to logging and handle logging logs with logbook. +- Add support to the new async-api of soledad + +Bugfixes +~~~~~~~~ +- `#6418 <https://leap.se/code/issues/6418>`_: Cannot change preseeded providers if checks for one fail. +- `#6424 <https://leap.se/code/issues/6424>`_: Do not disable autostart if the quit is triggered by a system logout. +- `#6541 <https://leap.se/code/issues/6541>`_: Client must honor the ports specified in eip-service.json. +- `#6654 <https://leap.se/code/issues/6654>`_: Regression fix, login attempt is made against previously selected provider. +- `#6682 <https://leap.se/code/issues/6682>`_: Handle user cancel keyring open operation, this prevents a bitmask freeze. +- `#6894 <https://leap.se/code/issues/6894>`_: Change 'ip' command location to support Fedora/RHEL distros. +- `#7093 <https://leap.se/code/issues/7093>`_: Fix controller attribute error. +- `#7126 <https://leap.se/code/issues/7126>`_: Don't run the event server on the backend for the standalone bundle since the launcher takes care of that. +- `#7185 <https://leap.se/code/issues/7185>`_: Log contains exported PGP Private Key. +- `#7222 <https://leap.se/code/issues/7222>`_: Run the zmq log subscriber in the background to avoid hitting the zmq's buffer limits. +- `#6536 <https://leap.se/code/issues/6536>`_, `#6568 <https://leap.se/code/issues/6568>`_, `#6691 <https://leap.se/code/issues/6691>`_: Refactor soledad sync to do it the twisted way. +- Fix the bootstrap script for developers so it works on Fedora/RHEL systems where there is /usr/lib64 for python libs. +- Fix soledad bootstrap sync retries. + + 0.8.1 February 25 +++++++++++++++++ diff --git a/changes/bug-6418_re-enable-providers-list-on-check-failure b/changes/bug-6418_re-enable-providers-list-on-check-failure deleted file mode 100644 index 450bac25..00000000 --- a/changes/bug-6418_re-enable-providers-list-on-check-failure +++ /dev/null @@ -1 +0,0 @@ -- Cannot change preseeded providers if checks for one fail (Bug #6418) diff --git a/changes/bug-6541_honor-ports-on-eip-service b/changes/bug-6541_honor-ports-on-eip-service deleted file mode 100644 index 97b4c0b5..00000000 --- a/changes/bug-6541_honor-ports-on-eip-service +++ /dev/null @@ -1 +0,0 @@ - Client must honor the ports specified in eip-service.json (Bug #6541) diff --git a/changes/bug-6654_use-correct-provider b/changes/bug-6654_use-correct-provider deleted file mode 100644 index 511e2fea..00000000 --- a/changes/bug-6654_use-correct-provider +++ /dev/null @@ -1 +0,0 @@ -- #6654: Regression fix, login attempt is made against previously selected provider. diff --git a/changes/bug-6682_failure-to-unlock-keyring-freezes-bitmask b/changes/bug-6682_failure-to-unlock-keyring-freezes-bitmask deleted file mode 100644 index d6d22b4a..00000000 --- a/changes/bug-6682_failure-to-unlock-keyring-freezes-bitmask +++ /dev/null @@ -1 +0,0 @@ -- Handle user cancel keyring open operation, this prevents a bitmask freeze. Closes bug #6682. diff --git a/changes/bug-6894_change-ip-command-location b/changes/bug-6894_change-ip-command-location deleted file mode 100644 index f141fc90..00000000 --- a/changes/bug-6894_change-ip-command-location +++ /dev/null @@ -1 +0,0 @@ -- Change 'ip' command location to support Fedora/RHEL distros. Closes #6894. diff --git a/changes/bug-7126_ensure-server-breaks b/changes/bug-7126_ensure-server-breaks deleted file mode 100644 index 00785ede..00000000 --- a/changes/bug-7126_ensure-server-breaks +++ /dev/null @@ -1 +0,0 @@ -- Don't run the event server on the backend for the standalone bundle since the launcher takes care of that. Closes #7126. diff --git a/changes/bug-7185_log-contains-exported-pgp-private-key b/changes/bug-7185_log-contains-exported-pgp-private-key deleted file mode 100644 index 1515cc3a..00000000 --- a/changes/bug-7185_log-contains-exported-pgp-private-key +++ /dev/null @@ -1 +0,0 @@ -- Log contains exported PGP Private Key. Closes bug #7185. diff --git a/changes/bug-7222_run-background-zmq-subscriber b/changes/bug-7222_run-background-zmq-subscriber deleted file mode 100644 index d074d005..00000000 --- a/changes/bug-7222_run-background-zmq-subscriber +++ /dev/null @@ -1 +0,0 @@ -- Run the zmq log subscriber in the background to avoid hitting the zmq's buffer limits. Closes #7222. diff --git a/changes/bug-syncing_retry b/changes/bug-syncing_retry deleted file mode 100644 index 5a784a0c..00000000 --- a/changes/bug-syncing_retry +++ /dev/null @@ -1 +0,0 @@ -- Fix soledad bootstrap sync retries. diff --git a/changes/bug_7093-fix-controller-attribute-error b/changes/bug_7093-fix-controller-attribute-error deleted file mode 100644 index 77161e46..00000000 --- a/changes/bug_7093-fix-controller-attribute-error +++ /dev/null @@ -1 +0,0 @@ -- Fix controller attribute error. Closes: #7093 diff --git a/changes/bug_fix-bitmask-autostart b/changes/bug_fix-bitmask-autostart deleted file mode 100644 index ee72c9f2..00000000 --- a/changes/bug_fix-bitmask-autostart +++ /dev/null @@ -1 +0,0 @@ -- Do not disable autostart if the quit is triggered by a system logout. Resolves Bug #6424. diff --git a/changes/bug_lib64-path-fix-for-bootstrap-script b/changes/bug_lib64-path-fix-for-bootstrap-script deleted file mode 100644 index 4e4400c1..00000000 --- a/changes/bug_lib64-path-fix-for-bootstrap-script +++ /dev/null @@ -1 +0,0 @@ -- Bugfix: Fix the bootstrap script for developers so it works on Fedora/RHEL systems where there is /usr/lib64 for python libs. diff --git a/changes/feature-5526_make-check-button-selected b/changes/feature-5526_make-check-button-selected deleted file mode 100644 index fa340849..00000000 --- a/changes/feature-5526_make-check-button-selected +++ /dev/null @@ -1 +0,0 @@ -- make "check" button selected by default (Feature #5526) diff --git a/changes/feature-6713_add-support-for-xfce-polkit b/changes/feature-6713_add-support-for-xfce-polkit deleted file mode 100644 index dca8a3c0..00000000 --- a/changes/feature-6713_add-support-for-xfce-polkit +++ /dev/null @@ -1 +0,0 @@ -- Add support for xfce-polkit agent (Feature #6713) diff --git a/changes/feature-7162_log_lsb_release_info b/changes/feature-7162_log_lsb_release_info deleted file mode 100644 index 3e7b25e5..00000000 --- a/changes/feature-7162_log_lsb_release_info +++ /dev/null @@ -1 +0,0 @@ -- Log LSB-release info if available. Closes: #7162 diff --git a/changes/feature_6360_use-txzmq-in-backend b/changes/feature_6360_use-txzmq-in-backend deleted file mode 100644 index 6703f02b..00000000 --- a/changes/feature_6360_use-txzmq-in-backend +++ /dev/null @@ -1 +0,0 @@ -- Use txzmq in backend (closes #6360). diff --git a/changes/feature_adapt-to-new-events-on-common b/changes/feature_adapt-to-new-events-on-common deleted file mode 100644 index 2cd3ea3e..00000000 --- a/changes/feature_adapt-to-new-events-on-common +++ /dev/null @@ -1 +0,0 @@ -- Adapt bitmask to the new events api on leap.common. Related to #6359. diff --git a/changes/feature_async-api b/changes/feature_async-api deleted file mode 100644 index 50694f58..00000000 --- a/changes/feature_async-api +++ /dev/null @@ -1,3 +0,0 @@ -- Add support to the new async-api of soledad -- Add support to the new async-api of keymanager (Closes: 6368) -- Refactor soledad sync to do it the twisted way (Closes: #6536, #6691, #6658) diff --git a/changes/feature_sumo-tarball b/changes/feature_sumo-tarball deleted file mode 100644 index c4da0aa5..00000000 --- a/changes/feature_sumo-tarball +++ /dev/null @@ -1 +0,0 @@ -- Bug #6683: Add ability to generate sumo tarball. diff --git a/changes/feature_update-api-port-pinned-riseup b/changes/feature_update-api-port-pinned-riseup deleted file mode 100644 index e61df028..00000000 --- a/changes/feature_update-api-port-pinned-riseup +++ /dev/null @@ -1 +0,0 @@ -- Update api port for pinned riseup. Related to bug #6876. diff --git a/changes/new-zmq-logger b/changes/new-zmq-logger deleted file mode 100644 index 12774d6f..00000000 --- a/changes/new-zmq-logger +++ /dev/null @@ -1,8 +0,0 @@ -- Feature #7139 - Use logbook zmq handler to centralize logging -- Feature #7140 - Implement a thread-safe zmq handler for logbook -- Feature #7141 - Add log handler to display colored logs on the terminal -- Feature #7142 - Add log handler to store logs on bitmask.log -- Feature #7143 - Adapt existing log filter/silencer to the new logbook handler -- Feature #7144 - Replace logging handler with logbook handler bitmask-wide -- Feature #7180 - Add log rotation for bitmask.log -- Feature #7184 - Forward twisted logs to logging and handle logging logs with logbook |