-
Notifications
You must be signed in to change notification settings - Fork 139
Release 1.17.0 #933
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
Release 1.17.0 #933
Changes from all commits
48dfb35
ec22099
f5de88d
60705a9
4d4f9bb
23177c7
e38e95c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,4 +13,4 @@ | |
| limitations under the License. | ||
| """ | ||
|
|
||
| __version__ = '1.17.0rc5' | ||
| __version__ = '1.17.0' | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| dapr-ext-fastapi>=1.17.0rc5 | ||
| dapr-ext-fastapi>=1.17.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| dapr-ext-workflow>=1.17.0rc5 | ||
| dapr-ext-workflow>=1.17.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,7 +47,7 @@ sleep: 5 | |
| 2. Start Receiver (expose gRPC server receiver on port 50051) | ||
|
|
||
| ```bash | ||
| dapr run --app-id receiver --app-protocol grpc --app-port 50051 --resources-path ./components python3 invoke-input-binding.py | ||
| dapr run --app-id receiver --app-protocol grpc --app-port 50051 --dapr-http-port 3501 --dapr-grpc-port 50101 --resources-path ./components python3 invoke-input-binding.py | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. were all of these failing without these flags?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, apparently we had port conflicts which is weird 🤷
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've actually experienced similar with dapr-agents when executing e2e tests.. |
||
| ``` | ||
|
|
||
| <!-- END_STEP --> | ||
|
|
@@ -67,7 +67,7 @@ sleep: 5 | |
| --> | ||
|
|
||
| ```bash | ||
| dapr run --app-id publisher --app-protocol grpc --resources-path ./components python3 invoke-output-binding.py | ||
| dapr run --app-id publisher --app-protocol grpc --dapr-http-port 3502 --dapr-grpc-port 50102 --resources-path ./components python3 invoke-output-binding.py | ||
| ``` | ||
|
|
||
| <!-- END_STEP --> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| dapr-ext-grpc >= 1.17.0rc5 | ||
| dapr >= 1.17.0rc5 | ||
| dapr-ext-grpc >= 1.17.0 | ||
| dapr >= 1.17.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| dapr-ext-workflow>=1.17.0rc5 | ||
| dapr>=1.17.0rc5 | ||
| dapr-ext-workflow>=1.17.0 | ||
| dapr>=1.17.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,4 +13,4 @@ | |
| limitations under the License. | ||
| """ | ||
|
|
||
| __version__ = '1.17.0rc5' | ||
| __version__ = '1.17.0' | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,4 +13,4 @@ | |
| limitations under the License. | ||
| """ | ||
|
|
||
| __version__ = '1.17.0rc5' | ||
| __version__ = '1.17.0' | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,4 +13,4 @@ | |
| limitations under the License. | ||
| """ | ||
|
|
||
| __version__ = '1.17.0rc5' | ||
| __version__ = '1.17.0' | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,4 +13,4 @@ | |
| limitations under the License. | ||
| """ | ||
|
|
||
| __version__ = '1.17.0rc5' | ||
| __version__ = '1.17.0' | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,4 +13,4 @@ | |
| limitations under the License. | ||
| """ | ||
|
|
||
| __version__ = '1.17.0rc5' | ||
| __version__ = '1.17.0' | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,4 +13,4 @@ | |
| limitations under the License. | ||
| """ | ||
|
|
||
| __version__ = '1.17.0rc5' | ||
| __version__ = '1.17.0' | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
sortfixes the case where releasing a new 1.16 version would show up first on the list. Sorting alphabetically forces the list to show 1.17 first. We need to find a better solution and not just remove it.