From 5627928a5f2c0c4e03791097684699419ee1cb4f Mon Sep 17 00:00:00 2001 From: Florin Mirosnicencu Date: Mon, 17 Aug 2026 09:18:25 +0100 Subject: [PATCH 1/3] docs: fix zerolog typo in README example Co-Authored-By: Claude Opus 5 (1M context) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 944e4e9f..2e59f6f 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ import ( codeClientObservability "github.com/snyk/code-client-go/observability" ) -logger := zerlog.NewLogger(...) +logger := zerolog.NewLogger(...) instrumentor := codeClientObservability.NewInstrumentor() errorReporter := codeClientObservability.NewErrorReporter() httpClient := codeClientHTTP.NewHTTPClient( From 30edeae46d1a3ced020c3c5c0a7faae896b44cc5 Mon Sep 17 00:00:00 2001 From: Florin Mirosnicencu Date: Mon, 17 Aug 2026 09:20:28 +0100 Subject: [PATCH 2/3] test commit --- bundle/bundle.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/bundle.go b/bundle/bundle.go index 4845ad4..7e6fcbd 100644 --- a/bundle/bundle.go +++ b/bundle/bundle.go @@ -14,7 +14,7 @@ * limitations under the License. */ -package bundle +package bundle1 import ( "context" From a84eb34e0ecd1cba8ef6015eb6d2af3828444a54 Mon Sep 17 00:00:00 2001 From: Florin Mirosnicencu Date: Mon, 17 Aug 2026 09:28:02 +0100 Subject: [PATCH 3/3] fix: restore bundle package name The previous test commit renamed the package declaration in bundle/bundle.go to `bundle1`, which broke compilation of the `bundle` package. Co-Authored-By: Claude Opus 5 (1M context) --- bundle/bundle.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/bundle.go b/bundle/bundle.go index 7e6fcbd..4845ad4 100644 --- a/bundle/bundle.go +++ b/bundle/bundle.go @@ -14,7 +14,7 @@ * limitations under the License. */ -package bundle1 +package bundle import ( "context"