Releases: benperk/AzureFunctionConsumer
Releases · benperk/AzureFunctionConsumer
Azure Function Consumer 1.3.0
This release contains the ability to search a blob container for blobs added to a specific directory and within a specified date range. It's purpose is described in this blog How to reprocess or retrigger a blob triggered Azure Function. In short it is used to manually trigger the reprocessing of a single blob by an Azure Function.
Azure Function Consumer 1.2.3
- The Partition Key used to delete the document was updated from Undefined.Value to item.Id. This means the Partition Key needs to be /id so that the row id = the Partition Key id. If you are unable to delete a document from the container, consider simply deleting and recreating the container. If there is data in the container which you need, don't delete the container until you move it to another place, because all the data in the container is deleted when you delete it. It does not come back when you create a new container.
Azure Function Consumer 1.2.2
- Added GET method to HTTP trigger
- Added anonymous support for GET HTTP Trigger
- Added burst capability for anonymous GET HTTP trigger. It is commented out in the build, see code example in source
- Resolved missing PartitionKey issue exception when deleting Cosmos DB documents. deletion is now supported.
- Added random Id generation to Azure Cosmos DB document uploads
- This allows you to have multiple instances open and send documents from different clients simultaneously
- Updated the delete Azure Cosmos DB documents
- This release also contains an EXE, formerly you needed to run 'dotnet AzureFunctionConsumer.dll"
- Both approaches still work
Azure Function Consumer 1.1
- Added the ability to delete blobs after insertion.
- Added Azure Table Storage inserting and deletion after insert.
- Added a GUID to the end of the message sent to Azure Storage Queue
- Added a GUID to the end of the message sent to Event Hub
Azure Function Consumer 1.0
This is the first release of the Azure Function Consumer. It includes the consumption of the following Azure Function types:
- Event Hub
- Storage Queue
- Blob Storage
- Service Bus
- Cosmos DB
- HTTP Trigger
- Microsoft Graph
- Timer
These other function types will be provided at a later date:
- Event Grid
- Table Storage
- SendGrid
- SignalR
AzureFunctionConsumer-0.0.1
This is the first release of the Azure Function Consumer. It includes the consumption of the following Azure Function types:
- Event Hub
- Storage Queue
- Blob Storage
- Service Bus
- Cosmos DB
- HTTP Trigger
- Microsoft Graph
- Timer
These other function types will be provided at a later date:
- Event Grid
- Table Storage
- SendGrid
- SignalR