feat: update application versioning and enhance release management
Docker images / prepare-release (push) Successful in 38s
Docker images / backend-image (push) Has been skipped
Docker images / frontend-image (push) Has been skipped
Docker images / updater-image (push) Has been skipped
Docker images / publish-release (push) Has been skipped
Docker images / notify-webhook (push) Has been skipped

- Bumped application version to 1.0.0 across all relevant package files, ensuring consistency in versioning.
- Introduced new environment variables for application version and release URL in Dockerfiles, improving deployment transparency.
- Enhanced the health check endpoint to return the current application version, providing better visibility for monitoring.
- Updated CI/CD workflows to include steps for preparing and publishing releases, streamlining the release process.
- Added a new "Releases" section in the application sidebar for easier access to version information.
This commit is contained in:
Denozordec
2026-05-12 17:19:20 +07:00
parent f282585b52
commit 9ccc8459d7
21 changed files with 630 additions and 22 deletions
+21 -6
View File
@@ -1,12 +1,12 @@
{
"name": "mmapp",
"version": "0.1.0",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "mmapp",
"version": "0.1.0",
"version": "1.0.0",
"hasInstallScript": true,
"workspaces": [
"packages/*",
@@ -14,7 +14,7 @@
],
"dependencies": {
"@base-ui/react": "^1.4.1",
"@mmapp/contracts": "0.1.0",
"@mmapp/contracts": "1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.11.0",
@@ -39,11 +39,11 @@
},
"backend": {
"name": "mikrotik-manager-backend",
"version": "0.1.0",
"version": "1.0.0",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/type-provider-zod": "^1.0.0",
"@mmapp/contracts": "0.1.0",
"@mmapp/contracts": "1.0.0",
"better-sqlite3": "^12.9.0",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.45.2",
@@ -12670,10 +12670,25 @@
},
"packages/contracts": {
"name": "@mmapp/contracts",
"version": "0.1.0",
"version": "1.0.0",
"dependencies": {
"zod": "^4.4.1"
}
},
"node_modules/@next/swc-win32-x64-msvc": {
"version": "16.2.4",
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.4.tgz",
"integrity": "sha512-kMVGgsqhO5YTYODD9IPGGhA6iprWidQckK3LmPeW08PIFENRmgfb4MjXHO+p//d+ts2rpjvK5gXWzXSMrPl9cw==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
}
}
}