Skip to content

Commit cdc37c9

Browse files
author
Erwin Dondorp
committed
Release 1.27.0
1 parent 02bf886 commit cdc37c9

2 files changed

Lines changed: 29 additions & 17 deletions

File tree

README.md

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -337,30 +337,42 @@ SaltGUI includes these libraries (with possible modifications):
337337

338338
## Changelog
339339

340+
## 1.27.0 (2021-11-29)
341+
- introduced a highstate overview per minion in the jobs menu (erwindon, thx xzenor)
342+
- improved handling of JS promises (erwindon)
343+
- several small improvements on gui behaviour (erwindon)
344+
- fixed real-time job status on Keys page (erwindon)
345+
- improve pause/play button, added 'none' state (erwindon)
346+
- added icon for CentOS Stream (erwindon, thx xzenor)
347+
- automatically provide alternative for unknown icon (erwindon)
348+
- solution for jobs results without minions list, e.g. when using mysql (erwindon, thx xzenor)
349+
- Bump eslint and stylelint to latest versions (erwindon)
350+
- more code cleanups and various small stuff (erwindon)
351+
340352
## 1.26.0 (2021-10-31)
341353
- applied review comments on documentation (thx achimmihca)
342354
- prevent use of null when a task reported changes as such (thx xzenor)
343355
- add support for additional salt.auth types (thx hoaivan)
344-
- added a message-of-the-day (motd) facility, before and/or after login
345-
- various gui (code) improvements and tweaks
346-
- fixed highstate tooltip content
347-
- use uniform buttons, but smaller when in a table
348-
- hide the commandbox on automatic logout
349-
- fixed beacon template for cert_info
350-
- bump stylelint+eslint versions
351-
- fixed several codebeat reported issues
352-
- added a few more CVEs to test for
353-
- fixed several constructions that needed higher ES versions
354-
- display warning sign for error information in beacon data
355-
- inform when no, or less, beacon-type info is available
356+
- added a message-of-the-day (motd) facility, before and/or after login (erwindon)
357+
- various gui (code) improvements and tweaks (erwindon)
358+
- fixed highstate tooltip content (erwindon)
359+
- use uniform buttons, but smaller when in a table (erwindon)
360+
- hide the commandbox on automatic logout (erwindon)
361+
- fixed beacon template for cert_info (erwindon)
362+
- bump stylelint+eslint versions (erwindon)
363+
- fixed several codebeat reported issues (erwindon)
364+
- added a few more CVEs to test for (erwindon)
365+
- fixed several constructions that needed higher ES versions (erwindon)
366+
- display warning sign for error information in beacon data (erwindon)
367+
- inform when no, or less, beacon-type info is available (erwindon)
356368

357369
## 1.25.0 (2021-08-01)
358370
- fixed generating commands without proper quoting (erwindon, thx xzenor)
359371
- added extended help for beacon configuration (erwindon)
360372
- fixed sticky key status (erwindon)
361373
- updated CVE info to include recent disclosures (erwindon)
362374
- several small improvements and fixes (erwindon)
363-
- updated several dependencies reported by dependabot
375+
- updated several dependencies reported by dependabot (erwindon)
364376
- celebrating 300 stars on GitHub
365377

366378
## 1.24.0 (2021-03-04)
@@ -606,7 +618,7 @@ SaltGUI includes these libraries (with possible modifications):
606618
## 1.2.0 (2018-07-30)
607619
- Addition of menu bar; separation of minion vs keys (erwindon)
608620
- Added mysql as authentication method and retired auto and sharedsecret (erwindon)
609-
- Added some responsive improvements
621+
- Added some responsive improvements (erwindon)
610622

611623
## 1.1.1 (2018-07-23)
612624
- Support for several EAUTH authentication methods (erwindon)
@@ -626,10 +638,10 @@ SaltGUI includes these libraries (with possible modifications):
626638
- Fixed position of popup when main window has scrolled (erwindon)
627639
- Sort minions by hostname (erwindon)
628640
- Fixed OS description in minion overview (No lsb_distrib_description) (erwindon)
629-
- Now sort the jobs correctly on ``StartDate`` in the overview window
641+
- Now sort the jobs correctly on ``StartDate`` in the overview window (erwindon)
630642

631643
## 1.0.0 (2018-03-07)
632-
- Original release with some styling fixes and with enabled highstate functionality.
644+
- Original release with some styling fixes and with enabled highstate functionality (maerteijn)
633645

634646
## (2017-11-15)
635647
- New maintainer (maerteijn)

saltgui/static/scripts/panels/Login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export class LoginPanel extends Panel {
6666
img.src = "static/images/github.png";
6767
aa.append(img);
6868

69-
const txt = document.createTextNode("SaltGUI v1.26.0");
69+
const txt = document.createTextNode("SaltGUI v1.27.0");
7070
aa.append(txt);
7171

7272
form.append(aa);

0 commit comments

Comments
 (0)