Skip to content

Commit

Permalink
Merge pull request #555 from openziti/release-3.6.2
Browse files Browse the repository at this point in the history
Release 3.6.2
  • Loading branch information
rgallettonf authored Nov 25, 2024
2 parents 7e0b889 + fe95afb commit cee2c9c
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "io.netfoundry.zac",
"version": "3.6.1",
"version": "3.6.2",
"description": "Ziti Administration Console",
"main": "server.js",
"type": "module",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ export class NodeSettingsService extends SettingsServiceClass {
growler.error("Invalid Edge Controller: " + body.error);
} else {
this.apiVersions = body.data.apiVersions;
this.zitiSemver = body.data?.version?.replace("v", "");
}
} catch (e) {
growler.error("Invalid Edge Controller: " + body);
Expand Down
2 changes: 1 addition & 1 deletion projects/ziti-console-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openziti/ziti-console-lib",
"version": "0.6.2",
"version": "0.6.3",
"repository": {
"type": "git",
"url": "https://github.com/openziti/ziti-console"
Expand Down
Binary file modified projects/ziti-console-lib/src/lib/assets/fonts/zac.eot
Binary file not shown.
4 changes: 3 additions & 1 deletion projects/ziti-console-lib/src/lib/assets/fonts/zac.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified projects/ziti-console-lib/src/lib/assets/fonts/zac.ttf
Binary file not shown.
Binary file modified projects/ziti-console-lib/src/lib/assets/fonts/zac.woff
Binary file not shown.
Binary file modified projects/ziti-console-lib/src/lib/assets/fonts/zac.woff2
Binary file not shown.
3 changes: 3 additions & 0 deletions projects/ziti-console-lib/src/lib/assets/styles/icons.css
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,7 @@
}
.icon-minus:before {
content: "\e91e";
}
.icon-Policies:before {
content: "\e92e";
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export class SideToolbarComponent {
this.zacService.initZac();
app.init();
this.zacService.initZACButtonListener();
this.settingsService.initApiVersions(this.settingsService?.settings?.selectedEdgeController);
this.settingsService.settingsChange.subscribe((results:any) => {
this.hideNav = results.hideNav;
this.initSideBar();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import {ServicePolicyFormService} from "../../features/projectable-forms/service
import semver from 'semver';
import {SETTINGS_SERVICE, SettingsService} from "../../services/settings.service";
import {Subscription} from "rxjs";
import {isEmpty} from "lodash";

@Component({
selector: 'lib-services',
Expand Down Expand Up @@ -161,12 +162,13 @@ export class ServicesPageComponent extends ListPageComponent implements OnInit,
});
const countLabel = selectedItems.length > 1 ? selectedItems.length : '';
this.selectedItems = selectedItems;
const showSecondaryConfirm = !isEmpty(this.settingsService?.zitiSemver) && semver.gte(this.settingsService?.zitiSemver, '1.1.8')
this.confirmData = {
appendId: 'DeleteServices',
title: 'Delete Services',
message: `Are you sure you would like to delete the following ${countLabel} ${entityTypeLabel}?`,
bulletList: selectedNames,
showSecondaryConfirm: semver.gte(this.settingsService?.zitiSemver, '1.1.8'),
showSecondaryConfirm: showSecondaryConfirm,
secondaryConfirmLabel: 'Delete all orphaned associated configs and service policies?',
secondaryConfirmed: false,
secondaryInfoLabel: `Choosing this option will also delete any associated configs and/or service policies that ONLY make reference to these selected services`,
Expand Down
13 changes: 13 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# app-ziti-console-v3.6.2
# ziti-console-lib-v0.6.3

## Feature/Improvements
* [Issue #548](https://github.com/openziti/ziti-console/issues/548) - Optionally delete unused/orphaned entities when deleting a Service
*
## Bug Fixes
* [Issue #550](https://github.com/openziti/ziti-console/issues/550) - Fix filtering of configs based on config type when editing a service
* [Issue #546](https://github.com/openziti/ziti-console/issues/546) - Fix download of Certificate Authority JWT
* [Issue #553](https://github.com/openziti/ziti-console/issues/553) - Fix synchronization of pagination controls when applying filters to list pages
* [Issue #544](https://github.com/openziti/ziti-console/pull/544) - prune and ignore hard-coded lib version.ts file


# app-ziti-console-v3.6.1
# ziti-console-lib-v0.6.2

Expand Down

0 comments on commit cee2c9c

Please sign in to comment.