From 681afe2626fe270057d1f9ae689048acc84e346c Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Fri, 9 Jan 2026 09:28:16 +0100 Subject: [PATCH] refactor: update module path to new repository location Remove GitLab CI linter configuration and update module path from `gitlab.com/unboundsoftware/shiny/authz_client` to `git.unbound.se/shiny/authz_client` in all relevant files. These changes reflect a migration to a new hosting service. --- .pre-commit-config.yaml | 9 +-------- CLAUDE.md | 2 +- README.md | 3 --- go.mod | 2 +- 4 files changed, 3 insertions(+), 13 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c9cba6b..509160d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,13 +10,6 @@ repos: args: - --allow-multiple-documents - id: check-added-large-files -- repo: https://gitlab.com/devopshq/gitlab-ci-linter - rev: v1.0.6 - hooks: - - id: gitlab-ci-linter - args: - - --project - - unboundsoftware/shiny/authz_client - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook rev: v9.23.0 hooks: @@ -30,7 +23,7 @@ repos: - id: go-imports args: - -local - - gitlab.com/unboundsoftware/shiny/authz_client + - git.unbound.se/shiny/authz_client - repo: https://github.com/lietu/go-pre-commit rev: v1.0.0 hooks: diff --git a/CLAUDE.md b/CLAUDE.md index 68e59e0..f1f368b 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -17,7 +17,7 @@ Provides a client for the authz-service, handling privilege management for users ### Usage ```go -import client "gitlab.com/unboundsoftware/shiny/authz_client" +import client "git.unbound.se/shiny/authz_client" // Create handler with options handler := client.New(client.WithBaseURL("http://authz-service")) diff --git a/README.md b/README.md index d46bf81..275d889 100644 --- a/README.md +++ b/README.md @@ -1,4 +1 @@ # Shiny authz-client - -[![Build Status](https://gitlab.com/unboundsoftware/shiny/authz_client/badges/main/pipeline.svg)](https://gitlab.com/unboundsoftware/shiny/authz_client/commits/main) -[![codecov](https://codecov.io/gl/unboundsoftware:shiny/authz_client/branch/main/graph/badge.svg?token=AQS7QVLCEQ)](https://codecov.io/gl/unboundsoftware:shiny/authz_client) diff --git a/go.mod b/go.mod index 146e868..fce564e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitlab.com/unboundsoftware/shiny/authz_client +module git.unbound.se/shiny/authz_client go 1.22.12