Skip to content

Commit

Permalink
Upgrade go dependencies 2024-01-29
Browse files Browse the repository at this point in the history
  • Loading branch information
stagnation authored and moroten committed Jan 29, 2024
1 parent b28a8d7 commit 4e536b5
Show file tree
Hide file tree
Showing 9 changed files with 188 additions and 200 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ at the top right in the GitHub Actions page.

| Repository | Container images and binaries |
| ---------- | ----------------------------- |
| [bb-browser](https://github.com/buildbarn/bb-browser) [`c2f10792ad`](https://github.com/buildbarn/bb-browser/commits/c2f10792adbd5781dabcedd9a1fd5ed547b28f79)<br/>2023-09-17 04:20:39 UTC | [ghcr.io/buildbarn/bb-browser:20231221T052638Z-c2f1079](https://ghcr.io/buildbarn/bb-browser:20231221T052638Z-c2f1079)<br/>[CI artifacts](https://github.com/buildbarn/bb-browser/actions/runs/7284377284) |
| [bb-remote-execution](https://github.com/buildbarn/bb-remote-execution) [`4b3a11b508`](https://github.com/buildbarn/bb-remote-execution/commits/4b3a11b508cf06a3dfa17f141b3ea505bc039434)<br/>2023-10-04 10:23:25 UTC | [ghcr.io/buildbarn/bb-runner-installer:20231222T105429Z-4b3a11b](https://ghcr.io/buildbarn/bb-runner-installer:20231222T105429Z-4b3a11b)<br/>[ghcr.io/buildbarn/bb-scheduler:20231222T105429Z-4b3a11b](https://ghcr.io/buildbarn/bb-scheduler:20231222T105429Z-4b3a11b)<br/>[ghcr.io/buildbarn/bb-worker:20231222T105429Z-4b3a11b](https://ghcr.io/buildbarn/bb-worker:20231222T105429Z-4b3a11b)<br/>[CI artifacts](https://github.com/buildbarn/bb-remote-execution/actions/runs/7299077275) |
| [bb-browser](https://github.com/buildbarn/bb-browser) [`efa0bb985e`](https://github.com/buildbarn/bb-browser/commits/efa0bb985ec183793b576cdcaeef55aebb68c90c)<br/>2023-09-17 04:20:39 UTC | [ghcr.io/buildbarn/bb-browser:20240126T143027Z-efa0bb9](https://ghcr.io/buildbarn/bb-browser:20240126T143027Z-efa0bb9)<br/>[CI artifacts](https://github.com/buildbarn/bb-browser/actions/runs/7669380036) |
| [bb-remote-execution](https://github.com/buildbarn/bb-remote-execution) [`fe4cf5d426`](https://github.com/buildbarn/bb-remote-execution/commits/fe4cf5d42613d9b44be4ef969353fb1212222c73)<br/>2023-10-04 10:23:25 UTC | [ghcr.io/buildbarn/bb-runner-installer:20240126T140954Z-fe4cf5d](https://ghcr.io/buildbarn/bb-runner-installer:20240126T140954Z-fe4cf5d)<br/>[ghcr.io/buildbarn/bb-scheduler:20240126T140954Z-fe4cf5d](https://ghcr.io/buildbarn/bb-scheduler:20240126T140954Z-fe4cf5d)<br/>[ghcr.io/buildbarn/bb-worker:20240126T140954Z-fe4cf5d](https://ghcr.io/buildbarn/bb-worker:20240126T140954Z-fe4cf5d)<br/>[CI artifacts](https://github.com/buildbarn/bb-remote-execution/actions/runs/7669356306) |
| [bb-storage](https://github.com/buildbarn/bb-storage) [`1ba9ed4c9a`](https://github.com/buildbarn/bb-storage/commits/1ba9ed4c9a744ba1bb168b495256deee7e5f2b59)<br/>2023-10-08 11:11:12 UTC | [ghcr.io/buildbarn/bb-storage:20240108T141908Z-1ba9ed4](https://ghcr.io/buildbarn/bb-storage:20240108T141908Z-1ba9ed4)<br/>[CI artifacts](https://github.com/buildbarn/bb-storage/actions/runs/7448718802) |

## Changelog
Expand Down
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 2024-01-29

* Support capturing server logs
This can be used to collect core dumps for crashed actions.
https://github.com/buildbarn/bb-remote-execution/commit/fe4cf5d42613d9b44be4ef969353fb1212222c73
* Improve the bb-browser's performance by using REv2 Directory messages instead
of trees
* Change the bb_clientd code snippet to a button.

# 2023-12-22

* Support Bazel 7
Expand Down
11 changes: 6 additions & 5 deletions docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
- ./volumes/storage-cas-1:/storage-cas

scheduler:
image: ghcr.io/buildbarn/bb-scheduler:20231222T105429Z-4b3a11b
image: ghcr.io/buildbarn/bb-scheduler:20240126T140954Z-fe4cf5d
command:
- /config/scheduler.jsonnet
expose:
Expand All @@ -45,11 +45,12 @@ services:
- 9980
ports:
- 7982:7982
- 8983:8983
volumes:
- ./config:/config

browser:
image: ghcr.io/buildbarn/bb-browser:20231221T052638Z-c2f1079
image: ghcr.io/buildbarn/bb-browser:20240126T143027Z-efa0bb9
command:
- /config/browser.jsonnet
expose:
Expand All @@ -60,13 +61,13 @@ services:
- ./config:/config

runner-installer:
image: ghcr.io/buildbarn/bb-runner-installer:20231222T105429Z-4b3a11b
image: ghcr.io/buildbarn/bb-runner-installer:20240126T140954Z-fe4cf5d
volumes:
- ./volumes/bb:/bb

# The FUSE worker is the most efficient configuration.
worker-fuse-ubuntu22-04:
image: ghcr.io/buildbarn/bb-worker:20231222T105429Z-4b3a11b
image: ghcr.io/buildbarn/bb-worker:20240126T140954Z-fe4cf5d
command:
- /config/worker-fuse-ubuntu22-04.jsonnet
# Need to be privileged for the FUSE mounting to work.
Expand Down Expand Up @@ -102,7 +103,7 @@ services:
# For situations where the more efficient FUSE worker is not supported,
# the classic hardlinking example is shown here.
worker-hardlinking-ubuntu22-04:
image: ghcr.io/buildbarn/bb-worker:20231222T105429Z-4b3a11b
image: ghcr.io/buildbarn/bb-worker:20240126T140954Z-fe4cf5d
command:
- /config/worker-hardlinking-ubuntu22-04.jsonnet
privileged: false
Expand Down
58 changes: 28 additions & 30 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ replace golang.org/x/tools => golang.org/x/tools v0.8.0

require (
github.com/bazelbuild/rules_go v0.43.0
github.com/buildbarn/bb-browser v0.0.0-20231221052638-c2f10792adbd
github.com/buildbarn/bb-remote-execution v0.0.0-20231222105429-4b3a11b508cf
github.com/buildbarn/bb-browser v0.0.0-20240126143027-efa0bb985ec1
github.com/buildbarn/bb-remote-execution v0.0.0-20240126140954-fe4cf5d42613
github.com/buildbarn/bb-storage v0.0.0-20240108141908-1ba9ed4c9a74
mvdan.cc/gofumpt v0.5.0
mvdan.cc/gofumpt v0.6.0
)

require (
Expand All @@ -22,26 +22,26 @@ require (
cloud.google.com/go/compute/metadata v0.2.3 // indirect
cloud.google.com/go/iam v1.1.5 // indirect
cloud.google.com/go/longrunning v0.5.4 // indirect
cloud.google.com/go/storage v1.36.0 // indirect
cloud.google.com/go/storage v1.37.0 // indirect
git.sr.ht/~sbinet/gg v0.5.0 // indirect
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b // indirect
github.com/aohorodnyk/mimeheader v0.0.6 // indirect
github.com/aws/aws-sdk-go-v2 v1.24.1 // indirect
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.4 // indirect
github.com/aws/aws-sdk-go-v2/config v1.26.3 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.16.14 // indirect
github.com/aws/aws-sdk-go-v2/config v1.26.6 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.16.16 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.2 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.3 // indirect
github.com/aws/aws-sdk-go-v2/internal/v4a v1.2.10 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.2.10 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.10 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.16.10 // indirect
github.com/aws/aws-sdk-go-v2/service/s3 v1.48.0 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.18.6 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.6 // indirect
github.com/aws/aws-sdk-go-v2/service/s3 v1.48.1 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.7 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 // indirect
github.com/aws/smithy-go v1.19.0 // indirect
github.com/bazelbuild/remote-apis v0.0.0-20231221155620-d20ae8b97fd3 // indirect
Expand All @@ -65,7 +65,7 @@ require (
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-jsonnet v0.20.0 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/google/uuid v1.5.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
github.com/gorilla/mux v1.8.1 // indirect
Expand All @@ -75,25 +75,24 @@ require (
github.com/hanwen/go-fuse/v2 v2.4.2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/klauspost/compress v1.17.4 // indirect
github.com/klauspost/compress v1.17.5 // indirect
github.com/lazybeaver/xorshift v0.0.0-20170702203709-ce511d4823dd // indirect
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_golang v1.18.0 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.45.0 // indirect
github.com/prometheus/common v0.46.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect
go.opentelemetry.io/contrib/propagators/b3 v1.21.1 // indirect
go.opentelemetry.io/otel v1.21.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
go.opentelemetry.io/contrib/propagators/b3 v1.22.0 // indirect
go.opentelemetry.io/otel v1.22.0 // indirect
go.opentelemetry.io/otel/exporters/jaeger v1.17.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 // indirect
go.opentelemetry.io/otel/metric v1.21.0 // indirect
go.opentelemetry.io/otel/sdk v1.21.0 // indirect
go.opentelemetry.io/otel/trace v1.21.0 // indirect
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.22.0 // indirect
go.opentelemetry.io/otel/metric v1.22.0 // indirect
go.opentelemetry.io/otel/sdk v1.22.0 // indirect
go.opentelemetry.io/otel/trace v1.22.0 // indirect
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/image v0.15.0 // indirect
golang.org/x/mod v0.14.0 // indirect
Expand All @@ -104,15 +103,14 @@ require (
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.17.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
gonum.org/v1/plot v0.14.0 // indirect
google.golang.org/api v0.156.0 // indirect
google.golang.org/api v0.159.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto v0.0.0-20240108191215-35c7eff3a6b1 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240108191215-35c7eff3a6b1 // indirect
google.golang.org/genproto/googleapis/bytestream v0.0.0-20240108191215-35c7eff3a6b1 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1 // indirect
google.golang.org/grpc v1.60.1 // indirect
google.golang.org/genproto v0.0.0-20240125205218-1f4bbc51befe // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe // indirect
google.golang.org/genproto/googleapis/bytestream v0.0.0-20240125205218-1f4bbc51befe // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
google.golang.org/grpc v1.61.0 // indirect
google.golang.org/protobuf v1.32.0 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)
Loading

0 comments on commit 4e536b5

Please sign in to comment.