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
2 changes: 1 addition & 1 deletion extensions/Worker.Extensions.CosmosDB/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
<!-- Please add your release notes in the following format:
- My change description (#PR/#issue)
-->
- 4.0.0 release of Microsoft.Azure.Functions.Worker.Extensions.CosmosDB
- Fixed incorrect type of CosmosDBTriggerAttribute's `StartFromTime` property.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public CosmosDBTriggerAttribute(string databaseName, string containerName)
/// The recommended format is ISO 8601 with the UTC designator.
/// For example: "2021-02-16T14:19:29Z"
/// </summary>
public bool? StartFromTime { get; set; }
public string? StartFromTime { get; set; }

/// <summary>
/// Optional.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Description>Azure Cosmos DB extensions for .NET isolated functions</Description>

<!--Version information-->
<VersionPrefix>4.0.0</VersionPrefix>
<VersionPrefix>4.0.1</VersionPrefix>

<!--Temporarily opting out of documentation. Pending documentation-->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
Expand Down