Skip to content

Commit

Permalink
Add the release note for 1.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
minwoox committed Nov 23, 2021
1 parent 6f23ef2 commit e35d357
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
*
* <p>To include docstrings in {@link DocService} pages, configure the protobuf compiler to generate
* a descriptor set with source info and all imports included. Place the descriptor set in the classpath
* location {@code META-INF/armeria/grpc} and ensure the file extension is '.dsc'. The classpath location
* location {@code META-INF/armeria/grpc} and ensure the file extension is one of '.bin', '.desc', '.dsc',
* '.pb', and '.protobin'. The classpath location
* can be changed by setting the {@code com.linecorp.armeria.grpc.descriptorDir} system property.
*
* <p>For example, to generate a descriptor set in Gradle:
Expand Down
2 changes: 1 addition & 1 deletion site/release-note.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async function getMilestoneId(version: string): Promise<number> {
repo: 'armeria',
direction: 'desc',
per_page: 100,
state: 'all',
state: 'open',
},
);
const found = response.data.find((milestone) => milestone.title === version);
Expand Down
53 changes: 53 additions & 0 deletions site/src/pages/release-notes/1.13.3.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
date: 2021-11-23
---

## 🌟 New features

- N/A

## 📈 Improvements

- N/A

## 🛠️ Bug fixes

- <type://DecodingClient> does not raise an exception anymore when duplicated encodings are specified. #3932 #3934
- The duplicated encodings are silently ignored.
- `unfinishedResponse` is correctly decremented when the <type://HttpResponse> is cancelled. #3920
- The text in the description sections are now correctly rendered in DocService. #3917
- The status of a protocol violation is now correctly logged by <type://LoggingService> #3914
- A response headers is exactly written once when a protocol violation error is raised.
- `GrpcDocStringExtractor` now reads description from `bin`, `desc`, `dsc`, `pb`, and `protobin` file. #3912
- You no longer see `Maximum active streams violated for this endpoint.` exception anymore. #3858 #3908
- <type://EurekaEndpointGroupBuilder> now fails if an empty string is specified for `appName` and
other parameters. #3903
- OkHttp can be used with self-signed certificate in Armeria. #3902
- Users can use `https://127.0.0.1:` with the default self-signed certificate.
- <type://GraphqlService> now produces `graphql+json` response when the `accept` header is `*`. #3898

## 🏚️ Deprecations

- N/A

## ☢️ Breaking changes

- N/A

## Dependencies

- N/A

## 🙇 Thank you

<ThankYou usernames={[
'anuraaga',
'eisig',
'heowc',
'hyangtack',
'ikhoon',
'jrhee17',
'minwoox',
'ohadgur',
'trustin'
]} />

0 comments on commit e35d357

Please sign in to comment.