15
0
forked from pool/python-ara

- update to 1.7.0:

* Update bootstrap CSS from 4.6.0 to 5.3.0 and fix broken layout
    and components as a result of the update
  * Removed separate light/dark themes via bootstrap-darkly and
    bootstrap-flatly: bootstrap 5.3 features a new built-in dark
    theme
  * Re-worked the dark/light theme selection to match the new
    bootstrap built-in dark theme including pygments highlighting
    for pretty-printed output
  * Removed jquery, it is no longer required with bootstrap
  * Re-worked implementation of file line highlighting since it
    relied on jquery
  * Fixed tooltip implementation (i.e, for task tags) since the
    implementation in bootstrap had changed
  * Large chunks of templating were moved out to partials/tables and
    partials/search in order to improve readability.
  * Round of template cleanups and fixes as reported by djlint
  * Will continue to be a work in progress to simplify and standardize
    templates.
  * Raised the requirement on django from >=3.2,<3.3 to >=3.2,<4.3 to
    allow installation with the latest LTS release of django.
   * Raised the requirement on python from >=3.6 to >=3.8 to accomodate
    django 4.2.
  * Ignored Django warning about the lack of a STATIC_ROOT directory.
    ara uses whitenoise for serving static files which makes the warning
    superfluous. (#492)
  --
  --
  ---
  ---

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ara?expand=0&rev=30
This commit is contained in:
2023-11-25 14:08:12 +00:00
committed by Git OBS Bridge
parent 4d61a51811
commit cd657be34e
4 changed files with 46 additions and 16 deletions

View File

@@ -1,3 +1,33 @@
-------------------------------------------------------------------
Sat Nov 25 14:02:22 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 1.7.0:
* Update bootstrap CSS from 4.6.0 to 5.3.0 and fix broken layout
and components as a result of the update
* Removed separate light/dark themes via bootstrap-darkly and
bootstrap-flatly: bootstrap 5.3 features a new built-in dark
theme
* Re-worked the dark/light theme selection to match the new
bootstrap built-in dark theme including pygments highlighting
for pretty-printed output
* Removed jquery, it is no longer required with bootstrap
* Re-worked implementation of file line highlighting since it
relied on jquery
* Fixed tooltip implementation (i.e, for task tags) since the
implementation in bootstrap had changed
* Large chunks of templating were moved out to partials/tables and
partials/search in order to improve readability.
* Round of template cleanups and fixes as reported by djlint
* Will continue to be a work in progress to simplify and standardize
templates.
* Raised the requirement on django from >=3.2,<3.3 to >=3.2,<4.3 to
allow installation with the latest LTS release of django.
* Raised the requirement on python from >=3.6 to >=3.8 to accomodate
django 4.2.
* Ignored Django warning about the lack of a STATIC_ROOT directory.
ara uses whitenoise for serving static files which makes the warning
superfluous. (#492)
-------------------------------------------------------------------
Tue Jul 18 15:42:54 UTC 2023 - Matej Cepl <mcepl@suse.com>
@@ -188,7 +218,7 @@ Tue Aug 24 08:35:20 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.c
- Update to 1.5.7:
UI
--
--
- Added a new "hosts" page to browse and search reports by host name
- Improved page HTML titles to be dynamic based on the context
- Added a note highlighting if a task has been delegated to another host
@@ -235,7 +265,7 @@ Tue Aug 24 08:35:20 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.c
necessary information in those cases.
- from version 1.5.6
UI
--
--
- Refactored the built-in reporting UI with the bootstrap CSS framework using themes from bootswatch
- Added a dark theme in addition to the default light theme (toggle at the top right)
- Improved the mobile version of the reporting interface
@@ -268,7 +298,7 @@ Tue Aug 24 08:35:20 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.c
in serial (https://github.com/ansible-community/ara/issues/211)
- from version 1.5.5
API
---
---
- Added support for searching playbooks by ansible_version, for example:
/api/v1/playbooks?ansible_version=2.10
UI
@@ -281,7 +311,7 @@ Tue Aug 24 08:35:20 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.c
- Ordering by date or duration no longer discards existing search arguments
- Clicking on the logo or the "playbooks" link now discards existing search arguments
CLI
---
---
- Added support for searching playbooks by ansible_version
- Added missing argument for --controller to "ara playbook metrics"
@@ -314,7 +344,7 @@ Thu Nov 12 03:36:12 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
+ Add support for searching handler tasks (ex: /api/v1/tasks?handler=true)
* UI
+ Hosts in the playbook report are now sorted alphabetically by hostname
+ Added a column to display the number of tasks in the playbook summary
+ Added a column to display the number of tasks in the playbook summary
-------------------------------------------------------------------
Wed Sep 30 04:12:22 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
@@ -353,7 +383,7 @@ Tue Sep 15 06:02:23 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
* Added search for ignore_errors in results
* Added search for task by action
* Adjusted search for file paths to be partial
* Added search for task by path
* Added search for task by path
-------------------------------------------------------------------
Wed May 27 09:36:03 UTC 2020 - Petr Gajdos <pgajdos@suse.com>
@@ -391,8 +421,8 @@ Thu May 7 05:28:19 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
* Added support for not saving files based on patterns (thank you @LaurentDumont!)
* Added support for specifying default playbook labels
* 1.4 introduces a new SQL migration to ensure labels are unique. If upgrading
from a previous version, you will need to run SQL migrations with ``ara-manage migrate``.
from a previous version, you will need to run SQL migrations with ``ara-manage migrate``.
-------------------------------------------------------------------
Fri Jan 17 15:45:50 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>