Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update configuration api sdks to latest releases #882

Merged
merged 5 commits into from
Jun 13, 2023
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
2 changes: 1 addition & 1 deletion configuration/csharp/sdk/order-processor/Program.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Dapr.AspNetCore" Version="1.9.0" />
<PackageReference Include="Dapr.AspNetCore" Version="1.11.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion configuration/go/sdk/order-processor/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module dapr_example

go 1.19

require github.com/dapr/go-sdk v1.6.1-0.20230529015951-df5bd08997c3
require github.com/dapr/go-sdk v1.8.0

require (
github.com/golang/protobuf v1.5.3 // indirect
Expand Down
4 changes: 2 additions & 2 deletions configuration/go/sdk/order-processor/go.sum
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/dapr/go-sdk v1.6.1-0.20230529015951-df5bd08997c3 h1:e0Tn1pqdCApcKtVp4ntPrj2dUnNOP8rcfbOCc88CJWI=
github.com/dapr/go-sdk v1.6.1-0.20230529015951-df5bd08997c3/go.mod h1:MBcTKXg8PmBc8A968tVWQg1Xt+DZtmeVR6zVVVGcmeA=
github.com/dapr/go-sdk v1.8.0 h1:OEleeL3zUTqXxIZ7Vkk3PClAeCh1g8sZ1yR2JFZKfXM=
github.com/dapr/go-sdk v1.8.0/go.mod h1:MBcTKXg8PmBc8A968tVWQg1Xt+DZtmeVR6zVVVGcmeA=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
Expand Down
2 changes: 1 addition & 1 deletion configuration/java/sdk/order-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<dependency>
<groupId>io.dapr</groupId>
<artifactId>dapr-sdk</artifactId>
<version>1.9.0-rc-1</version>
<version>1.9.0</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
Expand Down
14 changes: 7 additions & 7 deletions configuration/javascript/sdk/order-processor/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion configuration/python/sdk/order-processor/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dapr-dev #This is for RC testing and is unsupported. Replace with `dapr` for stable releases.
dapr
typing-extensions
Loading