Skip to content

Commit f660eb8

Browse files
feat: Use dapr 1.17.0-rc.6 (#1651)
* feat: Use dapr 1.17.0-rc.6 Signed-off-by: Javier Aliaga <javier@diagrid.io> * chore: Update pubsubIt to use resiliency policies Signed-off-by: Javier Aliaga <javier@diagrid.io> --------- Signed-off-by: Javier Aliaga <javier@diagrid.io>
1 parent 91cf080 commit f660eb8

File tree

8 files changed

+29
-10
lines changed

8 files changed

+29
-10
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ jobs:
117117
GOARCH: amd64
118118
GOPROXY: https://proxy.golang.org
119119
JDK_VER: ${{ matrix.java }}
120-
DAPR_CLI_VER: 1.16.5
121-
DAPR_RUNTIME_VER: 1.17.0-rc.2
122-
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.16.5/install/install.sh
120+
DAPR_CLI_VER: 1.17.0-rc.2
121+
DAPR_RUNTIME_VER: 1.17.0-rc.6
122+
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.17.0-rc.2/install/install.sh
123123
DAPR_CLI_REF:
124124
DAPR_REF:
125125
TOXIPROXY_URL: https://github.com/Shopify/toxiproxy/releases/download/v2.5.0/toxiproxy-server-linux-amd64

.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.16.5
41-
DAPR_RUNTIME_VER: 1.17.0-rc.2
42-
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.16.5/install/install.sh
40+
DAPR_CLI_VER: 1.17.0-rc.2
41+
DAPR_RUNTIME_VER: 1.17.0-rc.6
42+
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.17.0-rc.2/install/install.sh
4343
DAPR_CLI_REF:
4444
DAPR_REF:
4545
steps:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<grpc.version>1.69.0</grpc.version>
1818
<protobuf.version>3.25.5</protobuf.version>
19-
<dapr.proto.baseurl>https://raw.githubusercontent.com/dapr/dapr/v1.17.0-rc.2/dapr/proto</dapr.proto.baseurl>
19+
<dapr.proto.baseurl>https://raw.githubusercontent.com/dapr/dapr/v1.17.0-rc.6/dapr/proto</dapr.proto.baseurl>
2020
<durabletask.proto.url>https://raw.githubusercontent.com/dapr/durabletask-protobuf/main/protos/orchestrator_service.proto</durabletask.proto.url>
2121
<dapr.sdk.version>1.18.0-SNAPSHOT</dapr.sdk.version>
2222
<os-maven-plugin.version>1.7.1</os-maven-plugin.version>

sdk-tests/components/pubsub.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ spec:
1010
value: localhost:6379
1111
- name: redisPassword
1212
value: ""
13+
- name: processingTimeout
14+
value: "100ms"
15+
- name: redeliverInterval
16+
value: "100ms"
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apiVersion: dapr.io/v1alpha1
2+
kind: Resiliency
3+
metadata:
4+
name: resiliency-messagebus
5+
spec:
6+
policies:
7+
retries:
8+
pubsubRetry:
9+
policy: constant
10+
duration: 5ms
11+
maxRetries: -1
12+
targets:
13+
components:
14+
messagebus:
15+
inbound:
16+
retry: pubsubRetry

sdk-tests/src/test/java/io/dapr/it/spring/data/MySQLDaprKeyValueTemplateIT.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
@ContextConfiguration(classes = TestDaprSpringDataConfiguration.class)
5858
@Testcontainers
5959
@Tag("testcontainers")
60-
@Disabled("MySQL is broken in 1.17.0-rc.2, waiting for new dapr version")
6160
public class MySQLDaprKeyValueTemplateIT {
6261
private static final String STATE_STORE_DSN = "mysql:password@tcp(mysql:3306)/";
6362
private static final String BINDING_DSN = "mysql:password@tcp(mysql:3306)/dapr_db";

spring-boot-examples/kubernetes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Once you have the cluster up and running you can install Dapr:
3030
helm repo add dapr https://dapr.github.io/helm-charts/
3131
helm repo update
3232
helm upgrade --install dapr dapr/dapr \
33-
--version=1.17.0-rc.2 \
33+
--version=1.17.0-rc.6 \
3434
--namespace dapr-system \
3535
--create-namespace \
3636
--wait

testcontainers-dapr/src/main/java/io/dapr/testcontainers/DaprContainerConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
package io.dapr.testcontainers;
1515

1616
public interface DaprContainerConstants {
17-
String DAPR_VERSION = "1.17.0-rc.2";
17+
String DAPR_VERSION = "1.17.0-rc.6";
1818
String DAPR_WORKFLOWS_DASHBOARD_VERSION = "0.0.1";
1919
String DAPR_RUNTIME_IMAGE_TAG = "daprio/daprd:" + DAPR_VERSION;
2020
String DAPR_PLACEMENT_IMAGE_TAG = "daprio/placement:" + DAPR_VERSION;

0 commit comments

Comments
 (0)