Skip to content

Commit

Permalink
Merge branch 'main' into gai/dependency-injection-migration
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib authored Oct 23, 2024
2 parents 0f4d3f8 + eb2a553 commit a818e42
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
17 changes: 14 additions & 3 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,23 @@

## Supported Versions

We will provide security updates to the latest major version.
We will provide bug fixes and updates to the latest major version.

| Version | Supported |
| ------- | ------------------ |
| 12.x | :white_check_mark: |
| < 12.0 | :x: |
| 14.x | :white_check_mark: |
| < 13.0 | :x: |

## Security Updates

We will provide security relevant fixes to the following versions:

| Version | Supported |
| ------- | ------------------ |
| 14.x | :white_check_mark: |
| 13.x | :white_check_mark: |
| 12.x | :white_check_mark: |
| < 12.0 | :x: |

## Reporting a Vulnerability

Expand Down
5 changes: 1 addition & 4 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@
"*.drawio",
"**/bin/",
"**/obj/",
"packages.lock.json",

// TODO: Remove
"**/test/"
"packages.lock.json"
],
"ignoreRegExpList": [
"featuredVideoId:(.*)", // video hash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@

namespace GreenDonut.Predicates;

/// <summary>
/// A default implementation of the <see cref="IPredicateBuilder"/>.
/// </summary>
[Experimental(Experiments.Predicates)]
internal sealed class DefaultPredicateBuilder : IPredicateBuilder
public sealed class DefaultPredicateBuilder : IPredicateBuilder
{
private List<LambdaExpression>? _predicates;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -878,15 +878,15 @@ Another change we made with Hot Chocolate 14 is around introspection. When we de
```csharp
builder
.AddGraphQLServer()
.ModifyRequestOptions(o => o.EnableIntrospection = true);
.DisableIntrospection(false);
```

Also the schema file can be disabled like the following.

```csharp
builder
.AddGraphQLServer()
.ModifyRequestOptions(o => o.EnableSchemaFile = false);
.ModifyRequestOptions(o => o.EnableSchemaFileSupport = false);
```

# Fusion
Expand Down

0 comments on commit a818e42

Please sign in to comment.