Skip to content

Commit 95177aa

Browse files
committed
Remove references to openapi branch
1 parent 14a44cd commit 95177aa

File tree

6 files changed

+11
-14
lines changed

6 files changed

+11
-14
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ name: Build
1010

1111
on:
1212
push:
13-
branches: [ 'master', 'release/**', 'openapi' ]
13+
branches: [ 'master', 'release/**' ]
1414
pull_request:
15-
branches: [ 'master', 'release/**', 'openapi' ]
15+
branches: [ 'master', 'release/**' ]
1616
release:
1717
types: [published]
1818

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [ 'master', 'release/**', 'openapi' ]
5+
branches: [ 'master', 'release/**' ]
66
pull_request:
77
# The branches below must be a subset of the branches above
8-
branches: [ 'master', 'release/**', 'openapi' ]
8+
branches: [ 'master', 'release/**' ]
99
schedule:
1010
- cron: '0 0 * * 5'
1111

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,6 @@ See also our [versioning policy](./VERSIONING_POLICY.md).
8989
| | | 9 | 9 |
9090
| master | Preview | 8 | 8, 9 |
9191
| | | 9 | 9 |
92-
| openapi | Experimental | 8 | 8, 9 |
93-
| | | 9 | 9 |
9492

9593
## Contributing
9694

appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ version: '{build}'
55
branches:
66
only:
77
- master
8-
- openapi
98
- /release\/.+/
109

1110
build: off

docs/usage/openapi-client.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ The following steps describe how to generate and use a JSON:API client in C#, co
119119
```
120120
121121
> [!TIP]
122-
> The [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/openapi/src/Examples/OpenApiNSwagClientExample) contains an enhanced version
122+
> The [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/master/src/Examples/OpenApiNSwagClientExample) contains an enhanced version
123123
> that uses `IHttpClientFactory` for [scalability](https://learn.microsoft.com/en-us/dotnet/core/extensions/httpclient-factory) and
124124
> [resiliency](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/http-requests#use-polly-based-handlers) and logs the HTTP requests and responses.
125125
> Additionally, the example shows how to write the swagger.json file to disk when building the server, which is imported from the client project.
@@ -181,7 +181,7 @@ Next, build your project. It runs the kiota command-line tool, which generates f
181181
> which is needed for JSON:API partial POST/PATCH requests to work correctly.
182182
183183
Kiota is pretty young and therefore still rough around the edges. At the time of writing, there are various bugs, for which we have workarounds
184-
in place. For a full example, see the [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/openapi/src/Examples/OpenApiKiotaClientExample).
184+
in place. For a full example, see the [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/master/src/Examples/OpenApiKiotaClientExample).
185185

186186
---
187187

@@ -214,7 +214,7 @@ For example, the following section puts the generated code in a namespace, makes
214214
The available command-line switches for Kiota are described [here](https://learn.microsoft.com/en-us/openapi/kiota/using#client-generation).
215215

216216
At the time of writing, Kiota provides [no official integration](https://github.com/microsoft/kiota/issues/3005) with MSBuild.
217-
Our [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/openapi/src/Examples/OpenApiKiotaClientExample) takes a stab at it,
217+
Our [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/master/src/Examples/OpenApiKiotaClientExample) takes a stab at it,
218218
which seems to work. If you're an MSBuild expert, please help out!
219219

220220
```xml
@@ -291,7 +291,7 @@ string eTag = headerInspector.ResponseHeaders["ETag"].Single();
291291

292292
Due to a [bug in Kiota](https://github.com/microsoft/kiota/issues/4190), a try/catch block is needed additionally to make this work.
293293

294-
For a full example, see the [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/openapi/src/Examples/OpenApiKiotaClientExample).
294+
For a full example, see the [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/master/src/Examples/OpenApiKiotaClientExample).
295295

296296
---
297297

@@ -300,7 +300,7 @@ For a full example, see the [example project](https://github.com/json-api-dotnet
300300
# [NSwag](#tab/nswag)
301301

302302
[Atomic operations](~/usage/writing/bulk-batch-operations.md) are fully supported.
303-
The [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/openapi/src/Examples/OpenApiNSwagClientExample)
303+
The [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/master/src/Examples/OpenApiNSwagClientExample)
304304
demonstrates how to use them. It uses local IDs to:
305305
- Create a new tag
306306
- Create a new person
@@ -311,7 +311,7 @@ demonstrates how to use them. It uses local IDs to:
311311
# [Kiota](#tab/kiota)
312312

313313
[Atomic operations](~/usage/writing/bulk-batch-operations.md) are fully supported.
314-
See the [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/openapi/src/Examples/OpenApiKiotaClientExample)
314+
See the [example project](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/master/src/Examples/OpenApiKiotaClientExample)
315315
demonstrates how to use them. It uses local IDs to:
316316
- Create a new tag
317317
- Create a new person

src/JsonApiDotNetCore.OpenApi.Swashbuckle/ServiceCollectionExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static class ServiceCollectionExtensions
2121
/// <summary>
2222
/// Configures OpenAPI for JsonApiDotNetCore using Swashbuckle.
2323
/// </summary>
24-
[Experimental("JADNC_OA_001", UrlFormat = "https://github.com/json-api-dotnet/JsonApiDotNetCore/blob/openapi/docs/usage/openapi.md")]
24+
[Experimental("JADNC_OA_001", UrlFormat = "https://github.com/json-api-dotnet/JsonApiDotNetCore/blob/master/docs/usage/openapi.md")]
2525
public static void AddOpenApiForJsonApi(this IServiceCollection services, Action<SwaggerGenOptions>? configureSwaggerGenOptions = null)
2626
{
2727
ArgumentNullException.ThrowIfNull(services);

0 commit comments

Comments
 (0)