You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: BREAKING_CHANGES.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,26 @@
1
1
AzureWebFarm.OctopusDeploy Breaking Changes
2
2
===========================================
3
3
4
+
Version 2.0.0
5
+
-------------
6
+
7
+
### OctopusDeploy 3 Support
8
+
9
+
We now use the API client library from Octopus Deploy 3 - it's likely that this would break Octopus Deploy 2 so use with caution ifi you are still on 2 or use the 1.x series of AzureWebFarm.OctopusDeploy.
10
+
11
+
### `WebFarmRole.Run()` signature changed
12
+
13
+
WebFarm role now takes a `CancellationToken` and returns a `Task` so it can be awaited. This makes it easier to support other code running side-by-side in your role and exert more control over the `Run` method.
14
+
15
+
If you want the behaviour to stay the same as before then put the following in your `WebRole` (RoleEntryPoint) class `Run` method:
0 commit comments