Skip to content

Commit

Permalink
Update future breaking changes docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ipvalverde authored Nov 20, 2024
1 parent 3b79e85 commit b782ac9
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,11 @@ An implementation of the [middleware resolver for Unity](https://github.com/Shan
Install-Package PipelineNet.Unity
```

## Migrate from PipelineNet 0.10 to 0.20
In PipelineNet 0.20, `Finally` overloads that use `Func` have been made obsolete. This will be removed in the next major version.
## Migrate from PipelineNet 0.10 to 0.11

### Changes to the `Finally` method

The `Finally` overloads that use `Func` have been made obsolete. This will be removed in the next major version.

To migrate replace:
```C#
Expand Down Expand Up @@ -383,5 +386,9 @@ public class ExceptionHandlerFallback : IFinally<Exception, bool>
}
```

### Changes to `MiddlewareResolverResult.IsDisposable`

The `IsDisposable` property is now marked as obsolete, please use the `Dispose` instead. The `IsDisposable` will be removed in the next major version.

## License
This project is licensed under MIT. Please, feel free to contribute with code, issues or tips :)

0 comments on commit b782ac9

Please sign in to comment.