Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
e567ebbf21 | |||
33311348e2 |
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# 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)
|
## 2024-12-28 - 4.8.0 - feat(manager.registry)
|
||||||
Add external registry management
|
Add external registry management
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@serve.zone/cloudly",
|
"name": "@serve.zone/cloudly",
|
||||||
"version": "4.8.0",
|
"version": "4.8.1",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.",
|
"description": "A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/cloudly',
|
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.'
|
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
||||||
}
|
}
|
||||||
|
@ -4,9 +4,10 @@ export interface IImage {
|
|||||||
id: string;
|
id: string;
|
||||||
data: {
|
data: {
|
||||||
name: string;
|
name: string;
|
||||||
external?: {
|
location: {
|
||||||
|
internal: boolean;
|
||||||
externalRegistryId: string;
|
externalRegistryId: string;
|
||||||
imageName: string;
|
externalImageTag: string;
|
||||||
}
|
}
|
||||||
description: string;
|
description: string;
|
||||||
versions: Array<{
|
versions: Array<{
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/cloudly',
|
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.'
|
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user