Skip to content

Commit

Permalink
Merge branch 'main' into gradle/build-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhee17 authored Aug 23, 2023
2 parents bbb13e4 + 59baf81 commit f9e3d61
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
import org.reactivestreams.tck.TestEnvironment;
import org.testng.annotations.Test;

import com.linecorp.armeria.common.CommonPools;
import com.linecorp.armeria.common.HttpData;
import com.linecorp.armeria.common.stream.StreamMessage;

Expand All @@ -48,8 +49,13 @@ public class MultipartEncoderTckTest extends PublisherVerification<HttpData> {

// Forked from https://github.com/oracle/helidon/blob/9d209a1a55f927e60e15b061700384e438ab5a01/media/multipart/src/test/java/io/helidon/media/multipart/MultiPartEncoderTckTest.java

static {
// Make sure the worker group is initialized.
CommonPools.workerGroup().next().submit(() -> {});
}

public MultipartEncoderTckTest() {
super(new TestEnvironment(200));
super(new TestEnvironment(500));
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.linecorp.armeria
version=1.26.0-SNAPSHOT
version=1.25.1-SNAPSHOT
projectName=Armeria
projectUrl=https://armeria.dev/
projectDescription=Asynchronous HTTP/2 RPC/REST client/server library built on top of Java 8, Netty, Thrift and gRPC
Expand Down
2 changes: 1 addition & 1 deletion logback/logback/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies {
// Logback
api libs.logback12
api project(':logback12')
}
17 changes: 17 additions & 0 deletions site/src/pages/release-notes/1.25.1.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
date: 2023-08-23
---

## 🛠️ Bug fixes

- `armeria-logback` now correctly declares the `armeria-logback12` dependency. #5139
- Only 1.25.0 is affected.

## 🙇 Thank you

<ThankYou usernames={[
'ikhoon',
'jrhee17',
'minwoox',
'trustin'
]} />

0 comments on commit f9e3d61

Please sign in to comment.