Skip to content

Commit

Permalink
prefix Akka HTTP versions (#342)
Browse files Browse the repository at this point in the history
* prefix Akka HTTP versions

* javafmt
  • Loading branch information
pjfanning authored Oct 24, 2023
1 parent 0652813 commit 6df57df
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/main/paradox/.htaccess
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Since 10.0.9
# Since Akka HTTP 10.0.9
RedirectMatch 301 ^(.*)/common/de-coding.html$ $1/common/encoding.html
RedirectMatch 301 ^(.*)/low-level-server-side-api.html$ $1/server-side/low-level-api.html
RedirectMatch 301 ^(.*)/server-side-https-support.html$ $1/server-side/https-support.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ public static HttpCookie create(
}

/**
* @deprecated Since 10.2.0. Use {@link #create(String, String, Optional, OptionalLong, Optional,
* Optional, boolean, boolean, Optional, Optional)} instead.
* @deprecated Since Akka HTTP 10.2.0. Use {@link #create(String, String, Optional, OptionalLong,
* Optional, Optional, boolean, boolean, Optional, Optional)} instead.
*/
@SuppressWarnings("unchecked")
public static HttpCookie create(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ abstract class ConnectionPoolSettings extends js.ConnectionPoolSettings { self:
self.copyDeep(_.withResponseEntitySubscriptionTimeout(newValue), responseEntitySubscriptionTimeout = newValue)

/**
* Since 10.1.0, the transport is configured in [[ClientConnectionSettings]]. This method is a shortcut for
* Since Akka HTTP 10.1.0, the transport is configured in [[ClientConnectionSettings]]. This method is a shortcut for
* `withUpdatedConnectionSettings(_.withTransport(newTransport))`.
*/
def withTransport(newValue: ClientTransport): ConnectionPoolSettings =
Expand Down
2 changes: 1 addition & 1 deletion project/Doc.scala
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ object UnidocRoot extends AutoPlugin {
if (isJdk8) Seq("-Xdoclint:none")
else Seq("-Xdoclint:none", "--ignore-source-errors")),
// genjavadoc needs to generate synthetic methods since the java code uses them
// fails since 10.0.11 disabled to get the doc gen to pass, see #1584
// fails since Akka HTTP 10.0.11 disabled to get the doc gen to pass, see #1584
// scalacOptions += "-P:genjavadoc:suppressSynthetic=false",
// FIXME: see https://github.com/akka/akka-http/issues/230
JavaUnidoc / unidoc / sources ~= (_.filterNot(
Expand Down

0 comments on commit 6df57df

Please sign in to comment.