Skip to content

Commit

Permalink
Bump io.micrometer:micrometer-bom from 1.13.6 to 1.14.3 (#15077)
Browse files Browse the repository at this point in the history
* Bump io.micrometer:micrometer-bom from 1.13.6 to 1.14.3

Bumps [io.micrometer:micrometer-bom](https://github.com/micrometer-metrics/micrometer) from 1.13.6 to 1.14.3.
- [Release notes](https://github.com/micrometer-metrics/micrometer/releases)
- [Commits](micrometer-metrics/micrometer@v1.13.6...v1.14.3)

---
updated-dependencies:
- dependency-name: io.micrometer:micrometer-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix field name

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Albumen Kevin <[email protected]>
  • Loading branch information
dependabot[bot] and AlbumenJ authored Jan 31, 2025
1 parent a433c59 commit c23e951
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dubbo-dependencies-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
<snakeyaml_version>2.3</snakeyaml_version>
<commons_lang3_version>3.17.0</commons_lang3_version>
<envoy_api_version>0.1.35</envoy_api_version>
<micrometer.version>1.13.6</micrometer.version>
<micrometer.version>1.14.3</micrometer.version>
<opentelemetry.version>1.46.0</opentelemetry.version>
<zipkin-reporter.version>3.4.3</zipkin-reporter.version>
<micrometer-tracing.version>1.4.2</micrometer-tracing.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static Invoker<?> getMockInvokerWithUrl() {

public static String getValueForKey(KeyValues keyValues, Object key)
throws NoSuchFieldException, IllegalAccessException {
Field f = KeyValues.class.getDeclaredField("keyValues");
Field f = KeyValues.class.getDeclaredField("sortedSet");
f.setAccessible(true);
KeyValue[] kv = (KeyValue[]) f.get(keyValues);
for (KeyValue keyValue : kv) {
Expand Down

0 comments on commit c23e951

Please sign in to comment.