chore(deps): update Go to v1.27.0

This commit is contained in:
Elias Schneider
2026-08-28 23:02:49 +02:00
parent 429793f33c
commit f235104aed
7 changed files with 13 additions and 12 deletions

View File

@@ -3,7 +3,7 @@
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
"features": {
"ghcr.io/devcontainers/features/go:1": {
"version": "1.26"
"version": "1.27"
}
},
"customizations": {

View File

@@ -74,7 +74,7 @@ If you use [Dev Containers](https://code.visualstudio.com/docs/remote/containers
If you don't use Dev Containers, you need to install the following tools manually:
- [Node.js](https://nodejs.org/en/download/) >= 24
- [Go](https://golang.org/doc/install) >= 1.26
- [Go](https://golang.org/doc/install) >= 1.27
- [Git](https://git-scm.com/downloads)
#### 2. Setup

View File

@@ -1,6 +1,6 @@
module github.com/pocket-id/pocket-id/backend
go 1.26.6
go 1.27.0
require (
github.com/aws/aws-sdk-go-v2 v1.43.7

View File

@@ -79,7 +79,7 @@ func TestOidcClientDto_secrets(t *testing.T) {
expired := datatype.DateTime(time.Now().Add(-time.Hour))
valid := datatype.DateTime(time.Now().Add(time.Hour))
client := model.OidcClient{
Base: model.Base{ID: "client-id"},
ID: "client-id",
Name: "Test Client",
Credentials: model.OidcClientCredentials{
Secrets: []model.OidcClientSecret{
@@ -109,7 +109,7 @@ func TestOidcClientDto_secrets(t *testing.T) {
func TestOidcClientDto_secretsAlwaysSerialized(t *testing.T) {
client := model.OidcClient{
Base: model.Base{ID: "client-id"},
ID: "client-id",
Name: "Test Client",
}

View File

@@ -31,7 +31,7 @@ func init() {
// Use JSON tags to keep client-visible validation field names stable
engine.RegisterTagNameFunc(func(field reflect.StructField) string {
name := strings.SplitN(field.Tag.Get("json"), ",", 2)[0]
name, _, _ := strings.Cut(field.Tag.Get("json"), ",")
if name == "" || name == "-" {
return field.Name
}

View File

@@ -49,8 +49,8 @@ func validateCallbackURLPatternURL(pattern string) error {
}
func callbackURLPatternForURLParse(pattern string) string {
if strings.HasPrefix(pattern, "*://") {
pattern = "https://" + strings.TrimPrefix(pattern, "*://")
if after, ok := strings.CutPrefix(pattern, "*://"); ok {
pattern = "https://" + after
}
scheme, rest, ok := strings.Cut(pattern, "://")

View File

@@ -37,14 +37,15 @@ func BuildFormPostCSP(nonce, redirectURI, scriptHash string) string {
func buildCSP(nonce string, formActionExtra, scriptSrcExtra []string) string {
formAction := "'self'"
scriptSrc := "script-src 'self'"
var scriptSrc strings.Builder
scriptSrc.WriteString("script-src 'self'")
if nonce != "" {
scriptSrc += " 'nonce-" + nonce + "'"
scriptSrc.WriteString(" 'nonce-" + nonce + "'")
}
for _, extra := range scriptSrcExtra {
if extra != "" {
scriptSrc += " " + extra
scriptSrc.WriteString(" " + extra)
}
}
@@ -69,7 +70,7 @@ func buildCSP(nonce string, formActionExtra, scriptSrcExtra []string) string {
"img-src * blob:;" +
"font-src 'self'; " +
"style-src 'self' 'unsafe-inline'; " +
scriptSrc
scriptSrc.String()
}
// GenerateCSPNonce returns a random base64 nonce for use in a CSP header.