Skip to content

Commit 541ef89

Browse files
jack-bergtrask
andauthored
Prepare for 1.45.0 release (#6923)
Co-authored-by: Trask Stalnaker <[email protected]>
1 parent b07dab3 commit 541ef89

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

CHANGELOG.md

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

33
## Unreleased
44

5+
### API
6+
7+
* Add convenience method `setAttribute(Attribute<Long>, int)` to SpanBuilder (matching the existing
8+
convenience method in Span)
9+
([#6884](https://github.com/open-telemetry/opentelemetry-java/pull/6884))
10+
* Extends TextMapGetter with experimental GetAll() method, implement usage in W3CBaggagePropagator
11+
([#6852](https://github.com/open-telemetry/opentelemetry-java/pull/6852))
12+
13+
### SDK
14+
15+
#### Traces
16+
17+
* Add synchronization to SimpleSpanProcessor to ensure thread-safe export of spans
18+
([#6885](https://github.com/open-telemetry/opentelemetry-java/pull/6885))
19+
20+
#### Metrics
21+
22+
* Lazily initialize ReservoirCells
23+
([#6851](https://github.com/open-telemetry/opentelemetry-java/pull/6851))
24+
25+
#### Logs
26+
27+
* Add synchronization to SimpleLogRecordProcessor to ensure thread-safe export of logs
28+
([#6885](https://github.com/open-telemetry/opentelemetry-java/pull/6885))
29+
30+
#### Exporters
31+
32+
* OTLP: Update opentelementry-proto to 1.4
33+
([#6906](https://github.com/open-telemetry/opentelemetry-java/pull/6906))
34+
* OTLP: Rename internal Marshaler#writeJsonToGenerator method to allow jackson runtimeOnly dependency
35+
([#6896](https://github.com/open-telemetry/opentelemetry-java/pull/6896))
36+
* OTLP: Fix repeated string serialization for JSON.
37+
([#6888](https://github.com/open-telemetry/opentelemetry-java/pull/6888))
38+
* OTLP: Fix missing unsafe available check
39+
([#6920](https://github.com/open-telemetry/opentelemetry-java/pull/6920))
40+
41+
#### Extensions
42+
43+
* Declarative config: Don't require empty objects when referencing custom components
44+
([#6891](https://github.com/open-telemetry/opentelemetry-java/pull/6891))
45+
46+
### Tooling
47+
48+
* Add javadoc boilerplate internal comment v2 for experimental classes
49+
([#6886](https://github.com/open-telemetry/opentelemetry-java/pull/6886))
50+
* Update develocity configuration
51+
([#6903](https://github.com/open-telemetry/opentelemetry-java/pull/6903))
52+
553
## Version 1.44.1 (2024-11-10)
654

755
### SDK

api/all/src/main/java/io/opentelemetry/api/trace/SpanBuilder.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ public interface SpanBuilder {
245245
* @param key the key for this attribute.
246246
* @param value the value for this attribute.
247247
* @return this.
248+
* @since 1.45.0
248249
*/
249250
default SpanBuilder setAttribute(AttributeKey<Long> key, int value) {
250251
return setAttribute(key, (long) value);

0 commit comments

Comments
 (0)