Upgrade Go to 1.23 (#3190)

* Upgrade to Golang 1.23rc1

* Fix imports

* Go 1.23 final version

* Fix lint compatibility with ci-goreleaser
This commit is contained in:
Deluan Quintão 2024-08-19 17:47:54 -04:00 committed by GitHub
parent 0c33523f45
commit c4bd0e67fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 17 additions and 15 deletions

View file

@ -4,6 +4,8 @@ import (
"context" "context"
"fmt" "fmt"
"io" "io"
"maps"
"slices"
"sync" "sync"
"time" "time"
@ -14,7 +16,6 @@ import (
"github.com/navidrome/navidrome/model/request" "github.com/navidrome/navidrome/model/request"
"github.com/navidrome/navidrome/utils/cache" "github.com/navidrome/navidrome/utils/cache"
"github.com/navidrome/navidrome/utils/pl" "github.com/navidrome/navidrome/utils/pl"
"golang.org/x/exp/maps"
) )
type CacheWarmer interface { type CacheWarmer interface {
@ -94,7 +95,7 @@ func (a *cacheWarmer) run(ctx context.Context) {
continue continue
} }
batch := maps.Keys(a.buffer) batch := slices.Collect(maps.Keys(a.buffer))
a.buffer = make(map[model.ArtworkID]struct{}) a.buffer = make(map[model.ArtworkID]struct{})
a.mutex.Unlock() a.mutex.Unlock()

View file

@ -114,7 +114,7 @@ func (pd *Queue) getMediaFileIndexByID(id string) (int, error) {
return idx, nil return idx, nil
} }
} }
return -1, fmt.Errorf("ID not found in playlist: " + id) return -1, fmt.Errorf("ID not found in playlist: %s", id)
} }
// Sets the index to a new, valid value inside the Items. Values lower than zero are going to be zero, // Sets the index to a new, valid value inside the Items. Values lower than zero are going to be zero,

4
go.mod
View file

@ -1,8 +1,10 @@
module github.com/navidrome/navidrome module github.com/navidrome/navidrome
// This must match the ci-goreleaser Go version
go 1.22 go 1.22
toolchain go1.22.3 // This is the version used by the project
toolchain go1.23.0
require ( require (
github.com/Masterminds/squirrel v1.5.4 github.com/Masterminds/squirrel v1.5.4

View file

@ -3,7 +3,9 @@ package scanner
import ( import (
"context" "context"
"fmt" "fmt"
"maps"
"path/filepath" "path/filepath"
"slices"
"strings" "strings"
"time" "time"
@ -13,7 +15,6 @@ import (
"github.com/navidrome/navidrome/log" "github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/model" "github.com/navidrome/navidrome/model"
"github.com/navidrome/navidrome/utils/slice" "github.com/navidrome/navidrome/utils/slice"
"golang.org/x/exp/maps"
) )
// refresher is responsible for rolling up mediafiles attributes into albums attributes, // refresher is responsible for rolling up mediafiles attributes into albums attributes,
@ -71,7 +72,7 @@ func (r *refresher) flushMap(ctx context.Context, m map[string]struct{}, entity
return nil return nil
} }
ids := maps.Keys(m) ids := slices.Collect(maps.Keys(m))
chunks := slice.BreakUp(ids, 100) chunks := slice.BreakUp(ids, 100)
for _, chunk := range chunks { for _, chunk := range chunks {
err := refresh(ctx, chunk...) err := refresh(ctx, chunk...)

View file

@ -2,13 +2,13 @@ package tests
import ( import (
"errors" "errors"
"maps"
"slices"
"time" "time"
"github.com/google/uuid" "github.com/google/uuid"
"github.com/navidrome/navidrome/utils/slice"
"golang.org/x/exp/maps"
"github.com/navidrome/navidrome/model" "github.com/navidrome/navidrome/model"
"github.com/navidrome/navidrome/utils/slice"
) )
func CreateMockMediaFileRepo() *MockMediaFileRepo { func CreateMockMediaFileRepo() *MockMediaFileRepo {
@ -56,7 +56,7 @@ func (m *MockMediaFileRepo) GetAll(...model.QueryOptions) (model.MediaFiles, err
if m.err { if m.err {
return nil, errors.New("error") return nil, errors.New("error")
} }
values := maps.Values(m.data) values := slices.Collect(maps.Values(m.data))
return slice.Map(values, func(p *model.MediaFile) model.MediaFile { return slice.Map(values, func(p *model.MediaFile) model.MediaFile {
return *p return *p
}), nil }), nil

View file

@ -5,9 +5,8 @@ import (
"errors" "errors"
"io" "io"
"io/fs" "io/fs"
"maps"
"slices" "slices"
"golang.org/x/exp/maps"
) )
// FS implements a simple merged fs.FS, that can combine a Base FS with an Overlay FS. The semantics are: // FS implements a simple merged fs.FS, that can combine a Base FS with an Overlay FS. The semantics are:
@ -64,9 +63,8 @@ func (m FS) mergeDirs(name string, info fs.FileInfo, baseDir fs.ReadDirFile, ove
for _, f := range overlayFiles { for _, f := range overlayFiles {
merged[f.Name()] = f merged[f.Name()] = f
} }
entries := maps.Values(merged) it := maps.Values(merged)
entries := slices.SortedFunc(it, func(i, j fs.DirEntry) int { return cmp.Compare(i.Name(), j.Name()) })
slices.SortFunc(entries, func(i, j fs.DirEntry) int { return cmp.Compare(i.Name(), j.Name()) })
return &mergedDir{ return &mergedDir{
name: name, name: name,
info: info, info: info,