Skip to content
This repository was archived by the owner on May 25, 2023. It is now read-only.

Commit 530a1b7

Browse files
committed
sbt-reactive-app 1.7.3
1 parent c5e4d1d commit 530a1b7

File tree

3 files changed

+26
-9
lines changed

3 files changed

+26
-9
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ThisBuild / organization := "com.lightbend"
22

33
lazy val exampleScalaVersion = "2.12.8"
4-
lazy val sbtreactiveappVersion = "1.7.1"
4+
lazy val sbtreactiveappVersion = "1.7.3"
55
lazy val reactiveLibVersion = "1.7.0"
66
lazy val reactiveCliVersion = "1.7.1"
77

src/main/paradox/getting-started/sbt-play-minikube.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,19 @@ lazy val root = (project in file("."))
7777
Add the following to `build.sbt` to declare an endpoint:
7878

7979
```scala
80-
rpEndpoints := HttpEndpoint(
81-
name = "http",
82-
ingress = new HttpIngress(
83-
ingressPorts = Vector(80, 443),
84-
hosts = Vector.empty,
85-
paths = Vector("/")
86-
)
87-
) :: Nil
80+
rpHttpIngressPaths := Seq("/")
81+
```
82+
83+
### conf/application.conf
84+
85+
Create `conf/application.conf` with the following content:
86+
87+
```
88+
play.filters.hosts {
89+
allowed = ["."]
90+
}
91+
# https://www.playframework.com/documentation/latest/Configuration
92+
play.http.secret.key="something"
8893
```
8994

9095
#### Start Minikube

src/main/paradox/release-notes.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,18 @@ sbt setting.
1414
| [reactive-lib](https://github.com/lightbend/reactive-lib/releases) | $reactivelib$ |
1515
@@@
1616

17+
## sbt-reactive-app 1.7.3
18+
19+
- Fixes Play 2.7 endpoint detection [sbt-reactive-app#184][sbt-reactive-app184]
20+
- Fixes Lagom http port detection [sbt-reactive-app#182][sbt-reactive-app182]
21+
- Fixes rp-application.conf becoming blank when deploying Play without reactive-lib modules [sbt-reactive-app#180][sbt-reactive-app180]
22+
- Makes unused `ingressPorts` optional in `HttpIngress` [sbt-reactive-app#181][sbt-reactive-app181]
23+
24+
[sbt-reactive-app184]: https://github.com/lightbend/sbt-reactive-app/pull/184
25+
[sbt-reactive-app182]: https://github.com/lightbend/sbt-reactive-app/pull/182
26+
[sbt-reactive-app181]: https://github.com/lightbend/sbt-reactive-app/pull/181
27+
[sbt-reactive-app180]: https://github.com/lightbend/sbt-reactive-app/pull/180
28+
1729
## 1.7.1
1830

1931
### sbt-native-packager 1.3.18

0 commit comments

Comments
 (0)