fix(interfaces): Fix image location schema in IImage interface

This commit is contained in:
Philipp Kunz 2024-12-28 21:48:57 +01:00
parent d6e914edab
commit 33311348e2
4 changed files with 11 additions and 4 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 2024-12-28 - 4.8.1 - fix(interfaces)
Fix image location schema in IImage interface
- Refactored the 'external' object within IImage data to a 'location' object.
- Added 'internal' boolean to 'location' to specify internal/external status.
## 2024-12-28 - 4.8.0 - feat(manager.registry)
Add external registry management

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/cloudly',
version: '4.8.0',
version: '4.8.1',
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
}

View File

@ -4,9 +4,10 @@ export interface IImage {
id: string;
data: {
name: string;
external?: {
location: {
internal: boolean;
externalRegistryId: string;
imageName: string;
externalImageTag: string;
}
description: string;
versions: Array<{

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/cloudly',
version: '4.8.0',
version: '4.8.1',
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
}