Skip to content

Commit bfbaa5f

Browse files
fix(deps): update protobuf monorepo (#1681)
This PR contains the following updates: | Package | Type | Update | Change | Age | Confidence | |---|---|---|---|---|---| | [protoc](https://redirect.github.com/protocolbuffers/protobuf) | | minor | `33.0` -> `33.1` | [![age](https://developer.mend.io/api/mc/badges/age/github-releases/protocolbuffers%2fprotobuf/33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-releases/protocolbuffers%2fprotobuf/33.0/33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [com.google.protobuf:protobuf-java](https://developers.google.com/protocol-buffers/) ([source](https://redirect.github.com/protocolbuffers/protobuf)) | compile | patch | `4.33.0` -> `4.33.1` | [![age](https://developer.mend.io/api/mc/badges/age/maven/com.google.protobuf:protobuf-java/4.33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.google.protobuf:protobuf-java/4.33.0/4.33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>protocolbuffers/protobuf (protoc)</summary> ### [`v33.1`](https://redirect.github.com/protocolbuffers/protobuf/releases/tag/v33.1): Protocol Buffers v33.1 [Compare Source](https://redirect.github.com/protocolbuffers/protobuf/compare/v33.0...v33.1) ### Announcements - [Protobuf News](https://protobuf.dev/news/) may include additional announcements or pre-announcements for upcoming changes. ### C++ - Fix `Any` hasbit consistency issue in OSS. ([#&#8203;24400](https://redirect.github.com/protocolbuffers/protobuf/issues/24400)) ([`59db671`](https://redirect.github.com/protocolbuffers/protobuf/commit/59db671e945233f9acb556af43cdbb67d1d75d68)) ### Java - Expose NestedInFileClass naming helpers for Java immutable. ([#&#8203;24401](https://redirect.github.com/protocolbuffers/protobuf/issues/24401)) ([`5737cd2`](https://redirect.github.com/protocolbuffers/protobuf/commit/5737cd2bb3a4e220752b28282e70d758c0a7a95d)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/prometheus/client_java). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE3My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> --------- Signed-off-by: Gregor Zeitlinger <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Gregor Zeitlinger <[email protected]>
1 parent ba5b7cb commit bfbaa5f

File tree

15 files changed

+935
-924
lines changed

15 files changed

+935
-924
lines changed

.github/workflows/lint-rest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
version: v2025.11.3
1919
sha256: 2b01d2063ac9fb6988ed5bfa087bebfba4ae6300b0739231bb534924acd31306
2020
- name: Lint
21-
run: mise run lint-rest
21+
run: mise run lint:rest
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from pathlib import Path
1010
from typing import List
1111

12-
ROOT = Path(__file__).resolve().parents[2] # repo root (.. from .mise/tasks)
12+
ROOT = Path(__file__).resolve().parents[3] # repo root (.. from .mise/tasks/lint)
1313
IGNORE_DIRS = {"prometheus-metrics-parent"}
1414
MODULE_PREFIX = "prometheus-metrics"
1515
BOM_POM = ROOT / "prometheus-metrics-bom" / "pom.xml"

integration-tests/it-common/src/test/java/io/prometheus/client/it/common/ExporterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import static org.assertj.core.api.Assertions.assertThat;
55
import static org.assertj.core.api.Assertions.fail;
66

7-
import io.prometheus.metrics.expositionformats.generated.com_google_protobuf_4_33_0.Metrics;
7+
import io.prometheus.metrics.expositionformats.generated.com_google_protobuf_4_33_1.Metrics;
88
import java.io.ByteArrayInputStream;
99
import java.io.IOException;
1010
import java.io.InputStream;

integration-tests/it-exporter/it-exporter-test/src/test/java/io/prometheus/metrics/it/exporter/test/ExporterIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import com.google.common.io.Resources;
77
import io.prometheus.client.it.common.ExporterTest;
8-
import io.prometheus.metrics.expositionformats.generated.com_google_protobuf_4_33_0.Metrics;
8+
import io.prometheus.metrics.expositionformats.generated.com_google_protobuf_4_33_1.Metrics;
99
import java.io.IOException;
1010
import java.net.URISyntaxException;
1111
import java.net.URLEncoder;

integration-tests/it-spring-boot-smoke-test/src/test/java/io/prometheus/metrics/it/springboot/ApplicationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import static org.assertj.core.api.Assertions.assertThat;
44

55
import io.prometheus.client.it.common.ExporterTest;
6-
import io.prometheus.metrics.expositionformats.generated.com_google_protobuf_4_33_0.Metrics;
6+
import io.prometheus.metrics.expositionformats.generated.com_google_protobuf_4_33_1.Metrics;
77
import java.io.IOException;
88
import java.net.URI;
99
import java.util.List;

mise.toml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"go:github.com/grafana/oats" = "0.4.1"
44
java = "temurin-25.0.1+8.0.LTS"
55
lychee = "0.21.0"
6-
protoc = "33.0"
6+
protoc = "33.1"
77

88
[tasks.ci]
99
description = "CI Build"
@@ -43,13 +43,17 @@ run = "./mvnw verify"
4343
description = "build all modules without tests"
4444
run = "./mvnw install -DskipTests -Dcoverage.skip=true"
4545

46-
[tasks.lint-links]
46+
[tasks."lint:links"]
4747
description = "Lint markdown links"
4848
run = "lychee --include-fragments ."
4949

50-
[tasks.lint-rest]
50+
[tasks."lint:rest"]
5151
description = "All lints not covered by super linter"
52-
depends = ["lint-links", "lint-bom"]
52+
depends = ["lint:links", "lint:bom"]
53+
54+
[tasks."lint:all"]
55+
description = "All lints"
56+
depends = ["lint:rest", "lint:super-linter"]
5357

5458
[tasks.acceptance-test]
5559
description = "Run OATs acceptance tests"

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<properties>
2424
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2525
<automatic.module.name>--module-name-need-to-be-overridden--</automatic.module.name>
26-
<protobuf-java.version>4.33.0</protobuf-java.version>
26+
<protobuf-java.version>4.33.1</protobuf-java.version>
2727
<guava.version>33.5.0-jre</guava.version>
2828
<junit-jupiter.version>6.0.1</junit-jupiter.version>
2929
<otel.instrumentation.version>2.16.0-alpha</otel.instrumentation.version>

prometheus-metrics-core/src/test/java/io/prometheus/metrics/core/metrics/CounterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import io.prometheus.metrics.config.MetricsProperties;
1010
import io.prometheus.metrics.config.PrometheusProperties;
1111
import io.prometheus.metrics.core.exemplars.ExemplarSamplerConfigTestUtil;
12-
import io.prometheus.metrics.expositionformats.generated.com_google_protobuf_4_33_0.Metrics;
12+
import io.prometheus.metrics.expositionformats.generated.com_google_protobuf_4_33_1.Metrics;
1313
import io.prometheus.metrics.expositionformats.internal.PrometheusProtobufWriterImpl;
1414
import io.prometheus.metrics.expositionformats.internal.ProtobufUtil;
1515
import io.prometheus.metrics.model.snapshots.CounterSnapshot;

prometheus-metrics-core/src/test/java/io/prometheus/metrics/core/metrics/HistogramTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import io.prometheus.metrics.core.datapoints.DistributionDataPoint;
1212
import io.prometheus.metrics.core.exemplars.ExemplarSamplerConfigTestUtil;
1313
import io.prometheus.metrics.expositionformats.OpenMetricsTextFormatWriter;
14-
import io.prometheus.metrics.expositionformats.generated.com_google_protobuf_4_33_0.Metrics;
14+
import io.prometheus.metrics.expositionformats.generated.com_google_protobuf_4_33_1.Metrics;
1515
import io.prometheus.metrics.expositionformats.internal.PrometheusProtobufWriterImpl;
1616
import io.prometheus.metrics.expositionformats.internal.ProtobufUtil;
1717
import io.prometheus.metrics.model.snapshots.*;

0 commit comments

Comments
 (0)