Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update dependencies #232

Merged
merged 3 commits into from
Nov 7, 2023
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 .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
]
},
"fantomas": {
"version": "6.1.1",
"version": "6.2.3",
"commands": [
"fantomas"
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dotnet: [6.0.407]
dotnet: [6.0.413]
runs-on: ${{ matrix.os }}

steps:
Expand Down
63 changes: 33 additions & 30 deletions build.fsx.lock
Original file line number Diff line number Diff line change
Expand Up @@ -125,45 +125,50 @@ NUGET
FSharp.Core (>= 4.7.2)
System.Reactive (>= 5.0 < 6.0)
FSharp.Core (6.0)
Microsoft.Build.Framework (17.5)
Microsoft.Build.Framework (17.7.2)
Microsoft.Win32.Registry (>= 5.0)
System.Security.Permissions (>= 6.0)
Microsoft.Build.Utilities.Core (17.5)
Microsoft.Build.Framework (>= 17.5)
Microsoft.NET.StringTools (>= 17.5)
System.Memory (>= 4.5.5)
System.Runtime.CompilerServices.Unsafe (>= 6.0)
System.Security.Permissions (>= 7.0)
System.Security.Principal.Windows (>= 5.0)
Microsoft.Build.Utilities.Core (17.7.2)
Microsoft.Build.Framework (>= 17.7.2)
Microsoft.NET.StringTools (>= 17.7.2)
Microsoft.Win32.Registry (>= 5.0)
System.Collections.Immutable (>= 6.0)
System.Configuration.ConfigurationManager (>= 6.0)
System.Security.Permissions (>= 6.0)
System.Text.Encoding.CodePages (>= 6.0)
Microsoft.NET.StringTools (17.5)
System.Collections.Immutable (>= 7.0)
System.Configuration.ConfigurationManager (>= 7.0)
System.Memory (>= 4.5.5)
System.Runtime.CompilerServices.Unsafe (>= 6.0)
System.Security.Permissions (>= 7.0)
System.Security.Principal.Windows (>= 5.0)
System.Text.Encoding.CodePages (>= 7.0)
Microsoft.NET.StringTools (17.7.2)
System.Memory (>= 4.5.5)
System.Runtime.CompilerServices.Unsafe (>= 6.0)
Microsoft.Win32.Registry (5.0)
System.Security.AccessControl (>= 5.0)
System.Security.Principal.Windows (>= 5.0)
Microsoft.Win32.SystemEvents (7.0)
Mono.Posix.NETStandard (1.0)
MSBuild.StructuredLogger (2.1.815)
Microsoft.Build.Framework (>= 16.10)
Microsoft.Build.Utilities.Core (>= 16.10)
MSBuild.StructuredLogger (2.1.858)
Microsoft.Build.Framework (>= 17.5)
Microsoft.Build.Utilities.Core (>= 17.5)
Newtonsoft.Json (13.0.3)
NuGet.Common (6.5)
NuGet.Frameworks (>= 6.5)
NuGet.Configuration (6.5)
NuGet.Common (>= 6.5)
NuGet.Common (6.7)
NuGet.Frameworks (>= 6.7)
NuGet.Configuration (6.7)
NuGet.Common (>= 6.7)
System.Security.Cryptography.ProtectedData (>= 4.4)
NuGet.Frameworks (6.5)
NuGet.Packaging (6.5)
NuGet.Frameworks (6.7)
NuGet.Packaging (6.7)
Newtonsoft.Json (>= 13.0.1)
NuGet.Configuration (>= 6.5)
NuGet.Versioning (>= 6.5)
System.Security.Cryptography.Cng (>= 5.0)
System.Security.Cryptography.Pkcs (>= 5.0)
NuGet.Protocol (6.5)
NuGet.Packaging (>= 6.5)
NuGet.Versioning (6.5)
Octokit (5.0.4)
NuGet.Configuration (>= 6.7)
NuGet.Versioning (>= 6.7)
System.Security.Cryptography.Pkcs (>= 6.0.4)
NuGet.Protocol (6.7)
NuGet.Packaging (>= 6.7)
NuGet.Versioning (6.7)
Octokit (9.0)
System.Collections.Immutable (7.0)
System.Runtime.CompilerServices.Unsafe (>= 6.0)
System.Configuration.ConfigurationManager (7.0)
Expand All @@ -176,9 +181,7 @@ NUGET
System.Reactive (5.0)
System.Runtime.CompilerServices.Unsafe (6.0)
System.Security.AccessControl (6.0)
System.Security.Cryptography.Cng (5.0)
System.Formats.Asn1 (>= 5.0)
System.Security.Cryptography.Pkcs (7.0.1)
System.Security.Cryptography.Pkcs (7.0.3)
System.Formats.Asn1 (>= 7.0)
System.Security.Cryptography.ProtectedData (7.0.1)
System.Security.Permissions (7.0)
Expand Down
7 changes: 4 additions & 3 deletions docs/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
#### 2.0.0-theta-002 - Jun 30, 2023
#### 2.0.0-theta-0023 - Nov 07, 2023
- F# 6 task{} instead of async{} under thee hood - [#200](https://github.com/fsprojects/SwaggerProvider/pull/200)
- BREAKING: `ProvidedApiClientBase.CallAsync` returns `task` instead of `async`
- BREAKING: `task` CE wrap all exceptions in `AggregateException` (with `OpenApiException` inside)
- Model enums as `string`, `int32` or `boolean` (Fixed [#186](https://github.com/fsprojects/SwaggerProvider/issues/186) )
- Add `Accept` header to all request (Fixed [#196](https://github.com/fsprojects/SwaggerProvider/issues/196))
- Supported requests with `octet-stream` body content [#203](https://github.com/fsprojects/SwaggerProvider/pull/203)
- Added missing properties to OpenApiException [#222](https://github.com/fsprojects/SwaggerProvider/pull/222)
- Microsoft.OpenApi (1.6.5)
- FSharp.SystemTextJson (1.1.23)
- Changed raise to calling Reraise() extension method to preserve the call stack [#230](https://github.com/fsprojects/SwaggerProvider/pull/230)
- Microsoft.OpenApi (1.6.10)
- FSharp.SystemTextJson (1.2.42)
- Removed the `System.Net.Http` dependency (#221)
- fix: accept "default" as "ok response" fallback (#223)

Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.407",
"version": "6.0.413",
"rollForward": "minor"
}
}
Loading
Loading