Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ jobs:
GOARCH: amd64
GOPROXY: https://proxy.golang.org
JDK_VER: ${{ matrix.java }}
DAPR_CLI_VER: 1.16.5
DAPR_RUNTIME_VER: 1.17.0-rc.2
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.16.5/install/install.sh
DAPR_CLI_VER: 1.17.0-rc.2
DAPR_RUNTIME_VER: 1.17.0-rc.6
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.17.0-rc.2/install/install.sh
DAPR_CLI_REF:
DAPR_REF:
TOXIPROXY_URL: https://github.com/Shopify/toxiproxy/releases/download/v2.5.0/toxiproxy-server-linux-amd64
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
GOARCH: amd64
GOPROXY: https://proxy.golang.org
JDK_VER: ${{ matrix.java }}
DAPR_CLI_VER: 1.16.5
DAPR_RUNTIME_VER: 1.17.0-rc.2
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.16.5/install/install.sh
DAPR_CLI_VER: 1.17.0-rc.2
DAPR_RUNTIME_VER: 1.17.0-rc.6
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.17.0-rc.2/install/install.sh
DAPR_CLI_REF:
DAPR_REF:
steps:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<grpc.version>1.69.0</grpc.version>
<protobuf.version>3.25.5</protobuf.version>
<dapr.proto.baseurl>https://raw.githubusercontent.com/dapr/dapr/v1.17.0-rc.2/dapr/proto</dapr.proto.baseurl>
<dapr.proto.baseurl>https://raw.githubusercontent.com/dapr/dapr/v1.17.0-rc.6/dapr/proto</dapr.proto.baseurl>
<durabletask.proto.url>https://raw.githubusercontent.com/dapr/durabletask-protobuf/main/protos/orchestrator_service.proto</durabletask.proto.url>
<dapr.sdk.version>1.18.0-SNAPSHOT</dapr.sdk.version>
<os-maven-plugin.version>1.7.1</os-maven-plugin.version>
Expand Down
4 changes: 4 additions & 0 deletions sdk-tests/components/pubsub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ spec:
value: localhost:6379
- name: redisPassword
value: ""
- name: processingTimeout
value: "100ms"
- name: redeliverInterval
value: "100ms"
16 changes: 16 additions & 0 deletions sdk-tests/components/resiliency.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: dapr.io/v1alpha1
kind: Resiliency
metadata:
name: resiliency-messagebus
spec:
policies:
retries:
pubsubRetry:
policy: constant
duration: 5ms
maxRetries: -1
targets:
components:
messagebus:
inbound:
retry: pubsubRetry
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
@ContextConfiguration(classes = TestDaprSpringDataConfiguration.class)
@Testcontainers
@Tag("testcontainers")
@Disabled("MySQL is broken in 1.17.0-rc.2, waiting for new dapr version")
public class MySQLDaprKeyValueTemplateIT {
private static final String STATE_STORE_DSN = "mysql:password@tcp(mysql:3306)/";
private static final String BINDING_DSN = "mysql:password@tcp(mysql:3306)/dapr_db";
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-examples/kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Once you have the cluster up and running you can install Dapr:
helm repo add dapr https://dapr.github.io/helm-charts/
helm repo update
helm upgrade --install dapr dapr/dapr \
--version=1.17.0-rc.2 \
--version=1.17.0-rc.6 \
--namespace dapr-system \
--create-namespace \
--wait
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
package io.dapr.testcontainers;

public interface DaprContainerConstants {
String DAPR_VERSION = "1.17.0-rc.2";
String DAPR_VERSION = "1.17.0-rc.6";
String DAPR_WORKFLOWS_DASHBOARD_VERSION = "0.0.1";
String DAPR_RUNTIME_IMAGE_TAG = "daprio/daprd:" + DAPR_VERSION;
String DAPR_PLACEMENT_IMAGE_TAG = "daprio/placement:" + DAPR_VERSION;
Expand Down
Loading