From da69271e823799e8fe5ca0359a61c9e2d6320a06 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Fri, 9 Jan 2026 09:27:06 +0100 Subject: [PATCH] refactor: update import paths to the new repository location Change the import paths in CLAUDE.md and go.mod to reflect the migration of the otelsetup module from GitLab to a new Git server. Remove the build status and code coverage badges from README.md as they are no longer applicable. Update configuration in .pre-commit-config.yaml to match the new module path. --- .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 dcad9d6..a27023b 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/otelsetup - 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/sentrysetup + - git.unbound.se/shiny/otelsetup - repo: https://github.com/lietu/go-pre-commit rev: v1.0.0 hooks: diff --git a/CLAUDE.md b/CLAUDE.md index b2c4c99..676d4ec 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -17,7 +17,7 @@ Provides standardized OpenTelemetry configuration for tracing, metrics, and logg ### Usage ```go -import "gitlab.com/unboundsoftware/shiny/otelsetup" +import "git.unbound.se/shiny/otelsetup" // Bootstrap OpenTelemetry SDK shutdown, err := otelsetup.SetupOTelSDK(ctx, enabled, serviceName, buildVersion, environment) diff --git a/README.md b/README.md index 1f0ccdb..7a216f0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1 @@ # Shiny otelsetup - -[![Build Status](https://gitlab.com/unboundsoftware/shiny/otelsetup/badges/main/pipeline.svg)](https://gitlab.com/unboundsoftware/shiny/otelsetup/commits/main) -[![codecov](https://codecov.io/gl/unboundsoftware:shiny/otelsetup/branch/main/graph/badge.svg?token=I3FNYTXUPU)](https://codecov.io/gl/unboundsoftware:shiny/otelsetup) diff --git a/go.mod b/go.mod index 6a84185..aaaef87 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitlab.com/unboundsoftware/shiny/otelsetup +module git.unbound.se/shiny/otelsetup go 1.24.3