chore: migrate Docker registry + GitHub URLs to PicPeak org

Repo transferred from the-luap/picpeak → PicPeak/picpeak. Docker images
publish to ghcr.io/picpeak/picpeak/{backend,frontend} (lowercase, per the
GHCR canonical form computed by docker-build.yml's `${GITHUB_REPOSITORY,,}`).

Sweep covers:
- docker-compose.production.yml + Dockerfiles → new image registry path
- README, CONTRIBUTING, SECURITY, SIMPLE_SETUP, scripts/picpeak-setup.sh
  → new GitHub URLs
- Update-check / release-notes services (updateCheckService,
  environmentService, updateNotificationService, adminSystem,
  UpdateNotification, githubReleaseUrl) → GitHub API + tag URLs use the
  canonical PicPeak/picpeak path
- Issue templates + README-DOCKER + workflow README → updated package URLs
- One commit-context comment in migrations/090 + customerAccountsService

CHANGELOG.md is intentionally untouched (historical release entries are
immutable; GitHub auto-redirects the old URLs indefinitely).
CLAUDE.md keeps the bare `(the-luap)` reference — that's the maintainer's
personal handle, not a repo URL.

22 files, 48/48 line swaps (every change is a 1:1 URL replacement).
This commit is contained in:
Paul Nothaft
2026-06-29 20:20:13 +02:00
parent 5ebe126970
commit 0205c7dcce
22 changed files with 48 additions and 48 deletions
@@ -90,7 +90,7 @@ export const UpdateNotification: React.FC<UpdateNotificationProps> = ({ onDismis
{t('admin.updates.updateNow', 'Update Now')}
</button>
<a
href="https://github.com/the-luap/picpeak/releases"
href="https://github.com/PicPeak/picpeak/releases"
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center text-xs text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300"
@@ -12,13 +12,13 @@ import { githubReleaseUrl } from '../githubReleaseUrl';
describe('githubReleaseUrl', () => {
it('maps a stable version to its tag page', () => {
expect(githubReleaseUrl('3.55.0')).toBe(
'https://github.com/the-luap/picpeak/releases/tag/v3.55.0',
'https://github.com/PicPeak/picpeak/releases/tag/v3.55.0',
);
});
it('maps a beta version (with channel suffix) to its tag page', () => {
expect(githubReleaseUrl('3.55.0-beta.0')).toBe(
'https://github.com/the-luap/picpeak/releases/tag/v3.55.0-beta.0',
'https://github.com/PicPeak/picpeak/releases/tag/v3.55.0-beta.0',
);
});
+1 -1
View File
@@ -11,4 +11,4 @@
* indicator to link to the upgrade target's notes.
*/
export const githubReleaseUrl = (version: string): string =>
`https://github.com/the-luap/picpeak/releases/tag/v${version}`;
`https://github.com/PicPeak/picpeak/releases/tag/v${version}`;