Skip to content

Commit b1cd30e

Browse files
authored
Prepare changelog for 1.43.0 release (#6782)
1 parent b6badb2 commit b1cd30e

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,50 @@
22

33
## Unreleased
44

5+
### API
6+
7+
* Add helper class to capture context using ScheduledExecutorService
8+
([#6712](https://github.com/open-telemetry/opentelemetry-java/pull/6712))
9+
* Adds Baggage.getEntry(String key)
10+
([#6765](https://github.com/open-telemetry/opentelemetry-java/pull/6765))
11+
12+
#### Extensions
13+
14+
* Fix ottracepropagation for short span ids
15+
([#6734](https://github.com/open-telemetry/opentelemetry-java/pull/6734))
16+
17+
### SDK
18+
19+
#### Metrics
20+
21+
* Optimize advice with FilteredAttributes
22+
([#6633](https://github.com/open-telemetry/opentelemetry-java/pull/6633))
23+
24+
#### Exporters
25+
26+
* Add experimental stdout log, metric, trace exporters for printing records to stdout in standard
27+
OTLP JSON format.
28+
([#6675](https://github.com/open-telemetry/opentelemetry-java/pull/6675), [#6750](https://github.com/open-telemetry/opentelemetry-java/pull/6750))
29+
* Add Marshalers for profiling signal type
30+
([#6680](https://github.com/open-telemetry/opentelemetry-java/pull/6680))
31+
32+
#### Extensions
33+
34+
* Add `*Model` suffix to declarative config generated classes.
35+
([#6721](https://github.com/open-telemetry/opentelemetry-java/pull/6721))
36+
* Use autoconfigured ClassLoader to load declarative config
37+
([#6725](https://github.com/open-telemetry/opentelemetry-java/pull/6725))
38+
* Update declarative config to use opentelemetry-configuration v0.3.0
39+
([#6733](https://github.com/open-telemetry/opentelemetry-java/pull/6733))
40+
* Add `StructuredConfigProperties#getStructured` default method,
41+
add `StructuredConfigProperties.empty()`
42+
([#6759](https://github.com/open-telemetry/opentelemetry-java/pull/6759))
43+
44+
#### Testing
45+
46+
* Add context info about wrong span or trace.
47+
([#6703](https://github.com/open-telemetry/opentelemetry-java/pull/6703))
48+
549
## Version 1.42.1 (2024-09-10)
650

751
### API

api/all/src/main/java/io/opentelemetry/api/baggage/Baggage.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ default boolean isEmpty() {
105105
*
106106
* @param entryKey entry key to return the {@code BaggageEntry} for, or {@code null} if no {@code
107107
* Entry} with the given {@code entryKey} is in this {@code Baggage}.
108+
* @since 1.43.0
108109
*/
109110
@Nullable
110111
default BaggageEntry getEntry(String entryKey) {

0 commit comments

Comments
 (0)