Skip to content

Commit e15e8dc

Browse files
committed
Cleanup markdown errors
1 parent 7c82f24 commit e15e8dc

11 files changed

Lines changed: 446 additions & 252 deletions

File tree

CHANGELOG.md

Lines changed: 70 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
6+
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## Unreleased
99

@@ -18,11 +18,13 @@ ADDED
1818
package with `BlobPayloadStore` and `BlobPayloadStoreOptions`
1919
- Added `PayloadStore` abstract base class in
2020
`durabletask.payload` for custom storage backends
21-
- Added `durabletask.testing` module with `InMemoryOrchestrationBackend` for testing orchestrations without a sidecar process
21+
- Added `durabletask.testing` module with `InMemoryOrchestrationBackend` for testing orchestrations
22+
without a sidecar process
2223
- Added `AsyncTaskHubGrpcClient` for asyncio-based applications using `grpc.aio`
2324
- Added `DefaultAsyncClientInterceptorImpl` for async gRPC metadata interceptors
2425
- Added `get_async_grpc_channel` helper for creating async gRPC channels
25-
- Improved distributed tracing support with full span coverage for orchestrations, activities, sub-orchestrations, timers, and events
26+
- Improved distributed tracing support with full span coverage for orchestrations, activities,
27+
sub-orchestrations, timers, and events
2628

2729
CHANGED
2830

@@ -94,7 +96,8 @@ FIXED:
9496

9597
## v0.4.1
9698

97-
- Fixed an issue where orchestrations would still throw non-determinism errors even when versioning logic should have prevented it
99+
- Fixed an issue where orchestrations would still throw non-determinism errors even when versioning
100+
logic should have prevented it
98101

99102
## v0.4.0
100103

@@ -103,75 +106,104 @@ FIXED:
103106

104107
## v0.3.0
105108

106-
### New
109+
### New (v0.3.0)
107110

108-
- Added `ConcurrencyOptions` class for fine-grained concurrency control with separate limits for activities and orchestrations. The thread pool worker count can also be configured.
111+
- Added `ConcurrencyOptions` class for fine-grained concurrency control with separate limits for
112+
activities and orchestrations. The thread pool worker count can also be configured.
109113

110-
### Fixed
114+
### Fixed (v0.3.0)
111115

112116
- Fixed an issue where a worker could not recover after its connection was interrupted or severed
113117

114118
## v0.2.1
115119

