Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: uci/update-go to go 1.22 #661

Merged
merged 6 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The following emojis are used to highlight certain changes:

### Changed

- updated Go in `go.mod` to 1.22
- `chunker` refactored to reduce overall memory use by reducing heap fragmentation [#649](https://github.com/ipfs/boxo/pull/649)
- `gateway` deserialized responses will have `Last-Modified` set to value from optional UnixFS 1.5 modification time field (if present in DAG) and a matching `If-Modified-Since` will return `304 Not Modified` (UnixFS 1.5 files only) [#659](https://github.com/ipfs/boxo/pull/659)
- `bitswap/server` minor performance improvements in concurrent operations
Expand Down
2 changes: 1 addition & 1 deletion cmd/boxo-migrate/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ipfs/boxo/cmd/boxo-migrate

go 1.21
go 1.22

require github.com/urfave/cli/v2 v2.25.1

Expand Down
2 changes: 1 addition & 1 deletion cmd/deprecator/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ipfs/boxo/cmd/deprecator

go 1.21
go 1.22

require (
github.com/dave/dst v0.27.2
Expand Down
2 changes: 1 addition & 1 deletion examples/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ipfs/boxo/examples

go 1.21
go 1.22

require (
github.com/ipfs/boxo v0.22.0
Expand Down
1 change: 0 additions & 1 deletion files/meta_other.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build !linux && !freebsd && !netbsd && !openbsd && !dragonfly && !windows
// +build !linux,!freebsd,!netbsd,!openbsd,!dragonfly,!windows

package files

Expand Down
1 change: 0 additions & 1 deletion files/meta_posix.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build linux || freebsd || netbsd || openbsd || dragonfly
// +build linux freebsd netbsd openbsd dragonfly

package files

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ipfs/boxo

go 1.21
go 1.22

require (
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9
Expand Down
Loading