Skip to content

Commit 8e79c3f

Browse files
toumorokoshic24t
andauthored
Adding changelogs and readme updates for 0.4 (#438)
Adding changelogs and readme updates for 0.4 Co-Authored-By: Chris Kleinknecht <[email protected]>
1 parent 26e0576 commit 8e79c3f

File tree

12 files changed

+160
-10
lines changed

12 files changed

+160
-10
lines changed

README.md

Lines changed: 36 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -171,20 +171,46 @@ includes:
171171
- Flask Integration
172172
- PyMongo Integration
173173

174+
The v0.4 alpha release includes:
175+
176+
- Metrics MinMaxSumCount Aggregator
177+
- Context API
178+
- Full Metrics SDK Pipeline
179+
- Metrics STDOUT Exporter
180+
- Dbapi2 Integration
181+
- MySQL Integration
182+
- Psycopg2 Integration
183+
- Zipkin Exporter
184+
- Prometheus Metrics Exporter
185+
- New Examples and Improvements to Existing Examples
186+
187+
Thank you to the following individuals for contributing to this release:
188+
189+
* Alex Boten
190+
* Chris Kleinknecht
191+
* Christian Neumüller
192+
* Daniel González
193+
* Diego Hurtado
194+
* Golovin Pavel
195+
* Hector Hernandez
196+
* Jake Malachowski
197+
* Joshua H Lang
198+
* Leighton Chen
199+
* Mauricio Vásquez
200+
* Yusuke Tsutsumi
201+
174202
See the [project
175203
milestones](https://github.com/open-telemetry/opentelemetry-python/milestones)
176204
for details on upcoming releases. The dates and features described here are
177205
estimates, and subject to change.
178206

179207
Future releases targets include:
180208

181-
| Component | Version | Target Date |
182-
| ----------------------------------- | ---------- | ----------------- |
183-
| Zipkin Trace Exporter | Alpha v0.4 | February 21 2020 |
184-
| W3C Correlation Context Propagation | Alpha v0.4 | February 21 2020 |
185-
| Support for Tags/Baggage | Alpha v0.4 | February 21 2020 |
186-
| Metrics Aggregation | Alpha v0.4 | February 21 2020 |
187-
| gRPC Integrations | Alpha v0.4 | February 21 2020 |
188-
| Prometheus Metrics Exporter | Alpha v0.4 | February 21 2020 |
189-
| OpenCensus Bridge | Alpha v0.4 | February 21 2020 |
190-
| Metrics SDK (Complete) | Alpha v0.4 | February 21 2020 |
209+
| Component | Version | Target Date |
210+
| ----------------------------------- | ---------- | ------------ |
211+
| W3C Correlation Context Propagation | Beta v1 | March 16 2020|
212+
| Support for Tags/Baggage | Beta v1 | March 16 2020|
213+
| gRPC Integrations | Beta v1 | March 16 2020|
214+
| OpenTelemetry Collector Exporter | Beta v1 | March 16 2020|
215+
| OpenCensus Bridge | Beta v1 | March 16 2020|
216+
| Metrics SDK (Complete) | Beta v1 | March 16 2020|
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
## Unreleased
4+
5+
## 0.4a0
6+
7+
Released 2020-02-21
8+
9+
- Initial release

ext/opentelemetry-ext-flask/CHANGELOG.md

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

33
## Unreleased
44

5+
## 0.4a0
6+
7+
- Use string keys for WSGI environ values
8+
([#366](https://github.com/open-telemetry/opentelemetry-python/pull/366))
9+
10+
511
## 0.3a0
612

713
Released 2019-12-11

ext/opentelemetry-ext-jaeger/CHANGELOG.md

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

33
## Unreleased
44

5+
## 0.4a0
6+
7+
Released 2020-02-21
8+
59
- Export span status ([#367](https://github.com/open-telemetry/opentelemetry-python/pull/367))
610
- Export span kind ([#387](https://github.com/open-telemetry/opentelemetry-python/pull/387))
711

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
## Unreleased
4+
5+
## 0.4a0
6+
7+
Released 2020-02-21
8+
9+
- Initial release

ext/opentelemetry-ext-prometheus/CHANGELOG.md

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

33
## Unreleased
44

5+
## 0.4a0
6+
7+
Released 2020-02-21
8+
9+
- Initial release
10+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
## Unreleased
4+
5+
## 0.4a0
6+
7+
Released 2020-02-21
8+
9+
- Initial release

ext/opentelemetry-ext-pymongo/CHANGELOG.md

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

33
## Unreleased
44

5+
## 0.4a0
6+
7+
Released 2020-02-21
8+
9+
- Updating network connection attribute names
10+
([#350](https://github.com/open-telemetry/opentelemetry-python/pull/350))
11+
12+
513
## 0.3a0
614

715
Released 2019-12-11

ext/opentelemetry-ext-wsgi/CHANGELOG.md

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

33
## Unreleased
44

5+
## 0.4a0
6+
7+
Released 2020-02-21
8+
9+
- Updating network connection attribute names
10+
([#350](https://github.com/open-telemetry/opentelemetry-python/pull/350))
11+
512
## 0.3a0
613

714
Released 2019-12-11

ext/opentelemetry-ext-zipkin/CHANGELOG.md

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

33
## Unreleased
44

5+
## 0.4a0
6+
7+
Released 2020-02-21
8+
9+
- Initial release

0 commit comments

Comments
 (0)