Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
5148bd1fff | |||
41c54a070c | |||
6956524c6e | |||
7a1d933559 | |||
343acd4997 | |||
337d111cf6 | |||
f49dce92cd | |||
c6abfe69b8 |
23
changelog.md
23
changelog.md
@ -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
|
||||
|
||||
|
@ -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
9
pnpm-lock.yaml
generated
@ -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
|
||||
|
@ -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.'
|
||||
}
|
||||
|
@ -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.'
|
||||
}
|
||||
|
Reference in New Issue
Block a user