chore: rename cameleer3 to cameleer
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Failing after 18s
CI / docker (push) Has been skipped
CI / deploy (push) Has been skipped
CI / deploy-feature (push) Has been skipped

Rename Java packages from com.cameleer3 to com.cameleer, module
directories from cameleer3-* to cameleer-*, and all references
throughout workflows, Dockerfiles, docs, migrations, and pom.xml.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-15 15:28:42 +02:00
parent 1077293343
commit cb3ebfea7c
569 changed files with 4356 additions and 3245 deletions

View File

@@ -70,7 +70,7 @@ git commit -m "fix: add /deployments redirect and fix GC Pauses chart X-axis"
**Spec items:** 1.2
**Files:**
- Modify: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/UserAdminController.java`
- Modify: `cameleer-server-app/src/main/java/com/cameleer/server/app/controller/UserAdminController.java`
- Modify: `ui/src/pages/Admin/UsersTab.tsx`
- [ ] **Step 1: Run impact analysis on UserAdminController.createUser**
@@ -138,7 +138,7 @@ onError: (err: any) => {
- [ ] **Step 5: Commit**
```bash
git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/UserAdminController.java ui/src/pages/Admin/UsersTab.tsx
git add cameleer-server-app/src/main/java/com/cameleer/server/app/controller/UserAdminController.java ui/src/pages/Admin/UsersTab.tsx
git commit -m "fix: show descriptive error when creating local user with OIDC enabled"
```
@@ -1052,7 +1052,7 @@ function shortAgentName(name: string): string {
// If name contains multiple dashes (K8s pod name pattern), take the last segment
const parts = name.split('-');
if (parts.length >= 3) {
// Show last 2 segments: "8c0affadb860-1" from "cameleer3-sample-8c0affadb860-1"
// Show last 2 segments: "8c0affadb860-1" from "cameleer-sample-8c0affadb860-1"
return parts.slice(-2).join('-');
}
return name;
@@ -1458,7 +1458,7 @@ git commit -m "fix: standardize number formatting with consistent unit spacing a
**Spec items:** 6.4, 6.5
**Note:** These items are in the `cameleer-saas` repository, not `cameleer3-server`. If the SaaS platform UI code is in a separate repo, this task needs to be executed there. If it's co-located, proceed with these files.
**Note:** These items are in the `cameleer-saas` repository, not `cameleer-server`. If the SaaS platform UI code is in a separate repo, this task needs to be executed there. If it's co-located, proceed with these files.
- [ ] **Step 1: Identify platform component files**
@@ -1520,7 +1520,7 @@ git commit -m "fix: platform label/value spacing and neutral license badge color
**Files:**
- Modify: `ui/src/pages/Admin/AuditLogPage.tsx`
- Modify: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/AuditLogController.java`
- Modify: `cameleer-server-app/src/main/java/com/cameleer/server/app/controller/AuditLogController.java`
- [ ] **Step 1: Add client-side CSV export for current page**