From c697ddf3a548359d1e93a69c5738b5b316829589 Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Wed, 11 Dec 2024 11:35:17 +0100 Subject: [PATCH] Fix announcement --- news/2024-12-11-4-2-0-RC1.md | 54 ++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 12 deletions(-) diff --git a/news/2024-12-11-4-2-0-RC1.md b/news/2024-12-11-4-2-0-RC1.md index 7bca4de706..25da324c71 100644 --- a/news/2024-12-11-4-2-0-RC1.md +++ b/news/2024-12-11-4-2-0-RC1.md @@ -1,40 +1,70 @@ --- layout: news-item -title: 'Netty 4.2.0.Beta1 released' +title: 'Netty 4.2.0.RC1 released' author: normanmaurer --- -We are happy to announce the release of the first beta for the upcoming netty version 4.2.0. Everyone using netty 4.1.x should be able to upgrade to 4.2.0.Alpha4 without any API breakage. The only new requirement is JDK8 or later. +We are happy to announce the release of the first release canidate for the upcoming netty version 4.2.0. Everyone using netty 4.1.x should be able to upgrade to 4.2.0.Alpha4 without any API breakage. The only new requirement is JDK8 or later. -We encourage users of netty 4.1.x to try out this alpha release and so provide feedback if any breakage is noticed. This will help us to be aware of any problems early in the release cycle. That said, be aware that this is only an alpha release and so __shouldn't__ be considered for production usage. +We encourage users of netty 4.1.x to try out this alpha release and so provide feedback if any breakage is noticed. This will help us to be aware of any problems early in the release cycle. That said, be aware that this is only an release canidate and so __shouldn't__ be considered for production usage yet. Netty 4.2.0 will come with some exciting new features that you can learn more about in the announcement of [netty 4.2.0.Alpha1](https://netty.io/news/2024/06/12/4-2-0-Alpha1.html). The most important changes in this release are: -* Fix SSL session resumption with ClientAuth.OPTIONAL and add tests with session tickets ([#14404](https://github.com/netty/netty/pull/14404)) -* Fix incorrect cast in NioDomainSocketChannel.parent() ([#14409](https://github.com/netty/netty/pull/14409)) -* Fix bug where SslHandler may stall after TLSv1.3 handshake with delegate tasks ([#14411](https://github.com/netty/netty/pull/14411)) -* Log / include the correct error during handshake failure ([#14428](https://github.com/netty/netty/pull/14428)) -* Update to netty-tcnative 2.0.69.Final ([#14422](https://github.com/netty/netty/pull/14422)) -* Fix epoll_wait retry loop ([#14425](https://github.com/netty/netty/pull/14425)) -* Allow MessageToMessageDecoder to take care of reading more data when needed ([#14372](https://github.com/netty/netty/pull/14372)) +* Add a module for generating X.509 certificates for testing ([#14263](https://github.com/netty/netty/pull/14263)) +* Include details on why it was not possible to configure accepted issuers in the SSLException ([#14438](https://github.com/netty/netty/pull/14438)) +* Verify default named groups before using them with native SSL implementation ([#14441](https://github.com/netty/netty/pull/14441)) +* Correctly detect if KeyManager is not supported by OpenSSL version ([#14442](https://github.com/netty/netty/pull/14442)) +* Allow to set used named groups per OpenSslContext ([#14443](https://github.com/netty/netty/pull/14443)) +* Preserve ordering of default named groups during conversation ([#14449](https://github.com/netty/netty/pull/14449)) +* Specialize Adaptive's allocator Recycler based on magazine's owner ([#14454](https://github.com/netty/netty/pull/14454)) +* PcapWriteHandler no longer ignores writePcapGlobalHeader ([#14484](https://github.com/netty/netty/pull/14484)) +* IoUring: Add FileRegion support ([#14487](https://github.com/netty/netty/pull/14487)) +* AdaptiveByteBufAllocator will not use threadlocal magazine if `FastThreadLocalThread.willCleanupFastThreadLocals()` returns false ([#14490](https://github.com/netty/netty/pull/14490)) +* Add range check for AdaptivePoolingAllocator.CENTRAL_QUEUE_CAPACITY and MAGAZINE_BUFFER_QUEUE_CAPACITY ([#14497](https://github.com/netty/netty/pull/14497)) +* Fix HTTP header validation bug ([#14500](https://github.com/netty/netty/pull/14500)) +* Make sure the sentinel Magazine.MAGAZINE_FREED not be replaced ([#14503](https://github.com/netty/netty/pull/14503)) +* Narrow the lock scope of `AdaptivePoolingAllocator.magazineExpandLock` ([#14504](https://github.com/netty/netty/pull/14504)) +* IoUring: Fix AssertionError when closing IoUringServerChannel twice ([#14506](https://github.com/netty/netty/pull/14506)) +* IoUring: Correcly handle double closure and always cancel submitted IO ops on deregistration ([#14510](https://github.com/netty/netty/pull/14510)) +* fix: Don't make MqttPublishMessage ensure payload accessibility ([#14512](https://github.com/netty/netty/pull/14512)) +* Decrease usedMemory of magazine when the chunk get deallocated or moved to central queue ([#14515](https://github.com/netty/netty/pull/14515)) +* AdaptiveByteBufAllocator: Correctly manage used memory strategy in all cases ([#14516](https://github.com/netty/netty/pull/14516)) +* Use StandardCompressionOptions in all constructors of `HttpContentCompressor` ([#14517](https://github.com/netty/netty/pull/14517)) +* Only try to use Zstd and Brotli if we can load the native libs. ([#14520](https://github.com/netty/netty/pull/14520)) +* IoUring: Refactor IoUringIoOps to better match the underlying io_uring_sqe ([#14521](https://github.com/netty/netty/pull/14521)) +* IoUring: Ensure buffers don't leak if submission fails ([#14525](https://github.com/netty/netty/pull/14525)) +* IoUring: Correct update internal state for cancelled operations ([#14529](https://github.com/netty/netty/pull/14529)) +* IoUring: Correctly handle cancelletion of close and connect ([#14531](https://github.com/netty/netty/pull/14531)) +* IoUring: Always cancel all ops on deregistration / close ([#14537](https://github.com/netty/netty/pull/14537)) +* Deprecate ChannelPipeline.add*(EventExecutorGroup....) methods ([#14538](https://github.com/netty/netty/pull/14538)) +* IoUring: IoUringHandler must not manually cancel IoUringHandle on teardown ([#14539](https://github.com/netty/netty/pull/14539)) +* Implement 'inEventLoop' for UnorderedThreadPoolEventExecutor and deprecate it ([#14544](https://github.com/netty/netty/pull/14544)) +* IoUring: Correctly handle accept submit failures ([#14547](https://github.com/netty/netty/pull/14547)) +* IoUring: Make static methods of IoUringIoOps package-private ([#14551](https://github.com/netty/netty/pull/14551)) +For all the changes please vision our [issue-tracker](https://github.com/netty/netty/milestone/302?closed=1). + # Thank You Every idea and bug-report counts, and so we thought it is worth mentioning those who helped in this area. Please report an unintended omission. + +* [@BradleyJ-SAIC](https://github.com/BradleyJ-SAIC) * [@bryce-anderson](https://github.com/bryce-anderson) * [@chrisvest](https://github.com/chrisvest) -* [@dsidorov](https://github.com/dsidorov) +* [@dreamlike-ocean](https://github.com/dreamlike-ocean) * [@franz1981](https://github.com/franz1981) +* [@He-Pin](https://github.com/He-Pin) * [@laosijikaichele](https://github.com/laosijikaichele) * [@normanmaurer](https://github.com/normanmaurer) +* [@slandelle](https://github.com/slandelle) * [@yawkat](https://github.com/yawkat) -Beside this we also would like to thank everyone who took the time to test 4.2.0.Alpha* so far. +Beside this we also would like to thank everyone who took the time to test 4.2.0.* so far.