Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5b06a5e584 | |||
| 728ef4f8ae | |||
| ebefb9209e | |||
| 579faa4f12 | |||
|
fad40030e1
|
|||
| c317235773 | |||
| a5b6a3f479 | |||
| 11e134b08f | |||
| 419a82224d |
@@ -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
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -2,6 +2,13 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [0.3.1] - 2026-01-09
|
||||
|
||||
### ⚙️ Miscellaneous Tasks
|
||||
|
||||
- *(deps)* Update actions/setup-python action to v6
|
||||
- Migrate module path to gitea.unbound.se
|
||||
|
||||
## [0.3.0] - 2026-01-09
|
||||
|
||||
### 🚀 Features
|
||||
|
||||
@@ -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
@@ -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,4 +1,4 @@
|
||||
module git.unbound.se/shiny/presenter
|
||||
module gitea.unbound.se/shiny/presenter
|
||||
|
||||
go 1.24.1
|
||||
|
||||
|
||||
+1
-1
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user