116-
### New
117-
118-
- Added `set_custom_status` orchestrator API ([#31](https://github.com/microsoft/durabletask-python/pull/31)) - contributed by [@famarting](https://github.com/famarting)
119-
- Added `purge_orchestration` client API ([#34](https://github.com/microsoft/durabletask-python/pull/34)) - contributed by [@famarting](https://github.com/famarting)
120-
- Added new `durabletask-azuremanaged` package for use with the [Durable Task Scheduler](https://learn.microsoft.com/azure/azure-functions/durable/durable-task-scheduler/durable-task-scheduler) - by [@RyanLettieri](https://github.com/RyanLettieri)
121-
122-
### Changes
123-
124-
- Protos are compiled with gRPC 1.62.3 / protobuf 3.25.X instead of the latest release. This ensures compatibility with a wider range of grpcio versions for better compatibility with other packages / libraries ([#36](https://github.com/microsoft/durabletask-python/pull/36)) - by [@berndverst](https://github.com/berndverst)
125-
- Http and grpc protocols and their secure variants are stripped from the host name parameter if provided. Secure mode is enabled if the protocol provided is https or grpcs ([#38](https://github.com/microsoft/durabletask-python/pull/38) - by [@berndverst)(https://github.com/berndverst)
126-
- Improve ProtoGen by downloading proto file directly instead of using submodule ([#39](https://github.com/microsoft/durabletask-python/pull/39) - by [@berndverst](https://github.com/berndverst)
127-
128-
### Updates
120+
### New (v0.2.1)
121+
122+
- Added `set_custom_status` orchestrator API
123+
([#31](https://github.com/microsoft/durabletask-python/pull/31)) - contributed by
124+
[@famarting](https://github.com/famarting)
125+
- Added `purge_orchestration` client API
126+
([#34](https://github.com/microsoft/durabletask-python/pull/34)) - contributed by
127+
[@famarting](https://github.com/famarting)
128+
- Added new `durabletask-azuremanaged` package for use with the [Durable Task
129+
Scheduler](https://learn.microsoft.com/azure/azure-functions/durable/durable-task-scheduler/durable-task-scheduler)
130+
- by [@RyanLettieri](https://github.com/RyanLettieri)
131+
132+
### Changes (v0.2.1)
133+
134+
- Protos are compiled with gRPC 1.62.3 / protobuf 3.25.X instead of the latest release. This ensures
135+
compatibility with a wider range of grpcio versions for better compatibility with other packages /
136+
libraries ([#36](https://github.com/microsoft/durabletask-python/pull/36)) - by
137+
[@berndverst](https://github.com/berndverst)
138+
- Http and grpc protocols and their secure variants are stripped from the host name parameter if
139+
provided. Secure mode is enabled if the protocol provided is https or grpcs
140+
([#38](https://github.com/microsoft/durabletask-python/pull/38) - by
141+
[@berndverst)(https://github.com/berndverst)
142+
- Improve ProtoGen by downloading proto file directly instead of using submodule
143+
([#39](https://github.com/microsoft/durabletask-python/pull/39) - by
144+
[@berndverst](https://github.com/berndverst)
145+
146+
### Updates (v0.2.1)
129147

130148
- Updated `durabletask-protobuf` submodule reference to latest
131149

132150
## v0.1.1a1
133151

134-
### New
152+
### New (v0.1.1a1)
135153

136-
- Add recursive flag in terminate_orchestration to support cascade terminate ([#27](https://github.com/microsoft/durabletask-python/pull/27)) - contributed by [@shivamkm07](https://github.com/shivamkm07)
154+
- Add recursive flag in terminate_orchestration to support cascade terminate
155+
([#27](https://github.com/microsoft/durabletask-python/pull/27)) - contributed by
156+
[@shivamkm07](https://github.com/shivamkm07)
137157

138158
## v0.1.0
139159

140-
### New
160+
### New (v0.1.0)
141161

142-
- Retry policies for activities and sub-orchestrations ([#11](https://github.com/microsoft/durabletask-python/pull/11)) - contributed by [@DeepanshuA](https://github.com/DeepanshuA)
162+
- Retry policies for activities and sub-orchestrations
163+
([#11](https://github.com/microsoft/durabletask-python/pull/11)) - contributed by
164+
[@DeepanshuA](https://github.com/DeepanshuA)
143165

144-
### Fixed
166+
### Fixed (v0.1.0)
145167

146-
- Fix try/except in orchestrator functions not being handled correctly ([#21](https://github.com/microsoft/durabletask-python/pull/21)) - by [@cgillum](https://github.com/cgillum)
147-
- Updated `durabletask-protobuf` submodule reference to latest distributed tracing commit - by [@cgillum](https://github.com/cgillum)
168+
- Fix try/except in orchestrator functions not being handled correctly
169+
([#21](https://github.com/microsoft/durabletask-python/pull/21)) - by
170+
[@cgillum](https://github.com/cgillum)
171+
- Updated `durabletask-protobuf` submodule reference to latest distributed tracing commit - by
172+
[@cgillum](https://github.com/cgillum)
148173

149174
## v0.1.0a5
150175

151-
### New
176+
### New (v0.1.0a5)
152177

153-
- Adds support for secure channels ([#18](https://github.com/microsoft/durabletask-python/pull/18)) - contributed by [@elena-kolevska](https://github.com/elena-kolevska)
178+
- Adds support for secure channels ([#18](https://github.com/microsoft/durabletask-python/pull/18))
179+
- contributed by [@elena-kolevska](https://github.com/elena-kolevska)
154180

155-
### Fixed
181+
### Fixed (v0.1.0a5)
156182

157-
- Fix zero argument values sent to activities as None ([#13](https://github.com/microsoft/durabletask-python/pull/13)) - contributed by [@DeepanshuA](https://github.com/DeepanshuA)
183+
- Fix zero argument values sent to activities as None
184+
([#13](https://github.com/microsoft/durabletask-python/pull/13)) - contributed by
185+
[@DeepanshuA](https://github.com/DeepanshuA)
158186

159187
## v0.1.0a3
160188

161-
### New
189+
### New (v0.1.0a3)
162190

163-
- Add gRPC metadata option ([#16](https://github.com/microsoft/durabletask-python/pull/16)) - contributed by [@DeepanshuA](https://github.com/DeepanshuA)
191+
- Add gRPC metadata option ([#16](https://github.com/microsoft/durabletask-python/pull/16)) -
192+
contributed by [@DeepanshuA](https://github.com/DeepanshuA)
164193

165-
### Changes
194+
### Changes (v0.1.0a3)
166195

167-
- Removed Python 3.7 support due to EOL ([#14](https://github.com/microsoft/durabletask-python/pull/14)) - contributed by [@berndverst](https://github.com/berndverst)
196+
- Removed Python 3.7 support due to EOL
197+
([#14](https://github.com/microsoft/durabletask-python/pull/14)) - contributed by
198+
[@berndverst](https://github.com/berndverst)
168199

169200
## v0.1.0a2
170201

171-
### New
202+
### New (v0.1.0a2)
172203

173204
- Continue-as-new ([#9](https://github.com/microsoft/durabletask-python/pull/9))
174-
- Support for Python 3.7+ ([#10](https://github.com/microsoft/durabletask-python/pull/10)) - contributed by [@DeepanshuA](https://github.com/DeepanshuA)
205+
- Support for Python 3.7+ ([#10](https://github.com/microsoft/durabletask-python/pull/10)) -
206+
contributed by [@DeepanshuA](https://github.com/DeepanshuA)
175207

176208
## v0.1.0a1
177209

CONTRIBUTING.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
This project welcomes contributions and suggestions. Most contributions require you to agree to a
44
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
5-
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
5+
the rights to use your contribution. For details, visit
6+
[https://cla.opensource.microsoft.com](https://cla.opensource.microsoft.com).
67

7-
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
8-
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
8+
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a
9+
CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
910
provided by the bot. You will only need to do this once across all repos using our CLA.
1011

11-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
12-
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
13-
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
12+
This project has adopted the [Microsoft Open Source Code of
13+
Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of
14+
Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact
15+
[opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.

README.md

Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,47 @@
11
# Durable Task SDK for Python
22

3-
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
4-
[![Build Validation](https://github.com/microsoft/durabletask-python/actions/workflows/pr-validation.yml/badge.svg)](https://github.com/microsoft/durabletask-python/actions/workflows/pr-validation.yml)
3+
[![License:
4+
MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
5+
[![Build
6+
Validation](https://github.com/microsoft/durabletask-python/actions/workflows/pr-validation.yml/badge.svg)](https://github.com/microsoft/durabletask-python/actions/workflows/pr-validation.yml)
57
[![PyPI version](https://badge.fury.io/py/durabletask.svg)](https://badge.fury.io/py/durabletask)
68

7-
This repo contains a Python SDK for use with the [Azure Durable Task Scheduler](https://github.com/Azure/Durable-Task-Scheduler). With this SDK, you can define, schedule, and manage durable orchestrations using ordinary Python code.
9+
This repo contains a Python SDK for use with the [Azure Durable Task
10+
Scheduler](https://github.com/Azure/Durable-Task-Scheduler). With this SDK, you can define,
11+
schedule, and manage durable orchestrations using ordinary Python code.
812

9-
> Note that this SDK is **not** currently compatible with [Azure Durable Functions](https://learn.microsoft.com/azure/azure-functions/durable/durable-functions-overview). If you are looking for a Python SDK for Azure Durable Functions, please see [this repo](https://github.com/Azure/azure-functions-durable-python).
13+
> Note that this SDK is **not** currently compatible with [Azure Durable
14+
Functions](https://learn.microsoft.com/azure/azure-functions/durable/durable-functions-overview). If
15+
you are looking for a Python SDK for Azure Durable Functions, please see [this
16+
repo](https://github.com/Azure/azure-functions-durable-python).
17+
18+
## References
1019

11-
# References
1220
- [Supported Patterns](./docs/supported-patterns.md)
1321
- [Available Features](./docs/features.md)
1422
- [Getting Started](./docs/getting-started.md)
15-
- [Development Guide](./docs/development.md)
23+
- [Development Guide](./docs/development.md)
1624
- [Contributing Guide](./CONTRIBUTING.md)
1725

1826
## Optional Features
1927

2028
### Large Payload Externalization
2129

22-
Install the `azure-blob-payloads` extra to automatically offload
23-
oversized orchestration payloads to Azure Blob Storage:
30+
Install the `azure-blob-payloads` extra to automatically offload oversized orchestration payloads to
31+
Azure Blob Storage:
2432

2533
```bash
2634
pip install durabletask[azure-blob-payloads]
2735
```
2836

29-
See the [feature documentation](./docs/features.md#large-payload-externalization)
30-
and the [example](./examples/large_payload/) for usage details.
37+
See the [feature documentation](./docs/features.md#large-payload-externalization) and the
38+
[example](./examples/large_payload/) for usage details.
3139

3240
## Trademarks
33-
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
34-
trademarks or logos is subject to and must follow
35-
[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
36-
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
37-
Any use of third-party trademarks or logos are subject to those third-party's policies.
41+
42+
This project may contain trademarks or logos for projects, products, or services. Authorized use of
43+
Microsoft trademarks or logos is subject to and must follow [Microsoft's Trademark & Brand
44+
Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
45+
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion
46+
or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those
47+
third-party's policies.

SECURITY.md

Lines changed: 35 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,60 @@
1+
# Security
2+
13
<!-- BEGIN MICROSOFT SECURITY.MD V0.0.8 BLOCK -->
24

3-
## Security
5+
## Overview
46

5-
Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/).
7+
Microsoft takes the security of our software products and services seriously, which includes all
8+
source code repositories managed through our GitHub organizations, which include
9+
[Microsoft](https://github.com/microsoft), [Azure](https://github.com/Azure),
10+
[DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet),
11+
[Xamarin](https://github.com/xamarin), and [our GitHub
12+
organizations](https://opensource.microsoft.com/).
613

7-
If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below.
14+
If you believe you have found a security vulnerability in any Microsoft-owned repository that meets
15+
[Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition),
16+
please report it to us as described below.
817

918
## Reporting Security Issues
1019

1120
**Please do not report security vulnerabilities through public GitHub issues.**
1221

13-
Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report).
22+
Instead, please report them to the Microsoft Security Response Center (MSRC) at
23+
[https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report).
1424

15-
If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey).
25+
If you prefer to submit without logging in, send email to
26+
[secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP
27+
key; please download it from the [Microsoft Security Response Center PGP Key
28+
page](https://aka.ms/opensource/security/pgpkey).
1629

17-
You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc).
30+
You should receive a response within 24 hours. If for some reason you do not, please follow up via
31+
email to ensure we received your original message. Additional information can be found at
32+
[microsoft.com/msrc](https://aka.ms/opensource/security/msrc).
1833

19-
Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:
34+
Please include the requested information listed below (as much as you can provide) to help us better
35+
understand the nature and scope of the possible issue:
2036

21-
* Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)
22-
* Full paths of source file(s) related to the manifestation of the issue
23-
* The location of the affected source code (tag/branch/commit or direct URL)
24-
* Any special configuration required to reproduce the issue
25-
* Step-by-step instructions to reproduce the issue
26-
* Proof-of-concept or exploit code (if possible)
27-
* Impact of the issue, including how an attacker might exploit the issue
37+
* Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)
38+
* Full paths of source file(s) related to the manifestation of the issue
39+
* The location of the affected source code (tag/branch/commit or direct URL)
40+
* Any special configuration required to reproduce the issue
41+
* Step-by-step instructions to reproduce the issue
42+
* Proof-of-concept or exploit code (if possible)
43+
* Impact of the issue, including how an attacker might exploit the issue
2844

2945
This information will help us triage your report more quickly.
3046

31-
If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs.
47+
If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty
48+
award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty)
49+
page for more details about our active programs.
3250

3351
## Preferred Languages
3452

3553
We prefer all communications to be in English.
3654

3755
## Policy
3856

39-
Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd).
57+
Microsoft follows the principle of [Coordinated Vulnerability
58+
Disclosure](https://aka.ms/opensource/security/cvd).
4059

4160
<!-- END MICROSOFT SECURITY.MD BLOCK -->

0 commit comments

Comments
 (0)