Skip to content

Commit 2b4c4b5

Browse files
authored
Merge branch 'master' into bump-to-reactor-core-3-5-0
2 parents 3b88668 + 806ddc0 commit 2b4c4b5

File tree

851 files changed

+401780
-155362
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

851 files changed

+401780
-155362
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
GOARCH: amd64
2626
GOPROXY: https://proxy.golang.org
2727
JDK_VER: ${{ matrix.java }}
28-
DAPR_CLI_VER: 1.10.0-rc.1
29-
DAPR_RUNTIME_VER: 1.10.0-rc.2
30-
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.10.0-rc.1/install/install.sh
28+
DAPR_CLI_VER: 1.10.0
29+
DAPR_RUNTIME_VER: 1.10.0
30+
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.10.0/install/install.sh
3131
DAPR_CLI_REF:
3232
DAPR_REF:
3333
steps:

.github/workflows/validate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
GOARCH: amd64
3838
GOPROXY: https://proxy.golang.org
3939
JDK_VER: ${{ matrix.java }}
40-
DAPR_CLI_VER: 1.10.0-rc.1
41-
DAPR_RUNTIME_VER: 1.10.0-rc.2
42-
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.10.0-rc.1/install/install.sh
40+
DAPR_CLI_VER: 1.10.0
41+
DAPR_RUNTIME_VER: 1.10.0
42+
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.10.0/install/install.sh
4343
DAPR_CLI_REF:
4444
DAPR_REF:
4545
steps:

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@ For a Maven project, add the following to your `pom.xml` file:
5252
<dependency>
5353
<groupId>io.dapr</groupId>
5454
<artifactId>dapr-sdk</artifactId>
55-
<version>1.7.1</version>
55+
<version>1.8.0</version>
5656
</dependency>
5757
<!-- Dapr's SDK for Actors (optional). -->
5858
<dependency>
5959
<groupId>io.dapr</groupId>
6060
<artifactId>dapr-sdk-actors</artifactId>
61-
<version>1.7.1</version>
61+
<version>1.8.0</version>
6262
</dependency>
6363
<!-- Dapr's SDK integration with SpringBoot (optional). -->
6464
<dependency>
6565
<groupId>io.dapr</groupId>
6666
<artifactId>dapr-sdk-springboot</artifactId>
67-
<version>1.7.1</version>
67+
<version>1.8.0</version>
6868
</dependency>
6969
...
7070
</dependencies>
@@ -78,11 +78,11 @@ For a Gradle project, add the following to your `build.gradle` file:
7878
dependencies {
7979
...
8080
// Dapr's core SDK with all features, except Actors.
81-
compile('io.dapr:dapr-sdk:1.7.1')
81+
compile('io.dapr:dapr-sdk:1.8.0')
8282
// Dapr's SDK for Actors (optional).
83-
compile('io.dapr:dapr-sdk-actors:1.7.1')
83+
compile('io.dapr:dapr-sdk-actors:1.8.0')
8484
// Dapr's SDK integration with SpringBoot (optional).
85-
compile('io.dapr:dapr-sdk-springboot:1.7.1')
85+
compile('io.dapr:dapr-sdk-springboot:1.8.0')
8686
}
8787
```
8888

daprdocs/content/en/java-sdk-docs/_index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ For a Maven project, add the following to your `pom.xml` file:
3131
<dependency>
3232
<groupId>io.dapr</groupId>
3333
<artifactId>dapr-sdk</artifactId>
34-
<version>1.7.1</version>
34+
<version>1.8.0</version>
3535
</dependency>
3636
<!-- Dapr's SDK for Actors (optional). -->
3737
<dependency>
3838
<groupId>io.dapr</groupId>
3939
<artifactId>dapr-sdk-actors</artifactId>
40-
<version>1.7.1</version>
40+
<version>1.8.0</version>
4141
</dependency>
4242
<!-- Dapr's SDK integration with SpringBoot (optional). -->
4343
<dependency>
4444
<groupId>io.dapr</groupId>
4545
<artifactId>dapr-sdk-springboot</artifactId>
46-
<version>1.7.1</version>
46+
<version>1.8.0</version>
4747
</dependency>
4848
...
4949
</dependencies>
@@ -57,11 +57,11 @@ For a Gradle project, add the following to your `build.gradle` file:
5757
dependencies {
5858
...
5959
// Dapr's core SDK with all features, except Actors.
60-
compile('io.dapr:dapr-sdk:1.7.1')
60+
compile('io.dapr:dapr-sdk:1.8.0')
6161
// Dapr's SDK for Actors (optional).
62-
compile('io.dapr:dapr-sdk-actors:1.7.1')
62+
compile('io.dapr:dapr-sdk-actors:1.8.0')
6363
// Dapr's SDK integration with SpringBoot (optional).
64-
compile('io.dapr:dapr-sdk-springboot:1.7.1')
64+
compile('io.dapr:dapr-sdk-springboot:1.8.0')
6565
}
6666
```
6767

0 commit comments

Comments
 (0)