From 5d5ac041cd8aba9ed2dea1fbec51889b44b5d593 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 25 May 2024 02:07:08 +0000 Subject: [PATCH 1/2] Update dependency codespell to v2.3.0 --- poetry.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index 277775e50c..88a12b6a69 100644 --- a/poetry.lock +++ b/poetry.lock @@ -16,13 +16,13 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "codespell" -version = "2.2.6" +version = "2.3.0" description = "Codespell" optional = false python-versions = ">=3.8" files = [ - {file = "codespell-2.2.6-py3-none-any.whl", hash = "sha256:9ee9a3e5df0990604013ac2a9f22fa8e57669c827124a2e961fe8a1da4cacc07"}, - {file = "codespell-2.2.6.tar.gz", hash = "sha256:a8c65d8eb3faa03deabab6b3bbe798bea72e1799c7e9e955d57eca4096abcff9"}, + {file = "codespell-2.3.0-py3-none-any.whl", hash = "sha256:a9c7cef2501c9cfede2110fd6d4e5e62296920efe9abfb84648df866e47f58d1"}, + {file = "codespell-2.3.0.tar.gz", hash = "sha256:360c7d10f75e65f67bad720af7007e1060a5d395670ec11a7ed1fed9dd17471f"}, ] [package.extras] From c7711dac6d452e6787b989a0543a7424768c20c3 Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Sat, 25 May 2024 09:43:50 +0200 Subject: [PATCH 2/2] chore: fix typos identified by mispell --- modules/git/object_id.go | 2 +- services/webhook/default.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/git/object_id.go b/modules/git/object_id.go index 26736bb766..ecbc1587d4 100644 --- a/modules/git/object_id.go +++ b/modules/git/object_id.go @@ -80,7 +80,7 @@ func NewIDFromString(hexHash string) (ObjectID, error) { } // IsEmptyCommitID checks if an hexadecimal string represents an empty commit according to git (only '0'). -// If objectFormat is not nil, the length will be checked as well (otherwise the lenght must match the sha1 or sha256 length). +// If objectFormat is not nil, the length will be checked as well (otherwise the length must match the sha1 or sha256 length). func IsEmptyCommitID(commitID string, objectFormat ObjectFormat) bool { if commitID == "" { return true diff --git a/services/webhook/default.go b/services/webhook/default.go index ea877698c8..089ff8bae3 100644 --- a/services/webhook/default.go +++ b/services/webhook/default.go @@ -77,7 +77,7 @@ func (defaultHandler) NewRequest(ctx context.Context, w *webhook_model.Webhook, // see https://codeberg.org/codeberg/community/issues/1556 payloadContent, err = substituteRefShortName(payloadContent) if err != nil { - return nil, nil, fmt.Errorf("could not substiture ref: %w", err) + return nil, nil, fmt.Errorf("could not substitute ref: %w", err) } }