Docs for 1.10.1 relesae (#4108)

* Update release documentation

* Update version in docs

* Update changelog
This commit is contained in:
jack-berg 2022-01-21 19:54:51 -06:00 committed by GitHub
parent b2873186e3
commit bd0b474d83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 18 deletions

View File

@ -2,6 +2,14 @@
## Version 1.11.0 (unreleased):
---
## Version 1.10.1 2022-01-21:
### Bugfixes
- Fix issue preventing registration of PrometheusCollector with SDK
- Allow retry policy to be set for OkHttpGrpcExporter
---
## Version 1.10.0 2022-01-07:

View File

@ -81,7 +81,7 @@ dependency versions in sync.
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-bom</artifactId>
<version>1.10.0</version>
<version>1.10.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@ -100,7 +100,7 @@ dependency versions in sync.
```groovy
dependencies {
implementation platform("io.opentelemetry:opentelemetry-bom:1.10.0")
implementation platform("io.opentelemetry:opentelemetry-bom:1.10.1")
implementation('io.opentelemetry:opentelemetry-api')
}
```
@ -109,8 +109,8 @@ Note that if you want to use any artifacts that have not fully stabilized yet (s
```groovy
dependencies {
implementation platform("io.opentelemetry:opentelemetry-bom:1.10.0")
implementation platform('io.opentelemetry:opentelemetry-bom-alpha:1.10.0-alpha')
implementation platform("io.opentelemetry:opentelemetry-bom:1.10.1")
implementation platform('io.opentelemetry:opentelemetry-bom-alpha:1.10.1-alpha')
implementation('io.opentelemetry:opentelemetry-api')
implementation('io.opentelemetry:opentelemetry-api-metrics')
@ -186,20 +186,20 @@ This is a **current** feature status list:
| Component | Version |
| --------------------------- | ------- |
| Trace API | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
| Trace SDK | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
| Context | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
| Baggage | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
| Jaeger Trace Exporter | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
| Zipkin Trace Exporter | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
| OTLP Exporter (Spans) | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
| Metrics API | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
| OTLP Exporter (Metrics) | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
| Metrics SDK | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
| Logs SDK | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
| Prometheus Metrics Exporter | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
| OpenTracing Bridge | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
| OpenCensus Bridge | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
| Trace API | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
| Trace SDK | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
| Context | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
| Baggage | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
| Jaeger Trace Exporter | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
| Zipkin Trace Exporter | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
| OTLP Exporter (Spans) | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
| Metrics API | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
| OTLP Exporter (Metrics) | v<!--VERSION_UNSTABLE-->1.10.1-alpha<!--/VERSION_UNSTABLE--> |
| Metrics SDK | v<!--VERSION_UNSTABLE-->1.10.1-alpha<!--/VERSION_UNSTABLE--> |
| Logs SDK | v<!--VERSION_UNSTABLE-->1.10.1-alpha<!--/VERSION_UNSTABLE--> |
| Prometheus Metrics Exporter | v<!--VERSION_UNSTABLE-->1.10.1-alpha<!--/VERSION_UNSTABLE--> |
| OpenTracing Bridge | v<!--VERSION_UNSTABLE-->1.10.1-alpha<!--/VERSION_UNSTABLE--> |
| OpenCensus Bridge | v<!--VERSION_UNSTABLE-->1.10.1-alpha<!--/VERSION_UNSTABLE--> |
See the project [milestones](https://github.com/open-telemetry/opentelemetry-java/milestones)
for details on upcoming releases. The dates and features described in issues

View File

@ -84,6 +84,16 @@ git fetch upstream v1.2.x
git checkout upstream/v1.2.x
```
If the release branch does not exist, checkout the tag, create the release branch from it, and push
it to the `upstream`.
```
git fetch upstream v1.2.0
git checkout v1.2.0
git checkout -b v1.2.x
git push upstream v1.2.x
```
Apply cherrypicks manually and commit. It is ok to apply multiple cherrypicks in a single commit.
Use a commit message such as "Manual cherrypick for commits commithash1, commithash2".