This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-http.git
The following commit(s) were added to refs/heads/main by this push:
new b6558f0b2 release notes for 1.1.0-M1 (#561)
b6558f0b2 is described below
commit b6558f0b2a3c43b7405bfbd44813088a71bc664a
Author: PJ Fanning <[email protected]>
AuthorDate: Sun May 26 21:58:51 2024 +0100
release notes for 1.1.0-M1 (#561)
---
docs/src/main/paradox/release-notes/index.md | 43 +++-------------------
.../release-notes/{index.md => releases-1.0.md} | 2 +-
.../src/main/paradox/release-notes/releases-1.1.md | 25 +++++++++++++
3 files changed, 31 insertions(+), 39 deletions(-)
diff --git a/docs/src/main/paradox/release-notes/index.md
b/docs/src/main/paradox/release-notes/index.md
index 729a3bee5..793da9edb 100644
--- a/docs/src/main/paradox/release-notes/index.md
+++ b/docs/src/main/paradox/release-notes/index.md
@@ -1,43 +1,10 @@
# 0. Release Notes
-## 1.0.1
+@@toc { depth=1 }
-This is a bug fix release. There have also been some doc and build
improvements.
+@@@ index
-### Bug Fixes
-* Add optional throttle to handle excessive HTTP/2 non-data frames
([PR394](https://github.com/apache/pekko-http/pull/394))
-* Set the minimum required Pekko version to 1.0.0 (had been 1.0.1)
([PR328](https://github.com/apache/pekko-http/pull/328))
+* [1.1 Releases](releases-1.1.md)
+* [1.0 Releases](releases-1.0.md)
-## 1.0.0
-
-Apache Pekko HTTP 1.0.0 is based on Akka HTTP 10.2.10. Pekko came about as a
result of Lightbend's decision to make future
-Akka releases under a [Business Software
License](https://www.lightbend.com/blog/why-we-are-changing-the-license-for-akka),
-a license that is not compatible with Open Source usage.
-
-Apache Pekko has changed the package names, among other changes. Config names
have changed to use `pekko` instead
-of `akka` in their names. Users switching from Akka to Pekko should read our
@ref:[Migration Guide](../migration-guide/index.md).
-
-Generally, we have tried to make it as easy as possible to switch existing
Akka based projects over to using Pekko.
-
-We have gone through the code base and have tried to properly acknowledge all
third party source code in the
-Apache Pekko code base. If anyone believes that there are any instances of
third party source code that is not
-properly acknowledged, please get in touch.
-
-### Bug Fixes
-We haven't had to fix many bugs that were in Akka HTTP 10.2.10.
-
-* Use Java NIO Files#createTempFile
[PR170](https://github.com/apache/pekko-http/pull/170) (Akka HTTP
[CVE-2023-33251](https://akka.io/security/akka-http-cve-2023-05-15.html))
-
-### Additions
-* Scala 3 support ([PR150](https://github.com/apache/pekko-http/pull/150))
-* Added pekko-http-cors
([PR208](https://github.com/apache/pekko-http/pull/208))
-
-### Other Changes
-* Remove http2-support module. This module was only kept for compatibility
reasons before. Its code has long been part of the pekko-http-core
([PR52](https://github.com/apache/pekko-http/pull/52))
-
-### Dependency Upgrades
-We have tried to limit the changes to third party dependencies that are used
in Pekko HTTP 1.0.0. These are some exceptions:
-
-* parboiled 2.5.0 ([PR14](https://github.com/apache/pekko-http/pull/14)). We
have dropped the use of the internal Akka/Pekko copy of parboiled in favour of
using the jar directly. There have been reports of small binary compatibility
issues between parboiled 2.4.1 and parboiled 2.5.0
([#174](https://github.com/apache/pekko-http/issues/174)).
-* jackson 2.14.3
-* scalatest 3.2.14. Pekko users who have existing tests based on Akka Testkit
may need to migrate their tests due to the scalatest upgrade. The [scalatest
3.2 release notes](https://www.scalatest.org/release_notes/3.2.0) have a
detailed description of the changes needed.
+@@@
diff --git a/docs/src/main/paradox/release-notes/index.md
b/docs/src/main/paradox/release-notes/releases-1.0.md
similarity index 99%
copy from docs/src/main/paradox/release-notes/index.md
copy to docs/src/main/paradox/release-notes/releases-1.0.md
index 729a3bee5..6009b284b 100644
--- a/docs/src/main/paradox/release-notes/index.md
+++ b/docs/src/main/paradox/release-notes/releases-1.0.md
@@ -1,4 +1,4 @@
-# 0. Release Notes
+# 0. Release Notes (1.0.x)
## 1.0.1
diff --git a/docs/src/main/paradox/release-notes/releases-1.1.md
b/docs/src/main/paradox/release-notes/releases-1.1.md
new file mode 100644
index 000000000..aa3f8b7c3
--- /dev/null
+++ b/docs/src/main/paradox/release-notes/releases-1.1.md
@@ -0,0 +1,25 @@
+# 0. Release Notes (1.1.x)
+
+## 1.1.0-M1
+
+Release notes for Apache Pekko HTTP 1.1.0-M1. See [GitHub
Milestone](https://github.com/apache/pekko-http/milestone/1?closed=1) for
fuller list of changes.
+As with all milestone releases, this release is not recommended for production
use - it is designed to allow users to try out the changes in a test
environment.
+
+It is strongly recommended that you avoid using Pekko 1.0.x jars with this
release, you should use Pekko 1.1.x jars where possible. We don't expect there
to be problems running with Pekko 1.0.x jars but Pekko HTTP 1.1 jars are built
with Pekko 1.1 jars.
+
+All the changes in the @ref:[1.0.x releases](releases-1.0.md) up to and
including v1.0.1.
+
+### Changes
+* Changed names of HTTP status codes 413 and 422
([PR87](https://github.com/apache/pekko-http/pull/87))
+* Parse entire HTTP chunk size
([PR528](https://github.com/apache/pekko-http/pull/528))
+
+### Additions
+* Add UnsupportedContentTypeException Java DSL
([PR376](https://github.com/apache/pekko-http/pull/376))
+* new pekko-http-testkit-munit module
([PR536](https://github.com/apache/pekko-http/pull/536))
+
+### Dependency Changes
+
+Most of the dependency changes are small patch level upgrades. Some exceptions
include:
+
+* slf4j was updated to v2
+* Jackson 2.17.1
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]