Skip to content

Commit

Permalink
Merge branch 'main' into fix/golang1.23-timers
Browse files Browse the repository at this point in the history
  • Loading branch information
gammazero authored Sep 5, 2024
2 parents 9460372 + 51da02f commit 6fe369e
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 6 deletions.
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

0 comments on commit 6fe369e

Please sign in to comment.