Skip to content

Commit 3724172

Browse files
Merge branch 'master' into salaboy-patch-3
2 parents ba5474a + 3b2f550 commit 3724172

File tree

1,267 files changed

+18623
-6826
lines changed

Some content is hidden

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

1,267 files changed

+18623
-6826
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
distribution: 'temurin'
3131
java-version: ${{ env.JDK_VER }}
3232
- name: Run tests
33-
run: ./mvnw clean install -B -q
33+
run: ./mvnw clean install -B -q -DskipITs=true
3434
- name: Codecov
3535
uses: codecov/[email protected]
3636
- name: Upload test report for sdk
@@ -89,7 +89,7 @@ jobs:
8989
run: wget -q ${{ env.DAPR_INSTALL_URL }} -O - | /bin/bash -s ${{ env.DAPR_CLI_VER }}
9090
- name: Set up Go ${{ env.GOVER }}
9191
if: env.DAPR_REF != '' || env.DAPR_CLI_REF != ''
92-
uses: actions/setup-go@v5
92+
uses: actions/setup-go@v6
9393
with:
9494
go-version: ${{ env.GOVER }}
9595
- name: Checkout Dapr CLI repo to override dapr command.

.github/workflows/dapr_bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Comment analyzer
12-
uses: actions/github-script@v7
12+
uses: actions/github-script@v8
1313
with:
1414
github-token: ${{secrets.DAPR_BOT_TOKEN}}
1515
script: |

.github/workflows/validate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: wget -q ${{ env.DAPR_INSTALL_URL }} -O - | /bin/bash -s ${{ env.DAPR_CLI_VER }}
5959
- name: Set up Go ${{ env.GOVER }}
6060
if: env.DAPR_REF != '' || env.DAPR_CLI_REF != ''
61-
uses: actions/setup-go@v5
61+
uses: actions/setup-go@v6
6262
with:
6363
go-version: ${{ env.GOVER }}
6464
- name: Checkout Dapr CLI repo to override dapr command.
@@ -123,8 +123,8 @@ jobs:
123123
mm.py README.md
124124
env:
125125
DOCKER_HOST: ${{steps.setup_docker.outputs.sock}}
126-
- name: Validate Spring Boot Workflow examples
127-
working-directory: ./spring-boot-examples/workflows
126+
- name: Validate Spring Boot Workflow Patterns examples
127+
working-directory: ./spring-boot-examples/workflows/patterns
128128
run: |
129129
mm.py README.md
130130
env:

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,19 @@ For a Maven project, add the following to your `pom.xml` file:
5050
<dependency>
5151
<groupId>io.dapr</groupId>
5252
<artifactId>dapr-sdk</artifactId>
53-
<version>1.15.1</version>
53+
<version>1.16.0</version>
5454
</dependency>
5555
<!-- Dapr's SDK for Actors (optional). -->
5656
<dependency>
5757
<groupId>io.dapr</groupId>
5858
<artifactId>dapr-sdk-actors</artifactId>
59-
<version>1.15.1</version>
59+
<version>1.16.0</version>
6060
</dependency>
6161
<!-- Dapr's SDK integration with SpringBoot (optional). -->
6262
<dependency>
6363
<groupId>io.dapr</groupId>
6464
<artifactId>dapr-sdk-springboot</artifactId>
65-
<version>1.15.1</version>
65+
<version>1.16.0</version>
6666
</dependency>
6767
...
6868
</dependencies>
@@ -76,11 +76,11 @@ For a Gradle project, add the following to your `build.gradle` file:
7676
dependencies {
7777
...
7878
// Dapr's core SDK with all features, except Actors.
79-
compile('io.dapr:dapr-sdk:1.15.1')
79+
compile('io.dapr:dapr-sdk:1.16.0')
8080
// Dapr's SDK for Actors (optional).
81-
compile('io.dapr:dapr-sdk-actors:1.15.1')
81+
compile('io.dapr:dapr-sdk-actors:1.16.0')
8282
// Dapr's SDK integration with SpringBoot (optional).
83-
compile('io.dapr:dapr-sdk-springboot:1.15.1')
83+
compile('io.dapr:dapr-sdk-springboot:1.16.0')
8484
}
8585
```
8686

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,19 @@ For a Maven project, add the following to your `pom.xml` file:
4646
<dependency>
4747
<groupId>io.dapr</groupId>
4848
<artifactId>dapr-sdk</artifactId>
49-
<version>1.15.1</version>
49+
<version>1.16.0</version>
5050
</dependency>
5151
<!-- Dapr's SDK for Actors (optional). -->
5252
<dependency>
5353
<groupId>io.dapr</groupId>
5454
<artifactId>dapr-sdk-actors</artifactId>
55-
<version>1.15.1</version>
55+
<version>1.16.0</version>
5656
</dependency>
5757
<!-- Dapr's SDK integration with SpringBoot (optional). -->
5858
<dependency>
5959
<groupId>io.dapr</groupId>
6060
<artifactId>dapr-sdk-springboot</artifactId>
61-
<version>1.15.1</version>
61+
<version>1.16.0</version>
6262
</dependency>
6363
...
6464
</dependencies>
@@ -76,11 +76,11 @@ For a Gradle project, add the following to your `build.gradle` file:
7676
dependencies {
7777
...
7878
// Dapr's core SDK with all features, except Actors.
79-
compile('io.dapr:dapr-sdk:1.15.1')
79+
compile('io.dapr:dapr-sdk:1.16.0')
8080
// Dapr's SDK for Actors (optional).
81-
compile('io.dapr:dapr-sdk-actors:1.15.1')
81+
compile('io.dapr:dapr-sdk-actors:1.16.0')
8282
// Dapr's SDK integration with SpringBoot (optional).
83-
compile('io.dapr:dapr-sdk-springboot:1.15.1')
83+
compile('io.dapr:dapr-sdk-springboot:1.16.0')
8484
}
8585
```
8686

@@ -96,7 +96,7 @@ You can fix this by specifying a compatible `OkHttp` version in your project to
9696
<dependency>
9797
<groupId>com.squareup.okhttp3</groupId>
9898
<artifactId>okhttp</artifactId>
99-
<version>1.15.1</version>
99+
<version>1.16.0</version>
100100
</dependency>
101101
```
102102

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ If you already have a Spring Boot application, you can directly add the followin
2626
<dependency>
2727
<groupId>io.dapr.spring</groupId>
2828
<artifactId>dapr-spring-boot-starter</artifactId>
29-
<version>0.15.1</version>
29+
<version>0.16.0</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>io.dapr.spring</groupId>
3333
<artifactId>dapr-spring-boot-starter-test</artifactId>
34-
<version>0.15.1</version>
34+
<version>0.16.0</version>
3535
<scope>test</scope>
3636
</dependency>
3737
```

0 commit comments

Comments
 (0)