Skip to content

Commit

Permalink
Merge branch 'main' of github.com:DanEngelbrecht/golongtail
Browse files Browse the repository at this point in the history
  • Loading branch information
DanEngelbrecht committed Nov 23, 2024
2 parents db9a19c + c801ca8 commit c7f3578
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- name: Set up Go 1.23
- name: Set up Go 1.23.3
uses: actions/setup-go@v5
with:
go-version: 1.23
go-version: 1.23.3

- name: Check out source code
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- name: Set up Go 1.23
- name: Set up Go 1.23.3
uses: actions/setup-go@v5
with:
go-version: 1.23
go-version: 1.23.3

- name: Check out source code
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- name: Set up Go 1.23
- name: Set up Go 1.23.3
uses: actions/setup-go@v5
with:
go-version: 1.23
go-version: 1.23.3

- name: Check out source code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- **ADDED** New option to control the number of worker thread in remote stores to avoid overflowing the network connection.
- `--remote-worker-count` Set number of workers created for the remote store, defaults to match number of logical CPUs with upper limit of 8 for networked remote stores
- **FIXED** Don't update store index if we failed to upload blocks
- **UPDATED** Update to golang 1.23
- **UPDATED** Update to golang 1.23.3
- **UPDATED** Updated all golang dependencies
- **UPDATED** Update longtaillib to v0.4.3
- **FIXED** Fixed file corruption on Linux when using `--use-legacy-write` option. [chris-believer](https://github.com/chris-believer)
Expand Down
2 changes: 1 addition & 1 deletion cmd/longtail/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/cmd/longtail

go 1.23
go 1.23.3

require (
github.com/DanEngelbrecht/golongtail/commands v0.0.0
Expand Down
2 changes: 1 addition & 1 deletion commands/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/commands

go 1.23
go 1.23.3

require (
github.com/DanEngelbrecht/golongtail/longtaillib v0.0.0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/DanEngelbrecht/golongtail

go 1.23
go 1.23.3
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.23
go 1.23.3

use (
./cmd/longtail
Expand Down
2 changes: 1 addition & 1 deletion longtaillib/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/longtaillib

go 1.23
go 1.23.3

require (
github.com/alecthomas/assert/v2 v2.8.1
Expand Down
2 changes: 1 addition & 1 deletion longtailstorelib/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/longtailstorelib

go 1.23
go 1.23.3

require (
cloud.google.com/go/storage v1.47.0
Expand Down
2 changes: 1 addition & 1 deletion longtailutils/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/longtailutils

go 1.23
go 1.23.3

require (
github.com/DanEngelbrecht/golongtail/longtaillib v0.0.0
Expand Down
2 changes: 1 addition & 1 deletion remotestore/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/remotestore

go 1.23
go 1.23.3

require (
github.com/DanEngelbrecht/golongtail/longtaillib v0.0.0
Expand Down

0 comments on commit c7f3578

Please sign in to comment.