Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0ae01b9

Browse files
authored
docs: backfill changelogs since 0.6 (open-telemetry#671)
Halfway through the 0.6 to 0.7 release, a policy was added to ensure changelogs are added to each PR as they are merged in. Retroactively backfilling changelog entries that were missed before the policy was enacted.
1 parent bf850cd commit 0ae01b9

File tree

7 files changed

+59
-10
lines changed

7 files changed

+59
-10
lines changed

ext/opentelemetry-ext-pymongo/CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
- Implement instrumentor interface ([#612](https://github.com/open-telemetry/opentelemetry-python/pull/612))
66

7-
87
## 0.4a0
98

109
Released 2020-02-21

ext/opentelemetry-ext-pymysql/CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22

33
## Unreleased
44

5-
- Implement instrument_connection and uninstrument_connection ([#624](https://github.com/open-telemetry/opentelemetry-python/pull/624))
6-
- Implement PyMySQL integration ([#504](https://github.com/open-telemetry/opentelemetry-python/pull/504))
7-
- Implement instrumentor interface ([#611](https://github.com/open-telemetry/opentelemetry-python/pull/611))
5+
- Initial release

ext/opentelemetry-ext-requests/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22

33
## Unreleased
44

5-
- Rename package to opentelemetry-ext-requests ([#619](https://github.com/open-telemetry/opentelemetry-python/pull/619))
6-
- Implement instrumentor interface ([#597](https://github.com/open-telemetry/opentelemetry-python/pull/597))
5+
- Rename package to opentelemetry-ext-requests
6+
([#619](https://github.com/open-telemetry/opentelemetry-python/pull/619))
7+
- Implement instrumentor interface, enabling auto-instrumentation
8+
([#597](https://github.com/open-telemetry/opentelemetry-python/pull/597))
9+
- Adding disable_session for more granular instrumentation control
10+
([#573](https://github.com/open-telemetry/opentelemetry-python/pull/573))
11+
- Add a callback for custom attributes
12+
([#656](https://github.com/open-telemetry/opentelemetry-python/pull/656))
713

814
## 0.3a0
915

ext/opentelemetry-ext-zipkin/CHANGELOG.md

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

33
## Unreleased
44

5+
- bugfix: 'debug' field is now correct
6+
([#549](https://github.com/open-telemetry/opentelemetry-python/pull/549))
7+
58
## 0.4a0
69

710
Released 2020-02-21

opentelemetry-api/CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## Unreleased
44

5+
- Add reset for the global configuration object, for testing purposes
6+
([#636](https://github.com/open-telemetry/opentelemetry-python/pull/636))
7+
- tracer.get_tracer now optionally accepts a TracerProvider
8+
([#602](https://github.com/open-telemetry/opentelemetry-python/pull/602))
9+
- Configuration object can now be used by any component of opentelemetry,
10+
including 3rd party instrumentations
11+
([#563](https://github.com/open-telemetry/opentelemetry-python/pull/563))
12+
- bugfix: configuration object now matches fields in a case-sensitive manner
13+
([#583](https://github.com/open-telemetry/opentelemetry-python/pull/583))
14+
- bugfix: configuration object now accepts all valid python variable names
15+
([#583](https://github.com/open-telemetry/opentelemetry-python/pull/583))
16+
- bugfix: configuration undefined attributes now return None instead of raising
17+
an AttributeError.
18+
([#583](https://github.com/open-telemetry/opentelemetry-python/pull/583))
19+
520
## 0.6b0
621

722
Released 2020-03-30
@@ -36,7 +51,7 @@ Released 2020-03-16
3651
- Renaming TracerSource to TraceProvider
3752
([#441](https://github.com/open-telemetry/opentelemetry-python/pull/441))
3853
- Adding attach/detach methods as per spec
39-
([#429](https://github.com/open-telemetry/opentelemetry-python/pull/450)
54+
([#429](https://github.com/open-telemetry/opentelemetry-python/pull/450)
4055

4156
## 0.4a0
4257

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
- Add support for programmatic instrumentation
6+
([#579](https://github.com/open-telemetry/opentelemetry-python/pull/569))
7+
- bugfix: enable auto-instrumentation command to work for custom entry points
8+
(e.g. flask_run)
9+
([#567](https://github.com/open-telemetry/opentelemetry-python/pull/567))
10+
11+
312
## 0.6b0
413

514
Released 2020-03-30
615

7-
- Initial release.
16+
- Initial release.

opentelemetry-sdk/CHANGELOG.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
## Unreleased
44

5+
- Exporter API: span parents are now always spancontext
6+
([#548](https://github.com/open-telemetry/opentelemetry-python/pull/548))
7+
- tracer.get_tracer now optionally accepts a TracerProvider
8+
([#602](https://github.com/open-telemetry/opentelemetry-python/pull/602))
9+
- Console span exporter now prints prettier, more legible messages
10+
([#505](https://github.com/open-telemetry/opentelemetry-python/pull/505))
11+
- bugfix: B3 propagation now retrieves parentSpanId correctly
12+
([#621](https://github.com/open-telemetry/opentelemetry-python/pull/621))
13+
- bugfix: a DefaultSpan now longer causes an exception when used with tracer
14+
([#577](https://github.com/open-telemetry/opentelemetry-python/pull/577))
15+
- move last_updated_timestamp into aggregators instead of bound metric
16+
instrument
17+
([#522](https://github.com/open-telemetry/opentelemetry-python/pull/522))
18+
- bugfix: suppressing instrumentation in metrics to eliminate an infinite loop
19+
of telemetry
20+
([#529](https://github.com/open-telemetry/opentelemetry-python/pull/529))
21+
- bugfix: freezing span attribute sequences, reducing potential user errors
22+
([#529](https://github.com/open-telemetry/opentelemetry-python/pull/529))
23+
524
## 0.6b0
625

726
Released 2020-03-30
@@ -32,13 +51,13 @@ Released 2020-03-16
3251
- Implement observer instrument
3352
([#425](https://github.com/open-telemetry/opentelemetry-python/pull/425))
3453

35-
## 0.4a0
54+
## 0.4a0
3655

3756
Released 2020-02-21
3857

3958
- Added named Tracers
4059
([#301](https://github.com/open-telemetry/opentelemetry-python/pull/301))
41-
- Set status for ended spans
60+
- Set status for ended spans
4261
([#297](https://github.com/open-telemetry/opentelemetry-python/pull/297) and
4362
[#358](https://github.com/open-telemetry/opentelemetry-python/pull/358))
4463
- Use module loggers

0 commit comments

Comments
 (0)