Skip to content

Organisation update, steveiliop56 to tinyauthapp#793

Merged
steveiliop56 merged 7 commits into
mainfrom
org_update
Apr 26, 2026
Merged

Organisation update, steveiliop56 to tinyauthapp#793
steveiliop56 merged 7 commits into
mainfrom
org_update

Conversation

@Rycochet
Copy link
Copy Markdown
Collaborator

@Rycochet Rycochet commented Apr 12, 2026

This is for post-ownership change, specifically every file except FUNDING.yml and the two .github/ISSUE_TEMPLATE/ files that references the old repo owner is updated to the new one.

The unchanged files refer to an individual and not the repo owner (even though he is).

Important

This change is going to be released as v5.1.0 and is the first ghcr.io/tinyauthapp/tinyauth:v5 release.

Warning

TODO: Also to be included in here is removing the log line warning of this change which will be the last commit / release on the old location.

Summary by CodeRabbit

Release Notes

  • Chores
    • Updated documentation and repository references to reflect new organization.
    • Removed startup notification regarding registry migration.
    • Updated container image references in deployment examples.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 12, 2026

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: d6c6c692-048d-4748-8b29-1326aabfe744

📥 Commits

Reviewing files that changed from the base of the PR and between 3906e50 and 632c300.

⛔ Files ignored due to path filters (2)
  • gen/gen_env.go is excluded by !**/gen/**
  • gen/gen_md.go is excluded by !**/gen/**
📒 Files selected for processing (60)
  • .github/ISSUE_TEMPLATE/bug_report.md
  • .github/ISSUE_TEMPLATE/feature_request.md
  • .github/workflows/nightly.yml
  • .github/workflows/release.yml
  • CONTRIBUTING.md
  • Dockerfile
  • Dockerfile.distroless
  • Makefile
  • README.md
  • SECURITY.md
  • assets/discohook.json
  • cmd/tinyauth/create_oidc_client.go
  • cmd/tinyauth/create_user.go
  • cmd/tinyauth/generate_totp.go
  • cmd/tinyauth/healthcheck.go
  • cmd/tinyauth/tinyauth.go
  • cmd/tinyauth/verify_user.go
  • cmd/tinyauth/version.go
  • docker-compose.example.yml
  • go.mod
  • internal/bootstrap/app_bootstrap.go
  • internal/bootstrap/db_bootstrap.go
  • internal/bootstrap/router_bootstrap.go
  • internal/bootstrap/service_bootstrap.go
  • internal/controller/context_controller.go
  • internal/controller/context_controller_test.go
  • internal/controller/health_controller_test.go
  • internal/controller/oauth_controller.go
  • internal/controller/oidc_controller.go
  • internal/controller/oidc_controller_test.go
  • internal/controller/proxy_controller.go
  • internal/controller/proxy_controller_test.go
  • internal/controller/resources_controller_test.go
  • internal/controller/user_controller.go
  • internal/controller/user_controller_test.go
  • internal/controller/well_known_controller.go
  • internal/controller/well_known_controller_test.go
  • internal/middleware/context_middleware.go
  • internal/middleware/ui_middleware.go
  • internal/middleware/zerolog_middleware.go
  • internal/service/access_controls_service.go
  • internal/service/auth_service.go
  • internal/service/docker_service.go
  • internal/service/ldap_service.go
  • internal/service/oauth_broker_service.go
  • internal/service/oauth_extractors.go
  • internal/service/oauth_presets.go
  • internal/service/oauth_service.go
  • internal/service/oidc_service.go
  • internal/utils/app_utils.go
  • internal/utils/app_utils_test.go
  • internal/utils/decoders/label_decoder_test.go
  • internal/utils/label_utils_test.go
  • internal/utils/loaders/loader_env.go
  • internal/utils/security_utils_test.go
  • internal/utils/string_utils_test.go
  • internal/utils/tlog/log_wrapper.go
  • internal/utils/tlog/log_wrapper_test.go
  • internal/utils/user_utils.go
  • internal/utils/user_utils_test.go

📝 Walkthrough

Walkthrough

This pull request performs a comprehensive module path migration, renaming the GitHub organization and module namespace from steveiliop56/tinyauth to tinyauthapp/tinyauth across build configurations, documentation, container references, and all source code imports throughout the repository.

Changes

Cohort / File(s) Summary
GitHub Issue Templates
.github/ISSUE_TEMPLATE/bug_report.md, .github/ISSUE_TEMPLATE/feature_request.md
Updated assignees field from scalar string to YAML array format.
GitHub Workflows
.github/workflows/nightly.yml, .github/workflows/release.yml
Modified Go build -ldflags -X linker flag paths for metadata injection from old module path to new organization path across both amd64 and arm64 build steps.
Documentation & Policy Files
CONTRIBUTING.md, README.md, SECURITY.md
Updated all repository URLs, badge links, and references to point from steveiliop56 to tinyauthapp organization.
Build & Container Configuration
Dockerfile, Dockerfile.distroless, docker-compose.example.yml, Makefile
Updated Go linker flag module paths in build commands and container image registry references to use new organization namespace.
Module Declaration
go.mod
Changed root module path from github.com/steveiliop56/tinyauth to github.com/tinyauthapp/tinyauth.
Bootstrap & Configuration
internal/bootstrap/app_bootstrap.go, internal/bootstrap/db_bootstrap.go, internal/bootstrap/router_bootstrap.go, internal/bootstrap/service_bootstrap.go
Updated internal package imports to new module path; removed console message about image/container registry migration.
CLI Commands
cmd/tinyauth/create_oidc_client.go, cmd/tinyauth/create_user.go, cmd/tinyauth/generate_totp.go, cmd/tinyauth/healthcheck.go, cmd/tinyauth/tinyauth.go, cmd/tinyauth/verify_user.go, cmd/tinyauth/version.go
Updated all internal package imports from old to new module path.
Controllers
internal/controller/context_controller.go, internal/controller/oauth_controller.go, internal/controller/oidc_controller.go, internal/controller/proxy_controller.go, internal/controller/user_controller.go, internal/controller/well_known_controller.go, internal/controller/*_test.go
Switched all internal dependency imports to new module path; no functional logic changes.
Middleware
internal/middleware/context_middleware.go, internal/middleware/ui_middleware.go, internal/middleware/zerolog_middleware.go
Updated internal package references to use new module namespace.
Services
internal/service/access_controls_service.go, internal/service/auth_service.go, internal/service/docker_service.go, internal/service/ldap_service.go, internal/service/oauth_broker_service.go, internal/service/oauth_extractors.go, internal/service/oauth_presets.go, internal/service/oauth_service.go, internal/service/oidc_service.go
Updated all internal package imports from old to new module namespace.
Utilities & Tests
internal/utils/app_utils.go, internal/utils/user_utils.go, internal/utils/loaders/loader_env.go, internal/utils/tlog/log_wrapper.go, internal/utils/*_test.go, internal/utils/decoders/label_decoder_test.go
Updated import paths for all utility functions and test dependencies to reference new module path.
Discord Webhook Configuration
assets/discohook.json
Updated embedded GitHub repository references in webhook payload metadata from old to new organization path.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Poem

🐰 Hopeful whispers through the code so bright,
From steveiliop to tinyauthapp in flight!
Each import rewired with care and grace,
A new home found in the proper place.
Organization blooms, the paths align—
A migration complete, oh what a design! 🌱✨

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch org_update

Comment @coderabbitai help to get the list of available commands and usage tips.

@codecov
Copy link
Copy Markdown

codecov Bot commented Apr 12, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 20.16%. Comparing base (18c8413) to head (1e6a06d).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #793   +/-   ##
=======================================
  Coverage   20.16%   20.16%           
=======================================
  Files          50       50           
  Lines        3972     3972           
=======================================
  Hits          801      801           
  Misses       3099     3099           
  Partials       72       72           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

steveiliop56
steveiliop56 previously approved these changes Apr 26, 2026
@steveiliop56 steveiliop56 marked this pull request as ready for review April 26, 2026 14:01
steveiliop56
steveiliop56 previously approved these changes Apr 26, 2026
@dosubot dosubot Bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Apr 26, 2026
@steveiliop56 steveiliop56 merged commit f318657 into main Apr 26, 2026
1 of 2 checks passed
@Rycochet Rycochet deleted the org_update branch April 26, 2026 15:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants