diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 468c1ef1..a52e6a89 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -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 diff --git a/.github/workflows/master-build.yml b/.github/workflows/master-build.yml index c393c355..6904344a 100644 --- a/.github/workflows/master-build.yml +++ b/.github/workflows/master-build.yml @@ -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 diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index 00a7530e..f5f3418b 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 56240994..ca2da212 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ -## +## v0.4.3 - **FIXED** fix(s3): use HeadObject for checking if blob exists [bergemalm](https://github.com/bergemalm) - **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) diff --git a/cmd/longtail/go.mod b/cmd/longtail/go.mod index dc98612c..c2f747bc 100644 --- a/cmd/longtail/go.mod +++ b/cmd/longtail/go.mod @@ -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 diff --git a/commands/go.mod b/commands/go.mod index 615866c1..355c9c95 100644 --- a/commands/go.mod +++ b/commands/go.mod @@ -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 diff --git a/go.mod b/go.mod index 166dc4e7..6634397d 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/DanEngelbrecht/golongtail -go 1.23 +go 1.23.3 diff --git a/go.work b/go.work index 1a100432..e6e8f50f 100644 --- a/go.work +++ b/go.work @@ -1,4 +1,4 @@ -go 1.23 +go 1.23.3 use ( ./cmd/longtail diff --git a/longtaillib/go.mod b/longtaillib/go.mod index f10c481d..b72f4112 100644 --- a/longtaillib/go.mod +++ b/longtaillib/go.mod @@ -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 diff --git a/longtailstorelib/go.mod b/longtailstorelib/go.mod index b2e12a8b..0cd7536c 100644 --- a/longtailstorelib/go.mod +++ b/longtailstorelib/go.mod @@ -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 diff --git a/longtailutils/go.mod b/longtailutils/go.mod index ad84946d..1769ef34 100644 --- a/longtailutils/go.mod +++ b/longtailutils/go.mod @@ -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 diff --git a/remotestore/go.mod b/remotestore/go.mod index be33d863..a3b08a97 100644 --- a/remotestore/go.mod +++ b/remotestore/go.mod @@ -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