4 Commits

Author SHA1 Message Date
argoyle 579faa4f12 Merge pull request 'chore: migrate module path to gitea.unbound.se' (#116) from migrate-to-gitea into main
presenter / test (push) Successful in 1m11s
Release / release (push) Successful in 2m20s
presenter / vulnerabilities (push) Successful in 4m14s
pre-commit / pre-commit (push) Successful in 11m40s
Reviewed-on: #116
2026-01-09 13:49:48 +00:00
argoyle fad40030e1 chore: migrate module path to gitea.unbound.se
presenter / test (pull_request) Successful in 2m16s
presenter / vulnerabilities (pull_request) Successful in 3m29s
pre-commit / pre-commit (pull_request) Successful in 6m51s
Update module path from git.unbound.se to gitea.unbound.se for Go module
discovery over HTTPS.
2026-01-09 14:30:56 +01:00
argoyle 11e134b08f Merge pull request 'chore(deps): update actions/setup-python action to v6' (#114) from renovate/actions-setup-python-6.x into main
presenter / vulnerabilities (push) Successful in 1m4s
presenter / test (push) Successful in 1m46s
Release / release (push) Successful in 1m3s
pre-commit / pre-commit (push) Successful in 4m46s
Reviewed-on: #114
2026-01-09 09:37:28 +00:00
renovate 419a82224d chore(deps): update actions/setup-python action to v6
presenter / vulnerabilities (pull_request) Successful in 1m33s
presenter / test (pull_request) Successful in 4m20s
pre-commit / pre-commit (pull_request) Successful in 6m38s
2026-01-09 09:28:05 +00:00
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ jobs:
- uses: actions/setup-go@v6
with:
go-version: stable
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Install goimports
+1 -1
View File
@@ -23,7 +23,7 @@ repos:
- id: go-imports
args:
- -local
- git.unbound.se/shiny/presenter
- gitea.unbound.se/shiny/presenter
- repo: https://github.com/lietu/go-pre-commit
rev: v1.0.0
hooks:
+1 -1
View File
@@ -18,7 +18,7 @@ Provides a standardized GraphQL error presenter that handles coded errors across
### Usage
```go
import "git.unbound.se/shiny/presenter"
import "gitea.unbound.se/shiny/presenter"
// Create error presenter with valid codes and entities
errorPresenter := presenter.New(logger, validCodes, validEntities, internalErrorCode)
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"github.com/stretchr/testify/require"
"git.unbound.se/shiny/presenter"
"gitea.unbound.se/shiny/presenter"
)
func TestCodedError_ErrorIs(t *testing.T) {
+1 -1
View File
@@ -1,4 +1,4 @@
module git.unbound.se/shiny/presenter
module gitea.unbound.se/shiny/presenter
go 1.24.1
+1 -1
View File
@@ -11,7 +11,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/vektah/gqlparser/v2/gqlerror"
"git.unbound.se/shiny/presenter"
"gitea.unbound.se/shiny/presenter"
)
func Test_globalErrorPresenter(t *testing.T) {