Skip to content

Commit d847067

Browse files
authored
Updated branch, build logic and added release notes (#124)
Added release notes, updated readme and build.
1 parent 0791d0f commit d847067

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Azure Functions RabbitMQ Binding extensions allows you to send and receive m
88

99
[RabbitMQ Documentation for the .NET Client](https://www.rabbitmq.com/dotnet-api-guide.html)
1010

11-
To get started with developing with this extension, make sure you first [set up a RabbitMQ endpoint](https://github.com/Azure/azure-functions-rabbitmq-extension/wiki/Setting-up-a-RabbitMQ-Endpoint). Then you can go ahead and begin developing your functions in [C#](https://github.com/Azure/azure-functions-rabbitmq-extension/wiki/Samples-in-C%23), [JavaScript](https://github.com/Azure/azure-functions-rabbitmq-extension/wiki/Samples-in-JavaScript), or [Python](https://github.com/Azure/azure-functions-rabbitmq-extension/wiki/Samples-in-Python). If you would like a way to handle messages that error, check out our [guide to configuring a dead letter exchange](https://github.com/Azure/azure-functions-rabbitmq-extension/wiki/Configuring-a-Dead-Letter-Exchange-and-Queue).
11+
To get started with developing with this extension, make sure you first [set up a RabbitMQ endpoint](https://github.com/Azure/azure-functions-rabbitmq-extension/wiki/Setting-up-a-RabbitMQ-Endpoint). Then you can go ahead and begin developing your functions in [C#](https://github.com/Azure/azure-functions-rabbitmq-extension/wiki/Samples-in-C%23), [JavaScript](https://github.com/Azure/azure-functions-rabbitmq-extension/wiki/Samples-in-JavaScript), [Python](https://github.com/Azure/azure-functions-rabbitmq-extension/wiki/Samples-in-Python) or [Java](https://github.com/Azure/azure-functions-rabbitmq-extension/wiki/Samples-in-Java). If you would like a way to handle messages that error, check out our [guide to configuring a dead letter exchange](https://github.com/Azure/azure-functions-rabbitmq-extension/wiki/Configuring-a-Dead-Letter-Exchange-and-Queue).
1212

1313
# Samples
1414

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ pr:
22
branches:
33
include:
44
- dev
5-
- release/1*
5+
- release/*
66

77
trigger:
88
branches:
99
include:
1010
- dev
11-
- release/1*
11+
- release/*
1212

1313
jobs:
1414
- job: InitializePipeline
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
### Release notes
2+
3+
- Added annotations for RabbitMQ output binding.
4+
- Added annotations for RabbitMQ trigger.

build/initialize-pipeline.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ $version = ([string]($xml.Project.PropertyGroup.Version)).Trim()
2020

2121
$buildReason = $env:BUILD_REASON
2222
$branch = $env:BUILD_SOURCEBRANCH
23-
$buildArtifacts = $false
23+
$buildArtifacts = $true
2424

2525
if ($buildReason -eq "PullRequest") {
26+
$buildArtifacts = $false
2627
# parse PR title to see if we should pack this
2728
$response = Invoke-RestMethod api.github.com/repos/$env:BUILD_REPOSITORY_ID/pulls/$env:SYSTEM_PULLREQUEST_PULLREQUESTNUMBER
2829
$title = $response.title.ToLowerInvariant()

release_notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
### Release notes
2+
3+
- Made prefetchCount configurable and fixed ACK logic.
4+
- Fixed RabbitMQ data type conversions for out-of-proc languages.
5+
- [**Breaking change**] Removed ability to create non-existent queue. Queues need to be created outside the context of the extension.
6+
- Other fixes around warnings, builds, etc.

0 commit comments

Comments
 (0)