Compare commits

..

8 Commits

Author SHA1 Message Date
5148bd1fff 4.1.1
Some checks failed
Docker (tags) / security (push) Failing after 0s
Docker (tags) / test (push) Has been skipped
Docker (tags) / release (push) Has been skipped
Docker (tags) / metadata (push) Has been skipped
2024-10-28 16:55:25 +01:00
41c54a070c fix(core): Fixed syntax issues in commitinfo data and package.json file. 2024-10-28 16:55:25 +01:00
6956524c6e 4.1.0
Some checks failed
Docker (tags) / security (push) Failing after 0s
Docker (tags) / test (push) Has been skipped
Docker (tags) / release (push) Has been skipped
Docker (tags) / metadata (push) Has been skipped
2024-10-28 16:19:00 +01:00
7a1d933559 feat(core): Enhance core functionality for cloud management and orchestration 2024-10-28 16:19:00 +01:00
343acd4997 4.0.1
Some checks failed
Docker (tags) / security (push) Failing after 0s
Docker (tags) / test (push) Has been skipped
Docker (tags) / release (push) Has been skipped
Docker (tags) / metadata (push) Has been skipped
2024-10-28 15:58:26 +01:00
337d111cf6 fix(package_manager): Update @git.zone/tspublish dependency version 2024-10-28 15:58:26 +01:00
f49dce92cd 4.0.0
Some checks failed
Docker (tags) / security (push) Failing after 0s
Docker (tags) / test (push) Has been skipped
Docker (tags) / release (push) Has been skipped
Docker (tags) / metadata (push) Has been skipped
2024-10-28 01:39:49 +01:00
c6abfe69b8 BREAKING CHANGE(core): Significant overhaul with potential breaking changes, update to version 3.0.0 2024-10-28 01:39:49 +01:00
5 changed files with 34 additions and 9 deletions

View File

@ -1,5 +1,28 @@
# Changelog
## 2024-10-28 - 4.1.1 - fix(core)
Fixed syntax issues in commitinfo data and package.json file.
- Added a missing newline at the end of the package.json file.
- Corrected a trailing comma and added proper syntax in the commitinfo data.
## 2024-10-28 - 4.1.0 - feat(core)
Enhance core functionality for cloud management and orchestration
- Improved initialization and management of cloud environments with Docker Swarmkit.
- Added capability to manage DNS records via Cloudflare.
- Introduced integration support for DigitalOcean resources.
## 2024-10-28 - 4.0.1 - fix(package_manager)
Update @git.zone/tspublish dependency version
- Bump @git.zone/tspublish version from 1.5.4 to 1.5.5.
## 2024-10-28 - 4.0.0 - BREAKING CHANGE(core)
Significant overhaul with potential breaking changes, update to version 3.0.0
- Updated project version from 1.2.5 to 3.0.0 in package.json
## 2024-10-28 - 1.2.5 - fix(build)
Updated devDependencies for tspublish and removed buildDocs script

View File

@ -1,6 +1,6 @@
{
"name": "@serve.zone/cloudly",
"version": "1.2.5",
"version": "4.1.1",
"private": false,
"description": "A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.",
"type": "module",
@ -18,12 +18,13 @@
"start": "node cli.js",
"startTs": "node cli.ts.js",
"watch": "tswatch website",
"publish": "tspublish"
"publish": "tspublish",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.85",
"@git.zone/tsbundle": "^2.1.0",
"@git.zone/tspublish": "^1.5.4",
"@git.zone/tspublish": "^1.5.5",
"@git.zone/tstest": "^1.0.90",
"@git.zone/tswatch": "^2.0.25",
"@push.rocks/tapbundle": "^5.3.0",

9
pnpm-lock.yaml generated
View File

@ -143,8 +143,8 @@ devDependencies:
specifier: ^2.1.0
version: 2.1.0
'@git.zone/tspublish':
specifier: ^1.5.4
version: 1.5.4
specifier: ^1.5.5
version: 1.5.5
'@git.zone/tstest':
specifier: ^1.0.90
version: 1.0.90
@ -1604,11 +1604,12 @@ packages:
- supports-color
dev: true
/@git.zone/tspublish@1.5.4:
resolution: {integrity: sha512-/wBLuV5Nhp7Tp5S5sQCHEy+gKeYQ8kglcooWaSmmnHo/EKP6ka96aU6jxnlWePSlAsEzmqd37FdNhwVY5S9Yyg==}
/@git.zone/tspublish@1.5.5:
resolution: {integrity: sha512-p65c0ridlJVZ0OWVLdPaGwnXV5e/Civk91fY4jnVJv53/cisjRx4qJp6x/4pVAsWkMhcF3ruC/vSGQGeKROvqw==}
hasBin: true
dependencies:
'@push.rocks/smartcli': 4.0.11
'@push.rocks/smartdelay': 3.0.5
'@push.rocks/smartfile': 11.0.21
'@push.rocks/smartlog': 3.0.7
'@push.rocks/smartnpm': 2.0.4

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/cloudly',
version: '1.2.5',
version: '4.1.1',
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
}

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/cloudly',
version: '1.2.5',
version: '4.1.1',
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
}