diff --git a/package-lock.json b/package-lock.json index 7d93c3e02..54250c8f3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21738,7 +21738,7 @@ }, "services/backend": { "name": "@deploystack/backend", - "version": "0.47.0", + "version": "0.48.0", "dependencies": { "@fastify/cookie": "^11.0.2", "@fastify/cors": "^11.1.0", diff --git a/services/backend/CHANGELOG.md b/services/backend/CHANGELOG.md index 167533923..da83d1a9b 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.48.0 (2025-11-29) + +* feat(all): add server_count to MCP category schema and responses, view mcp server catalog 7bac93b +* feat(backend): add API endpoint for retrieving team usage statistics 0be749b +* feat(backend): add API endpoint to list featured MCP categories 79c6a53 +* feat(backend): enhance server list and search responses with category details 92a86a1 +* feat(backend): implement minimal server response format for list endpoints bf97cd6 +* feat(frontend): add featured MCP servers page and related components 00f4897 +* feat(frontend): add spinner component and replace loading indicators 8f5bd9f +* feat(frontend): add team usage indicator component and integration e035a86 +* feat(frontend): add team usage statistics component and API integration 0befca8 +* feat(frontend): implement settings menu components for client configuration 0eb2ae6 +* fix(backend): replace like with ilike for case-insensitive search e88c5fb + ## 0.47.0 (2025-11-28) * chore(all): bump isomorphic-dompurify from 2.32.0 to 2.33.0 6243596 diff --git a/services/backend/package.json b/services/backend/package.json index c91215ac8..2258d29f9 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.47.0", + "version": "0.48.0", "scripts": { "dev": "nodemon", "build": "tsc && webpack --mode=production", diff --git a/services/backend/src/config/version.ts b/services/backend/src/config/version.ts index 82e25786e..416e5644d 100644 --- a/services/backend/src/config/version.ts +++ b/services/backend/src/config/version.ts @@ -9,8 +9,8 @@ export interface VersionInfo { // This will be replaced by the build script let versionData: VersionInfo = { - version: '0.47.0', - buildTime: '2025-11-28T19:50:26.941Z', + version: '0.48.0', + buildTime: '2025-11-29T21:11:19.641Z', source: 'release' };