Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
5148bd1fff | |||
41c54a070c | |||
6956524c6e | |||
7a1d933559 |
13
changelog.md
13
changelog.md
@ -1,5 +1,18 @@
|
|||||||
# Changelog
|
# 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)
|
## 2024-10-28 - 4.0.1 - fix(package_manager)
|
||||||
Update @git.zone/tspublish dependency version
|
Update @git.zone/tspublish dependency version
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@serve.zone/cloudly",
|
"name": "@serve.zone/cloudly",
|
||||||
"version": "4.0.1",
|
"version": "4.1.1",
|
||||||
"private": false,
|
"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.",
|
"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",
|
"type": "module",
|
||||||
@ -18,7 +18,8 @@
|
|||||||
"start": "node cli.js",
|
"start": "node cli.js",
|
||||||
"startTs": "node cli.ts.js",
|
"startTs": "node cli.ts.js",
|
||||||
"watch": "tswatch website",
|
"watch": "tswatch website",
|
||||||
"publish": "tspublish"
|
"publish": "tspublish",
|
||||||
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.85",
|
"@git.zone/tsbuild": "^2.1.85",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/cloudly',
|
name: '@serve.zone/cloudly',
|
||||||
version: '4.0.1',
|
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.'
|
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/cloudly',
|
name: '@serve.zone/cloudly',
|
||||||
version: '4.0.1',
|
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.'
|
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user