sort by:
Revision Author Date Message Commit Date
bbf59a9 Merge pull request #16789 from fuweid/cleanup-build-cov *: cleanup main_test.go 17 October 2023, 15:31:52 UTC
f96000e *: cleanup main_test.go The #15544 has removed the `build_cov` build. And after go1.20, we use `-cover` buildflag to enable coverage exporter. We don't need to maintain main_test.go anymore. ```bash ➜ pwd /home/fuwei/go/src/go.etcd.io/etcd/etcdctl ➜ go build -o /tmp/etcdctl -cover ./ ➜ mkdir /tmp/etcdctl-covdata ➜ GOCOVERDIR=/tmp/etcdctl-covdata /tmp/etcdctl get /health ➜ go tool covdata percent -i=/tmp/etcdctl-covdata go.etcd.io/etcd/etcdctl/v3 coverage: 66.7% of statements go.etcd.io/etcd/etcdctl/v3/ctlv3 coverage: 83.3% of statements go.etcd.io/etcd/etcdctl/v3/ctlv3/command coverage: 15.4% of statements ``` REF: https://go.dev/testing/coverage/ Signed-off-by: Wei Fu <fuweid89@gmail.com> 17 October 2023, 13:47:23 UTC
be83fff Merge pull request #16778 from QuentinBisson/patch-1 Fix cluster variable in mixins 17 October 2023, 11:59:31 UTC
cba514e Merge pull request #16651 from siyuanfoundation/livez-pr Add livez and readyz for etcd 17 October 2023, 11:37:45 UTC
e51b639 Merge pull request #16766 from serathius/robustness-member-replace Add member replace failpoint to robustness tests 17 October 2023, 11:36:21 UTC
5fed813 Merge pull request #16767 from serathius/robustness-main-test Make the main_test the entrypoint and move senario generation to separate file 17 October 2023, 11:09:16 UTC
36a3719 Merge pull request #16783 from sharathsivakumar/shsi/bump_deps_7 Bump dependencies manually 17 October 2023, 10:07:43 UTC
b5622a2 dependency: bump github.com/google/go-cmp from 0.5.9 to 0.6.0 Signed-off-by: Sharath Sivakumar <mailssr9@gmail.com> 17 October 2023, 09:24:25 UTC
3bb27f0 dependency: bump github.com/alexfalkowski/gocovmerge from 1.2.1 to 1.2.2 Signed-off-by: Sharath Sivakumar <mailssr9@gmail.com> 17 October 2023, 09:21:29 UTC
7e8bb15 Add member replace failpoint to robustness tests Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 17 October 2023, 09:17:49 UTC
447aa33 dependency: bump golang.org/x/sync from 0.3.0 to 0.4.0 Signed-off-by: Sharath Sivakumar <mailssr9@gmail.com> 17 October 2023, 09:15:22 UTC
68e5eb7 Merge pull request #16777 from serathius/robustness-failpoint Split failpoints file 17 October 2023, 08:54:42 UTC
0d83a72 Split failpoints file Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 17 October 2023, 07:51:43 UTC
46b42a7 Fix cluster query Fix mixin cluster parameter otherwise generated mixins looks like this: ```json {"type":"prometheus","uid":"${datasource}"},"label":"cluster","name":"job","query":"label_values(etcd_server_has_leader{job=~\".*etcd.*\"}, job)","refresh":2,"type":"query"}]},"time":{"from":"now-15m","to":"now"},"timezone": "`}}{{ .Values.grafana.defaultDashboardsTimezone }}{{`","title":"etcd","uid":"c2f4e12cdf69feb95caa41a5a1b423d9"}`}} ``` where name is job when the variable name used in dashboard queries is cluster. Signed-off-by: QuentinBisson <quentin@giantswarm.io> 16 October 2023, 20:42:31 UTC
452e820 Make the main_test the entrypoint and move senario generation to separate file Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 16 October 2023, 20:10:41 UTC
252f5a6 Merge pull request #16775 from serathius/robustness-failpoint-package Move failpoints to separate package 16 October 2023, 19:53:03 UTC
d6e376b Move failpoints to separate package Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 16 October 2023, 18:57:31 UTC
ad1dbce Merge pull request #16774 from etcd-io/dependabot/github_actions/github/codeql-action-2.22.3 build(deps): bump github/codeql-action from 2.22.1 to 2.22.3 16 October 2023, 18:47:04 UTC
ca56844 build(deps): bump github/codeql-action from 2.22.1 to 2.22.3 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.1 to 2.22.3. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/fdcae64e1484d349b3366718cdfef3d404390e85...0116bc2df50751f9724a2e35ef1f24d22f90e4e1) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> 16 October 2023, 17:57:21 UTC
569640f Merge pull request #16763 from ahrtr/changelog_20231016 Update 3.4 & 3.5 changelog 16 October 2023, 09:33:05 UTC
4791964 Merge pull request #16757 from serathius/minimal-time Use the minimal time event was observed on watch 16 October 2023, 09:25:30 UTC
449d61c Update 3.4 & 3.5 changelog Signed-off-by: Benjamin Wang <wachao@vmware.com> 16 October 2023, 08:54:26 UTC
7a57e06 etcdserver: add livez and ready http endpoints for etcd. Add two separate probes, one for liveness and one for readiness. The liveness probe would check that the local individual node is up and running, or else restart the node, while the readiness probe would check that the cluster is ready to serve traffic. This would make etcd health-check fully Kubernetes API complient. Signed-off-by: Siyuan Zhang <sizhang@google.com> 15 October 2023, 05:32:16 UTC
aea6f0b Merge pull request #16759 from serathius/robustness-fix-failure Fix linearization failure not causing test failure 13 October 2023, 17:19:02 UTC
841731b Fix linearization failure not causing test failure Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 13 October 2023, 16:56:22 UTC
4c7b8db Use the minimal time event was observed on watch Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 13 October 2023, 16:17:29 UTC
57d9a7e Merge pull request #16756 from serathius/robustness-reorder-validation Refactor and reorder validation to avoid reporting multiple correlated failures 13 October 2023, 16:12:25 UTC
b02798e Refactor and reorder validation to avoid reporting multiple corelated failures It doesn't make sense to report watch failure if key value operations are not linearizable. Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 13 October 2023, 12:06:13 UTC
3eca40d Merge pull request #16755 from Juneezee/redundant-len-check etcdserver: remove redundant `len` check in health check 13 October 2023, 11:34:54 UTC
867faa1 etcdserver: remove redundant `len` check in health check From the Go specification [1]: "1. For a nil slice, the number of iterations is 0." `len` returns 0 if the slice or map is nil [2]. Therefore, checking `len(v) > 0` around a loop is unnecessary. [1]: https://go.dev/ref/spec#For_range [2]: https://pkg.go.dev/builtin#len Signed-off-by: Eng Zer Jun <engzerjun@gmail.com> 13 October 2023, 10:39:38 UTC
d0d0c33 Merge pull request #16708 from fuweid/enable-marker-check *: enable markdown_marker checker 13 October 2023, 09:54:34 UTC
a92e0de Merge pull request #16753 from fuweid/deflake-TestEtcdTLSVersion tests: deflake TestEtcdTLSVersion 13 October 2023, 09:28:04 UTC
6f95ea0 tests: deflake TestEtcdTLSVersion The proc.Stop just sends the SIGTERM to etcd server. The etcd server needs time to teardown. If we don't wait for it, the etcd server will hold the port and then next test case, like TestGrpcProxyAutoSync, will fail to listen on the port 20000. ```bash file_/__w/etcd/etcd/tests/fixtures/server.crt_--peer-key-file_/__w/etcd/etcd/tests/fixtures/server.key.insecure_--cert-file_/__w/etcd/etcd/tests/fixtures/server2.crt_--key-file_/__w/etcd/etcd/tests/fixtures/server2.key.insecure_--tls-min-version_TLS1.2_--tls-max-version_TLS1.3) (32856): {"level":"info","ts":"2023-10-13T06:12:32.718845Z","caller":"embed/etcd.go:394","msg":"closing etcd server","name":"e1","data-dir":"/tmp/TestEtcdTLSVersion284993522/001","advertise-peer-urls":["https://127.0.0.1:20000"],"advertise-client-urls":["https://0.0.0.0:0"]} 2023-10-13T06:12:32.7399709Z --- PASS: TestEtcdTLSVersion (1.03s) 2023-10-13T06:12:32.7400181Z === RUN TestGrpcProxyAutoSync 2023-10-13T06:12:32.7401203Z logger.go:130: 2023-10-13T06:12:32.719Z INFO starting server... {"name": "TestGrpcProxyAutoSync-test-0"} 2023-10-13T06:12:32.7408306Z logger.go:130: 2023-10-13T06:12:32.719Z INFO spawning process {"args": ["/__w/etcd/etcd/bin/etcd", "--name=TestGrpcProxyAutoSync-test-0", "--listen-client-urls=http://localhost:20000", "--advertise-client-urls=http://localhost:20000", "--listen-peer-urls=http://localhost:20001", "--initial-advertise-peer-urls=http://localhost:20001", "--initial-cluster-token=new", "--data-dir", "/tmp/TestGrpcProxyAutoSync1139610722/001", "--snapshot-count=10000", "--initial-cluster-token=new", "--initial-cluster=TestGrpcProxyAutoSync-test-0=http://localhost:20001", "--initial-cluster-state=new"], "working-dir": "/__w/etcd/etcd/tests/e2e", "name": "TestGrpcProxyAutoSync-test-0", "environment-variables": ["ETCD_VERIFY=all", "EXPECT_DEBUG=true", "PATH=/__t/go/1.21.3/x64/bin:/go/bin:/__t/go/1.21.3/x64/bin:/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "ETCD_UNSUPPORTED_ARCH=amd64"]} ... 2023-10-13T06:12:32.7559855Z /__w/etcd/etcd/bin/etcd (TestGrpcProxyAutoSync-test-0) (32863): {"level":"fatal","ts":"2023-10-13T06:12:32.735191Z","caller":"etcdmain/etcd.go:181","msg":"discovery failed","error":"listen tcp 127.0.0.1:20000: bind: address already in use","stacktrace":"go.etcd.io/etcd/server/v3/etcdmain.startEtcdOrProxyV2\n\tgo.etcd.io/etcd/server/v3/etcdmain/etcd.go:181\ngo.etcd.io/etcd/server/v3/etcdmain.Main\n\tgo.etcd.io/etcd/server/v3/etcdmain/main.go:40\nmain.main\n\tgo.etcd.io/etcd/server/v3/main.go:31\nruntime.main\n\truntime/proc.go:267"} ``` Signed-off-by: Wei Fu <fuweid89@gmail.com> 13 October 2023, 08:48:37 UTC
81fe610 *: enable markdown_marker checker Signed-off-by: Wei Fu <fuweid89@gmail.com> 13 October 2023, 06:00:25 UTC
bc0f724 Merge pull request #16697 from chaochn47/health_check_bug_fix http health check bug fixes 13 October 2023, 04:48:24 UTC
c25f1df http health check bug fixes Signed-off-by: Chao Chen <chaochn@amazon.com> 12 October 2023, 23:59:34 UTC
6d68ab0 Merge pull request #16707 from serathius/dynamic-flags Dynamically generate flags passed to etcd binary 12 October 2023, 16:23:23 UTC
c34ccfb Dynamically generate flags passed to etcd binary Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 12 October 2023, 15:31:56 UTC
2c86103 Merge pull request #16748 from serathius/test-dynamic-flags-v2 Test dynamic flags v2 12 October 2023, 15:26:18 UTC
bd49f26 Merge pull request #16752 from fuweid/update-34-changelog CHANGELOG: update 3.4/3.5 golang version 12 October 2023, 15:15:38 UTC
42507f4 CHANGELOG: update 3.4/3.5 golang version Signed-off-by: Wei Fu <fuweid89@gmail.com> 12 October 2023, 14:35:54 UTC
1caf1d3 Merge pull request #16737 from serathius/disable-failfast Continue on e2e failure 12 October 2023, 12:56:49 UTC
c71f60e Remove duplicated test Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 12 October 2023, 12:09:31 UTC
05cc60a Use contain to make tests clearer and more resilient to changes Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 12 October 2023, 12:09:31 UTC
6f63f4b Use single string to define a flag allowing for easier testing Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 12 October 2023, 12:09:29 UTC
d69378b Merge pull request #16747 from serathius/test-dynamic-flags Add tests to prepare to dynamic flag generation 12 October 2023, 08:47:11 UTC
6d9a0a4 Add tests to prepare to dynamic flag generation Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 11 October 2023, 21:31:39 UTC
bf80055 Merge pull request #16739 from dusk125/http2-update bump golang.org/x/net to v0.17.0, google.golang.org/grpc to v1.58.3 11 October 2023, 15:25:16 UTC
03da2fb Merge pull request #16741 from dusk125/go1.21.3 Bump go to 1.21.3 11 October 2023, 14:53:54 UTC
e4c0eb7 bump google.golang.org/grpc to v1.58.3 Signed-off-by: Allen Ray <alray@redhat.com> 11 October 2023, 14:39:05 UTC
a5580a7 Bump go to 1.21.3 Signed-off-by: Allen Ray <alray@redhat.com> 11 October 2023, 14:16:57 UTC
3a61187 bump golang.org/x/net to v0.17.0 Address CVE-2023-39325 and CVE-2023-44487 Signed-off-by: Allen Ray <alray@redhat.com> 11 October 2023, 14:09:14 UTC
b8271d9 Continue on e2e failure E2e tests has been flaky, with failfast and 2 scenarios tests are twice as fragile. Any early failure of one of the scenarios cases second to be canceled. Retryign always require running both scenarios. Intead let's just wait as in other tests allowing us to retry just the scenario that failed Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 11 October 2023, 10:25:31 UTC
a404ee5 Merge pull request #16735 from serathius/roundrobin Return to default write scheduler since golang.org/x/net@v0.11.0 started using round robin 10 October 2023, 19:04:56 UTC
9f40116 Return to default write scheduler since golang.org/x/net@v0.11.0 started using round robin Introduction of round robin https://github.com/golang/net/commit/120fc906b30bade8c220769da77801566d7f4ec8 Added in v0.10.0 https://github.com/golang/net/compare/v0.10.0...v0.11.0 Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 10 October 2023, 14:31:42 UTC
9008776 Merge pull request #16734 from 0scvr/main Update changelog for 3.4 & 3.5 10 October 2023, 12:20:50 UTC
03ceed7 Update changelog for 3.4 & 3.5 To log the go version 1.20.9 bump. Signed-off-by: Oscar <5xp395ab@duck.com> 10 October 2023, 12:11:54 UTC
4540db9 Merge pull request #16731 from sharathsivakumar/shsi/bump_dependencies_6 Bump dependencies generated by the bot manually 10 October 2023, 11:51:48 UTC
d884580 dependency: bump go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc from 0.44.0 to 0.45.0 Signed-off-by: Sharath Sivakumar <mailssr9@gmail.com> 10 October 2023, 09:50:54 UTC
c94deb9 dependency: bump github.com/prometheus/client_model from 0.4.1-0.20230718164431-9a2bf3000d16 to 0.5.0 Signed-off-by: Sharath Sivakumar <mailssr9@gmail.com> 10 October 2023, 09:49:36 UTC
1b1c42a dependency: bump golang.org/x/net from 0.15.0 to 0.16.0 Signed-off-by: Sharath Sivakumar <mailssr9@gmail.com> 10 October 2023, 09:49:35 UTC
9e7e433 Merge pull request #16727 from 0scvr/0scvr/upgrade-go-1.21.2 Upgrade go version to 1.21.2 10 October 2023, 08:51:43 UTC
16e19a9 Merge pull request #16269 from dusk125/refactor-revision Refactor common revision code to pkg 10 October 2023, 08:16:58 UTC
86ea531 etcd: upgrade go version to 1.21.2 To be up to date with the newest security fix. Signed-off-by: Oscar <71343264+0scvr@users.noreply.github.com> 09 October 2023, 21:34:26 UTC
395376d Refactor common revision code to pkg Signed-off-by: Allen Ray <alray@redhat.com> 09 October 2023, 18:53:16 UTC
20edc39 Merge pull request #16726 from etcd-io/dependabot/github_actions/ossf/scorecard-action-2.3.0 build(deps): bump ossf/scorecard-action from 2.2.0 to 2.3.0 09 October 2023, 18:38:44 UTC
8e1713d Merge pull request #16714 from fuweid/clean-unconvert_pass *: cleanup unconvert_pass and remove revive tools 09 October 2023, 18:38:19 UTC
2b45c39 Merge pull request #16725 from etcd-io/dependabot/github_actions/github/codeql-action-2.22.1 build(deps): bump github/codeql-action from 2.21.9 to 2.22.1 09 October 2023, 18:12:16 UTC
97fd17d build(deps): bump ossf/scorecard-action from 2.2.0 to 2.3.0 Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.2.0 to 2.3.0. - [Release notes](https://github.com/ossf/scorecard-action/releases) - [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md) - [Commits](https://github.com/ossf/scorecard-action/compare/08b4669551908b1024bb425080c797723083c031...483ef80eb98fb506c348f7d62e28055e49fe2398) --- updated-dependencies: - dependency-name: ossf/scorecard-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> 09 October 2023, 17:34:26 UTC
074128a build(deps): bump github/codeql-action from 2.21.9 to 2.22.1 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.21.9 to 2.22.1. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/ddccb873888234080b77e9bc2d4764d5ccaaccf9...fdcae64e1484d349b3366718cdfef3d404390e85) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> 09 October 2023, 17:34:22 UTC
8219741 tools/mod: remove revive We have migrated the revive into golangci-lint. Signed-off-by: Wei Fu <fuweid89@gmail.com> 09 October 2023, 15:28:09 UTC
0ec6181 scripts: remove unconvert_pass The `unconvert` has been migrated into golingci-lint. Signed-off-by: Wei Fu <fuweid89@gmail.com> 09 October 2023, 15:27:48 UTC
de39c75 Merge pull request #16711 from serathius/robustness-fix-profile Fix providing profile to robustness tests 09 October 2023, 07:52:55 UTC
b4d5492 Fix providing profile to robustness tests Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 08 October 2023, 19:27:22 UTC
01a0d8b Merge pull request #16709 from fuweid/remove-markdown-style-checker scripts: remove the markdown_you_pass 08 October 2023, 08:18:35 UTC
093ec7a scripts: remove the markdown_you_pass Signed-off-by: Wei Fu <fuweid89@gmail.com> 08 October 2023, 07:20:30 UTC
89983f4 Merge pull request #16703 from serathius/failpoint-set Fix parsing failpoint names when failpoint has set value 07 October 2023, 17:59:23 UTC
c4bbb1b Merge pull request #16705 from fuweid/add-nakedret *: migrate nakedret_pass into golangci-lint 07 October 2023, 17:58:56 UTC
f5e8226 Fix parsing failpoint names when failpoint has value set Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 07 October 2023, 16:20:18 UTC
f198b41 Merge pull request #16691 from serathius/inject-sleep Inject sleep during etcd bootstrap to reproduce etcd-io#16666 07 October 2023, 16:18:53 UTC
5878f34 *: migrate nakedret into golangci-lint Signed-off-by: Wei Fu <fuweid89@gmail.com> 07 October 2023, 14:29:43 UTC
05a7703 Inject sleep during etcd bootstrap to reproduce https://github.com/etcd-io/etcd/issues/16666 Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 07 October 2023, 10:31:56 UTC
185ddb2 Merge pull request #16696 from jmhbnz/fix-infra-admins-typo Fix typo in ci infra admins table 06 October 2023, 07:42:23 UTC
2012af3 Fix typo in ci infra admins table. Signed-off-by: James Blair <mail@jamesblair.net> 05 October 2023, 22:27:56 UTC
3f859a6 Merge pull request #16695 from serathius/watch-validation-revision Fix watch validation assuming that client requesting older watch revision 05 October 2023, 17:17:51 UTC
6a96ab7 Merge pull request #16688 from serathius/e2e-default-config Use default embed config in e2e tests 05 October 2023, 12:54:18 UTC
c1fb2c2 Use default embed config in e2e tests Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 05 October 2023, 12:17:45 UTC
c2655b4 Fix watch validation assuming that client requesting older watch revision Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 05 October 2023, 12:09:43 UTC
24b6796 Merge pull request #16692 from serathius/getformat Avoid timing out and provide a proper error in TestCtlV3GetFormat test 05 October 2023, 10:49:30 UTC
f3196e3 Avoid timing out and provide a proper error in TestCtlV3GetFormat test Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> 05 October 2023, 09:29:39 UTC
0f14106 Merge pull request #16678 from ahrtr/linearizable_read_20231002 test: add test cases to verify consistent reading right after writing 04 October 2023, 16:09:41 UTC
b385121 test: add test cases to verify consistent reading right after writing Signed-off-by: Benjamin Wang <wachao@vmware.com> 04 October 2023, 14:26:44 UTC
1c5289d Merge pull request #16677 from serathius/revert-13525 Revert "etcd server shouldn't wait for the ready notification infinitely on startup" 04 October 2023, 09:49:11 UTC
19a6baf Merge pull request #16246 from grafana/vzhuravlev/refactor_mixin_with_grafonnet Refactor mixin with grafonnet 04 October 2023, 09:33:35 UTC
6a0d2eb Merge pull request #16689 from jmhbnz/update-dependencies [2023-10-04] Bump dependencies identified by dependabot 04 October 2023, 08:50:36 UTC
b70745d Update jsonnet dependency Signed-off-by: Vitaly Zhuravlev <v-zhuravlev@users.noreply.github.com> 04 October 2023, 06:53:27 UTC
e0e4cda depdendency: bump github.com/alexfalkowski/gocovmerge from 1.2.0 to 1.2.1. Signed-off-by: James Blair <mail@jamesblair.net> 03 October 2023, 22:46:36 UTC
314e637 depdendency: bump github.com/mikefarah/yq/v4 from 4.35.1 to 4.35.2. Signed-off-by: James Blair <mail@jamesblair.net> 03 October 2023, 22:13:25 UTC
074d796 depdendency: bump github.com/prometheus/client_golang from 1.16.0 to 1.17.0. Signed-off-by: James Blair <mail@jamesblair.net> 03 October 2023, 22:10:01 UTC
aac8919 depdendency: bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc from 1.18.0 to 1.19.0. Signed-off-by: James Blair <mail@jamesblair.net> 03 October 2023, 22:06:38 UTC
back to top