078fba5ead
chore(deps): update dependency swashbuckle.aspnetcore to v8 ( #26 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [Swashbuckle.AspNetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore ) | nuget | major | `7.2.0` -> `8.0.0` |
---
### Release Notes
<details>
<summary>domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)</summary>
### [`v8.0.0`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v8.0.0 )
> \[!IMPORTANT]\
> Swashbuckle.AspNetCore drops support for .NET 6.
Swashbuckle.AspNetCore v8.0.0 makes the following notable changes:
- Drops support for `net6.0`.
- The `netstandard2.0` TFM now depends on [ASP.NET Core 2.3](https://github.com/dotnet/announcements/issues/331 ) instead of ASP.NET Core 2.1.
- Updates Microsoft.OpenApi to [v1.6.23](https://github.com/microsoft/OpenAPI.NET/releases/tag/1.6.23 ). This update requires the use of swagger-ui [v5.19.0](https://github.com/swagger-api/swagger-ui/releases/tag/v5.19.0 ) or later ([v5.20.1](https://github.com/swagger-api/swagger-ui/releases/tag/v5.20.1 ) is included in the Swashbuckle.AspNetCore.SwaggerUI NuGet package). You may need to clear your browser's cache to pick up the latest JavaScript files for swagger-ui.
- To prepare for future support for OpenAPI 3.1 documents, deprecates the `SerializeAsV2` property by marking it as `[Obsolete]`. Users should update their code as illustrated below, depending on their use case:
```diff
- options.SerializeAsV2 = true;
+ options.OpenApiVersion = Microsoft.OpenApi.OpenApiSpecVersion.OpenApi2_0;
// or if explicitly disabling (the same as the default behaviour)
- options.SerializeAsV2 = false;
+ options.OpenApiVersion = Microsoft.OpenApi.OpenApiSpecVersion.OpenApi3_0;
```
- To prepare for future support for OpenAPI 3.1 documents, the [Swashbuckle.AspNetCore.Cli](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Cli ) tool has deprecated the `--serializeasv2` option and logs a warning to the console. Users should update their usage as illustrated below, depending on their use case:
```diff
- swagger tofile --output [output] [startupassembly] [swaggerdoc] --serializeasv2
+ swagger tofile --output [output] [startupassembly] [swaggerdoc] --openapiversion "2.0"
```
#### What's Changed
- More reliable coverage by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3294
- Apply IDE refactoring suggestions by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3254
- .NET 10 preparation by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3285
- Move snapshots by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3314
- Snapshot OpenApiDocument as JSON by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3315
- Enable implicit usings by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3316
- Drop .NET 6 by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3183
- Deprecate `SerializeAsV2` by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3286
- Improve release automation by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3317
- Bump NuGet packages by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3319
**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.2...v8.0.0
### [`v7.3.2`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v7.3.2 )
#### What's Changed
- Fix humanize for multiline `code` and `<para>` tags by [@​EvgeniyZ](https://github.com/EvgeniyZ ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3295
- Fix `DescribeAllParametersInCamelCase` usage for parameters by [@​maksim-sovkov](https://github.com/maksim-sovkov ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3309
#### New Contributors
- [@​maksim-sovkov](https://github.com/maksim-sovkov ) made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3309
**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.1...v7.3.2
### [`v7.3.1`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v7.3.1 )
#### What's Changed
- Fix for ApiDescriptionProvider throws NRE by [@​EvgeniyZ](https://github.com/EvgeniyZ ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3280
- Bump swagger-ui-dist from 5.19.0 to 5.20.0 by [@​dependabot](https://github.com/dependabot ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3279
**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.0...v7.3.1
### [`v7.3.0`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v7.3.0 )
#### What's Changed
- Add `CreateFromJson` options overload by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3218
- Stop testing with .NET 6 by [@​martincostello](https://github.com/martincostello ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3219
- Replace IdentityServer4 with Duende.IdentityServer ([#​3008](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/3008 )) by [@​pseudometalhead](https://github.com/pseudometalhead ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3184
- Fix JWT version for .NET 9 by [@​Saibamen](https://github.com/Saibamen ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3227
- Adjust readme for issue [#​1014](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/1014 ) by [@​EvgeniyZ](https://github.com/EvgeniyZ ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3233
- Humanize multiline para tag by [@​EvgeniyZ](https://github.com/EvgeniyZ ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3234
- Humanize multi line code tag by [@​EvgeniyZ](https://github.com/EvgeniyZ ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3239
- Fix `JsonSerializerDataContractResolver` so that it handles jagged arrays correctly by [@​ozziepeeps](https://github.com/ozziepeeps ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3245
- Use `DeepObject` parameter style for dictionary by [@​EvgeniyZ](https://github.com/EvgeniyZ ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3241
- Remove `MvcOptions` from `SchemaGenerator` by [@​EvgeniyZ](https://github.com/EvgeniyZ ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3242
- Optional EOL for XML comments ([#​2947](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/2947 )) by [@​RainDance74](https://github.com/RainDance74 ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3255
- Add support for listing available OpenAPI documents by [@​rassilon](https://github.com/rassilon ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3263
- Bump swagger-ui-dist from 5.18.3 to 5.19.0 by [@​dependabot](https://github.com/dependabot ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3266
#### New Contributors
- [@​pseudometalhead](https://github.com/pseudometalhead ) made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3184
- [@​RainDance74](https://github.com/RainDance74 ) made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3255
- [@​rassilon](https://github.com/rassilon ) made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3263
**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.2.0...v7.3.0
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Reviewed-on: #26
Co-authored-by: Renovate <renovate@csw.im>
Co-committed-by: Renovate <renovate@csw.im>
2025-03-28 11:28:13 -04:00
0be0aed08d
chore(deps): update dotnet monorepo ( #21 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [Microsoft.AspNetCore.OpenApi](https://asp.net/ ) ([source](https://github.com/dotnet/aspnetcore )) | nuget | patch | `9.0.2` -> `9.0.3` |
| [Microsoft.EntityFrameworkCore](https://docs.microsoft.com/ef/core/ ) ([source](https://github.com/dotnet/efcore )) | nuget | patch | `9.0.2` -> `9.0.3` |
| [mcr.microsoft.com/dotnet/aspnet](https://github.com/dotnet/aspnetcore ) | stage | digest | `adc89f8` -> `4f0ad31` |
| [mcr.microsoft.com/dotnet/sdk](https://github.com/dotnet/sdk ) | final | digest | `7f8e8b1` -> `d7f4691` |
---
### Release Notes
<details>
<summary>dotnet/aspnetcore (Microsoft.AspNetCore.OpenApi)</summary>
### [`v9.0.3`](https://github.com/dotnet/aspnetcore/releases/tag/v9.0.3 ): .NET 9.0.3
[Release](https://github.com/dotnet/core/releases/tag/v9.0.3 )
#### What's Changed
- Update branding to 9.0.3 by [@​vseanreesermsft](https://github.com/vseanreesermsft ) in https://github.com/dotnet/aspnetcore/pull/60198
- \[release/9.0] Fix branding by [@​wtgodbe](https://github.com/wtgodbe ) in https://github.com/dotnet/aspnetcore/pull/60029
- \[release/9.0] Update to MacOS 15 in Helix by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/60238
- \[release/9.0] Revert "Revert "Use the latest available jdk"" by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/60229
- \[release/9.0] Update `HtmlAttributePropertyHelper` to correctly follow the `MetadataUpdateHandlerAttribute` contract by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/59908
- \[release/9.0] Fix skip condition for java tests by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/60242
- \[release/9.0] (deps): Bump src/submodules/googletest from `7d76a23` to `e235eb3` by [@​dependabot](https://github.com/dependabot ) in https://github.com/dotnet/aspnetcore/pull/60151
- \[release/9.0] Readd DiagnosticSource to KestrelServerImpl by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/60202
- \[release/9.0] Redis distributed cache: add HybridCache usage signal by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/59886
- \[release/9.0] Update dependencies from dotnet/arcade by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/aspnetcore/pull/59952
- \[release/9.0] Update dependencies from dotnet/extensions by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/aspnetcore/pull/59951
- \[release/9.0] Update remnants of azureedge.net by [@​sebastienros](https://github.com/sebastienros ) in https://github.com/dotnet/aspnetcore/pull/60263
- \[release/9.0] Update dependencies from dotnet/extensions by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/aspnetcore/pull/60291
- \[release/9.0] Centralize on one docker container by [@​wtgodbe](https://github.com/wtgodbe ) in https://github.com/dotnet/aspnetcore/pull/60298
- Revert "\[release/9.0] Update remnants of azureedge.net" by [@​wtgodbe](https://github.com/wtgodbe ) in https://github.com/dotnet/aspnetcore/pull/60323
- Merging internal commits for release/9.0 by [@​vseanreesermsft](https://github.com/vseanreesermsft ) in https://github.com/dotnet/aspnetcore/pull/60317
**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.2...v9.0.3
</details>
<details>
<summary>dotnet/efcore (Microsoft.EntityFrameworkCore)</summary>
### [`v9.0.3`](https://github.com/dotnet/efcore/releases/tag/v9.0.3 ): .NET 9.0.3
[Release](https://github.com/dotnet/core/releases/tag/v9.0.3 )
#### What's Changed
- \[release/9.0-staging] Fix to [#​35393](https://github.com/dotnet/efcore/issues/35393 ) - GroupJoin in EF Core 9 Returns Null for Joined Entities by [@​maumar](https://github.com/maumar ) in https://github.com/dotnet/efcore/pull/35449
- Merging internal commits for release/8.0 by [@​vseanreesermsft](https://github.com/vseanreesermsft ) in https://github.com/dotnet/efcore/pull/35473
- \[release/8.0] Update dependencies from dotnet/arcade by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/efcore/pull/35470
- \[release/9.0] Update dependencies from dotnet/arcade by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/efcore/pull/35498
- Merge branch 'release/9.0' into 'release/9.0-staging' by [@​AndriySvyryd](https://github.com/AndriySvyryd ) in https://github.com/dotnet/efcore/pull/35542
- \[release/9.0-staging] Make SnapshotModelProcessor idempotent. by [@​AndriySvyryd](https://github.com/AndriySvyryd ) in https://github.com/dotnet/efcore/pull/35543
- \[release/9.0] Update dependencies from dotnet/arcade by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/efcore/pull/35572
- \[automated] Merge branch 'release/8.0' => 'release/9.0' by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/efcore/pull/35474
- Update branding to 9.0.3 by [@​vseanreesermsft](https://github.com/vseanreesermsft ) in https://github.com/dotnet/efcore/pull/35584
- Update branding to 8.0.14 by [@​vseanreesermsft](https://github.com/vseanreesermsft ) in https://github.com/dotnet/efcore/pull/35583
- \[automated] Merge branch 'release/8.0' => 'release/9.0' by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/efcore/pull/35587
- Merge branch 'release/9.0-staging' => 'release/9.0' by [@​AndriySvyryd](https://github.com/AndriySvyryd ) in https://github.com/dotnet/efcore/pull/35601
- Merging internal commits for release/9.0 by [@​vseanreesermsft](https://github.com/vseanreesermsft ) in https://github.com/dotnet/efcore/pull/35622
**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.2...v9.0.3
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions ) if that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Reviewed-on: #21
Co-authored-by: Renovate <renovate@csw.im>
Co-committed-by: Renovate <renovate@csw.im>
2025-03-28 11:28:03 -04:00
36caf7eb8a
chore(deps): update dotnet monorepo ( #18 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [Microsoft.AspNetCore.OpenApi](https://asp.net/ ) ([source](https://github.com/dotnet/aspnetcore )) | nuget | patch | `9.0.1` -> `9.0.2` |
| [Microsoft.EntityFrameworkCore](https://docs.microsoft.com/ef/core/ ) ([source](https://github.com/dotnet/efcore )) | nuget | patch | `9.0.1` -> `9.0.2` |
| [mcr.microsoft.com/dotnet/aspnet](https://github.com/dotnet/aspnetcore ) | stage | digest | `f77d967` -> `adc89f8` |
| [mcr.microsoft.com/dotnet/sdk](https://github.com/dotnet/sdk ) | final | digest | `6894a71` -> `7f8e8b1` |
---
### Release Notes
<details>
<summary>dotnet/aspnetcore (Microsoft.AspNetCore.OpenApi)</summary>
### [`v9.0.2`](https://github.com/dotnet/aspnetcore/releases/tag/v9.0.2 ): .NET 9.0.2
[Release](https://github.com/dotnet/core/releases/tag/v9.0.2 )
#### What's Changed
- Update branding to 9.0.2 by [@​vseanreesermsft](https://github.com/vseanreesermsft ) in https://github.com/dotnet/aspnetcore/pull/59757
- \[release/9.0] Update dependencies from dotnet/source-build-externals by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/aspnetcore/pull/59267
- \[release/9.0] Update dependencies from dotnet/extensions by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/aspnetcore/pull/59266
- \[release/9.0] Update OSX helix queue by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/59743
- \[release/9.0] Update dependencies from dotnet/arcade by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/aspnetcore/pull/59728
- \[release/9.0] (deps): Bump src/submodules/googletest from `d144031` to `7d76a23` by [@​dependabot](https://github.com/dependabot ) in https://github.com/dotnet/aspnetcore/pull/59679
- \[release/9.0] Skip tests on internal queues too by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/59578
- \[release/9.0] Fix loading dotnet user-jwts config by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/59473
- \[release/9.0] Fix MultipartReaderStream synchronous read when using buffer offset by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/59422
- \[release/9.0] Update dependencies from dotnet/xdt by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/aspnetcore/pull/59419
- \[release/9.0] Update dependencies from dotnet/extensions by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/aspnetcore/pull/59611
- \[release/9.0] Fix Kestrel host header mismatch handling when port in Url by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/59362
- Migrate off of Fedora 38 by [@​v-firzha](https://github.com/v-firzha ) in https://github.com/dotnet/aspnetcore/pull/59613
- \[release/9.0] \[Blazor WASM standalone] Avoid caching `index.html` during development by [@​MackinnonBuck](https://github.com/MackinnonBuck ) in https://github.com/dotnet/aspnetcore/pull/59348
- \[release/9.0] Update to Fedora 41 by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/59816
- \[release/9.0] Don't throw exception for parameters with custom binding source by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/59533
- \[release/9.0] Apply schema transformer to AdditionalProperties by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/59730
- \[release/9.0] Harden schema reference transformer for relative references by [@​captainsafia](https://github.com/captainsafia ) in https://github.com/dotnet/aspnetcore/pull/59779
- \[release/9.0] Update dependencies from dotnet/extensions by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/aspnetcore/pull/59847
- \[release/9.0] Update dependencies from dotnet/arcade by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/aspnetcore/pull/59848
- \[release/9.0] Return 206 Partial Content on Valid Range for Static Assets by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/aspnetcore/pull/59325
- Merging internal commits for release/9.0 by [@​vseanreesermsft](https://github.com/vseanreesermsft ) in https://github.com/dotnet/aspnetcore/pull/59871
**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.1...v9.0.2
</details>
<details>
<summary>dotnet/efcore (Microsoft.EntityFrameworkCore)</summary>
### [`v9.0.2`](https://github.com/dotnet/efcore/releases/tag/v9.0.2 ): .NET 9.0.2
[Release](https://github.com/dotnet/core/releases/tag/v9.0.2 )
#### What's Changed
- \[release/9.0-staging] Fix to [#​35108](https://github.com/dotnet/efcore/issues/35108 ) - Temporal table migration regression from EF Core 8 to 9 by [@​maumar](https://github.com/maumar ) in https://github.com/dotnet/efcore/pull/35289
- \[release/9.0-staging] Don't throw PendingModelChangesWarning when applying a specific migration by [@​AndriySvyryd](https://github.com/AndriySvyryd ) in https://github.com/dotnet/efcore/pull/35353
- \[release/8.0] Update Helix queues by [@​AndriySvyryd](https://github.com/AndriySvyryd ) in https://github.com/dotnet/efcore/pull/35408
- \[release/9.0] Update Helix queues by [@​AndriySvyryd](https://github.com/AndriySvyryd ) in https://github.com/dotnet/efcore/pull/35407
- \[release/9.0-staging] Fix to [#​35239](https://github.com/dotnet/efcore/issues/35239 ) - EF9: SaveChanges() is significantly slower in .NET9 vs. .NET8 when using .ToJson() Mapping vs. PostgreSQL Legacy POCO mapping by [@​maumar](https://github.com/maumar ) in https://github.com/dotnet/efcore/pull/35360
- \[release/9.0] Update dependencies from dotnet/arcade by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/efcore/pull/35415
- \[release/9.0-staging] Don't scaffold NonNullableConventionState annotation by [@​AndriySvyryd](https://github.com/AndriySvyryd ) in https://github.com/dotnet/efcore/pull/35359
- Update branding to 8.0.13 by [@​vseanreesermsft](https://github.com/vseanreesermsft ) in https://github.com/dotnet/efcore/pull/35427
- Update branding to 9.0.2 by [@​vseanreesermsft](https://github.com/vseanreesermsft ) in https://github.com/dotnet/efcore/pull/35428
- Merge branch 'release/9.0-staging' => 'release/9.0' by [@​AndriySvyryd](https://github.com/AndriySvyryd ) in https://github.com/dotnet/efcore/pull/35463
- Merge branch 'release/8.0-staging' => 'release/8.0' by [@​AndriySvyryd](https://github.com/AndriySvyryd ) in https://github.com/dotnet/efcore/pull/35464
- \[automated] Merge branch 'release/8.0' => 'release/9.0' by [@​github-actions](https://github.com/github-actions ) in https://github.com/dotnet/efcore/pull/35429
- \[release/9.0] Update dependencies from dotnet/arcade by [@​dotnet-maestro](https://github.com/dotnet-maestro ) in https://github.com/dotnet/efcore/pull/35460
- Merging internal commits for release/9.0 by [@​vseanreesermsft](https://github.com/vseanreesermsft ) in https://github.com/dotnet/efcore/pull/35472
**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.1...v9.0.2
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions ) if that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2NS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Reviewed-on: #18
Co-authored-by: Renovate <renovate@csw.im>
Co-committed-by: Renovate <renovate@csw.im>
2025-02-13 17:53:18 -05:00
15799272fa
chore(deps): update dependency sentry.aspnetcore to 5.1.1 ( #19 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [Sentry.AspNetCore](https://sentry.io/ ) ([source](https://github.com/getsentry/sentry-dotnet )) | nuget | patch | `5.1.0` -> `5.1.1` |
---
### Release Notes
<details>
<summary>getsentry/sentry-dotnet (Sentry.AspNetCore)</summary>
### [`v5.1.1`](https://github.com/getsentry/sentry-dotnet/blob/HEAD/CHANGELOG.md#511 )
[Compare Source](https://github.com/getsentry/sentry-dotnet/compare/5.1.0...5.1.1 )
##### Fixes
- Emit transaction.data inside contexts.trace.data ([#​3936](https://github.com/getsentry/sentry-dotnet/pull/3936 ))
- Native SIGSEGV errors resulting from managed NullReferenceExceptions are now suppressed on Android ([#​3903](https://github.com/getsentry/sentry-dotnet/pull/3903 ))
- OTel activities that are marked as not recorded are no longer sent to Sentry ([#​3890](https://github.com/getsentry/sentry-dotnet/pull/3890 ))
- Fixed envelopes with oversized attachments getting stuck in \__processing ([#​3938](https://github.com/getsentry/sentry-dotnet/pull/3938 ))
- OperatingSystem will now return macOS as OS name instead of 'Darwin' as well as the proper version. ([#​2710](https://github.com/getsentry/sentry-dotnet/pull/3956 ))
- Ignore null value on CocoaScopeObserver.SetTag ([#​3948](https://github.com/getsentry/sentry-dotnet/pull/3948 ))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Reviewed-on: #19
Co-authored-by: Renovate <renovate@csw.im>
Co-committed-by: Renovate <renovate@csw.im>
2025-02-13 17:53:01 -05:00
56bbb728e4
style: reformat Program.cs
2025-02-08 13:54:18 -06:00
2543372072
chore(tooling): set indent_size for 4 unless it's json, then set it to 2
2025-02-08 13:46:08 -06:00
b2bc02108d
chore(tooling): add nix flake and reconfigure some stuff for neovim
2025-02-08 13:42:35 -06:00
c6f6f0d5c1
chore(deps): update postgres:17.2 docker digest to 3267c50 ( #16 )
...
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| postgres | digest | `87ec5e0` -> `3267c50` |
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNTYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE1Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Reviewed-on: https://www.coastalcommits.com/cswimr/LookingGlass/pulls/16
Co-authored-by: Renovate <renovate@coastalcommits.com>
Co-committed-by: Renovate <renovate@coastalcommits.com>
2025-02-07 23:52:32 -05:00
b666cbd73a
chore(deps): update dotnet monorepo ( #17 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [mcr.microsoft.com/dotnet/aspnet](https://github.com/dotnet/aspnetcore ) | stage | digest | `07dd7f0` -> `f77d967` |
| [mcr.microsoft.com/dotnet/sdk](https://github.com/dotnet/sdk ) | final | digest | `84fd557` -> `6894a71` |
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions ) if that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNTYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE1Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Reviewed-on: https://www.coastalcommits.com/cswimr/LookingGlass/pulls/17
Co-authored-by: Renovate <renovate@coastalcommits.com>
Co-committed-by: Renovate <renovate@coastalcommits.com>
2025-02-07 23:52:22 -05:00
0cabbf2a88
chore(deps): update dependency sentry.aspnetcore to 5.1.0 ( #15 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [Sentry.AspNetCore](https://sentry.io/ ) ([source](https://github.com/getsentry/sentry-dotnet )) | nuget | minor | `5.0.1` -> `5.1.0` |
---
### Release Notes
<details>
<summary>getsentry/sentry-dotnet (Sentry.AspNetCore)</summary>
### [`v5.1.0`](https://github.com/getsentry/sentry-dotnet/blob/HEAD/CHANGELOG.md#510 )
[Compare Source](https://github.com/getsentry/sentry-dotnet/compare/5.0.1...5.1.0 )
##### Significant change in behavior
- The User.IpAddress is now only set to `{{auto}}` when `SendDefaultPii` is enabled. This change gives you control over IP address collection directly on the client ([#​3893](https://github.com/getsentry/sentry-dotnet/pull/3893 ))
##### Features
- .NET on iOS: Add experimental EnableAppHangTrackingV2 configuration flag to the options binding SDK ([#​3877](https://github.com/getsentry/sentry-dotnet/pull/3877 ))
- Added `SentryOptions.DisableSentryHttpMessageHandler`. Useful if you're using `OpenTelemetry.Instrumentation.Http` and ending up with duplicate spans. ([#​3879](https://github.com/getsentry/sentry-dotnet/pull/3879 ))
##### Fixes
- Prevent Native EXC_BAD_ACCESS signal errors from being captured when managed NullRefrenceExceptions occur ([#​3909](https://github.com/getsentry/sentry-dotnet/pull/3909 ))
- Fixed duplicate SentryMauiEventProcessors ([#​3905](https://github.com/getsentry/sentry-dotnet/pull/3905 ))
- Fixed invalid string.Format index in Debug logs for the DiagnosticSource integration ([#​3923](https://github.com/getsentry/sentry-dotnet/pull/3923 ))
##### Dependencies
- Bump Native SDK from v0.7.17 to v0.7.20 ([#​3891](https://github.com/getsentry/sentry-dotnet/pull/3891 ), [#​3908](https://github.com/getsentry/sentry-dotnet/pull/3908 ), [#​3929](https://github.com/getsentry/sentry-dotnet/pull/3929 ))
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0720 )
- [diff](https://github.com/getsentry/sentry-native/compare/0.7.17...0.7.20 )
- Bump Java SDK from v7.20.0 to v7.20.1 ([#​3907](https://github.com/getsentry/sentry-dotnet/pull/3907 ))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7201 )
- [diff](https://github.com/getsentry/sentry-java/compare/7.20.0...7.20.1 )
- Bump CLI from v2.40.0 to v2.41.1 ([#​3910](https://github.com/getsentry/sentry-dotnet/pull/3910 ))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2411 )
- [diff](https://github.com/getsentry/sentry-cli/compare/2.40.0...2.41.1 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNTYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE1Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Reviewed-on: https://www.coastalcommits.com/cswimr/LookingGlass/pulls/15
Co-authored-by: Renovate <renovate@coastalcommits.com>
Co-committed-by: Renovate <renovate@coastalcommits.com>
2025-02-07 23:52:05 -05:00
ed619cdc17
chore(repo): rename from myhm-commission
to looking-glass
...
closes #4
2025-01-30 17:59:38 +00:00
608e9a7f9e
feat: replace Token with User
2025-01-30 17:48:16 +00:00
3cad9b1d13
chore(tooling): add vscode launch.json config
...
chore(tooling): add vscode launch.json config
2025-01-30 12:02:11 +00:00
d1aa3fa551
chore: remove ports for the postgres database
...
chore: remove ports for the postgres database
2025-01-30 12:02:07 +00:00
4ed820999a
feat: add moderation reasons to enum ( #11 )
...
feat: add moderation reasons to enum (#11 )
2025-01-30 12:01:59 +00:00
2b92a8089b
feat: remove swagger light theme
2025-01-30 00:47:30 +00:00
75e18507aa
feat: working on models ( #11 )
2025-01-29 21:04:56 +00:00
24849b3246
chore(repo): update incorrect copyright disclaimers in license
2025-01-29 21:04:43 +00:00
1a6bccf1b1
chore(tooling): remove useless dev container feeatures
2025-01-29 18:39:04 +00:00
144cd3e1d0
fix: fix builds not working
2025-01-29 18:22:15 +00:00
70d5d038b9
chore(tooling): add csharpier
2025-01-29 18:21:53 +00:00
4106065fba
chore(tooling): fix dev container networking
2025-01-29 18:21:46 +00:00
f67417d5f9
chore(tooling): set zsh to be the default terminal, add xml extension
2025-01-29 18:21:34 +00:00
8bcb8127bf
feat: add src
...
closes #6
2025-01-29 18:09:21 +00:00
93b6009d31
chore(deps): update dotnet monorepo to v9 (major) ( #9 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [mcr.microsoft.com/dotnet/aspnet](https://github.com/dotnet/aspnetcore ) | stage | major | `8.0` -> `9.0` |
| [mcr.microsoft.com/dotnet/sdk](https://github.com/dotnet/sdk ) | final | major | `8.0` -> `9.0` |
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDAuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Reviewed-on: https://www.coastalcommits.com/cswimr/myhm-commission/pulls/9
Co-authored-by: Renovate <renovate@coastalcommits.com>
Co-committed-by: Renovate <renovate@coastalcommits.com>
2025-01-29 13:05:10 -05:00
eae06df035
chore(deps): update postgres docker tag to v17 ( #10 )
...
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| postgres | major | `15.10` -> `17.2` |
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDAuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Reviewed-on: https://www.coastalcommits.com/cswimr/myhm-commission/pulls/10
Co-authored-by: Renovate <renovate@coastalcommits.com>
Co-committed-by: Renovate <renovate@coastalcommits.com>
2025-01-29 13:04:54 -05:00
efe09749d2
chore(deps): update postgres docker tag to v15.10 ( #8 )
...
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| postgres | minor | `15.4` -> `15.10` |
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDAuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Reviewed-on: https://www.coastalcommits.com/cswimr/myhm-commission/pulls/8
Co-authored-by: Renovate <renovate@coastalcommits.com>
Co-committed-by: Renovate <renovate@coastalcommits.com>
2025-01-29 12:51:43 -05:00
cbebe840ae
chore(repo): make the license a markdown file
2025-01-29 17:51:18 +00:00
aa3be92a26
chore(deps): pin dependencies ( #7 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| mcr.microsoft.com/devcontainers/dotnet | | pinDigest | -> `f84f5dc` |
| [mcr.microsoft.com/dotnet/aspnet](https://github.com/dotnet/aspnetcore ) | stage | pinDigest | -> `587c1dd` |
| [mcr.microsoft.com/dotnet/sdk](https://github.com/dotnet/sdk ) | final | pinDigest | -> `b27b135` |
| postgres | | pinDigest | -> `d1168ad` |
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions ) if that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDAuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Reviewed-on: https://www.coastalcommits.com/cswimr/myhm-commission/pulls/7
Co-authored-by: Renovate <renovate@coastalcommits.com>
Co-committed-by: Renovate <renovate@coastalcommits.com>
2025-01-29 12:43:06 -05:00
adf1ab5336
chore(tooling,repo): remove nix flake and add devcontainer
...
closes #3
2025-01-29 17:35:34 +00:00
da6b434ed7
chore(repo): add renovate config
2025-01-28 14:52:52 -05:00
eddb72692e
Add CONTRIBUTING.md
2025-01-28 14:51:15 -05:00
459c3796d8
Initial commit
2025-01-28 14:47:51 -05:00