Skip to content

Commit 82ee83d

Browse files
authored
Renamed Banana Cake Pop to Nitro (#7553)
1 parent a3df265 commit 82ee83d

File tree

231 files changed

+1958
-1994
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

231 files changed

+1958
-1994
lines changed

.build/Build.Environment.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ partial class Build
2424
AbsolutePath EmptyAzf12Proj => RootDirectory / "templates" / "azure-function" / "HotChocolate.Template.AzureFunctions.csproj";
2525
AbsolutePath Gateway13Proj => RootDirectory / "templates" / "gateway" / "HotChocolate.Template.Gateway.csproj";
2626
AbsolutePath GatewayAspire13Proj => RootDirectory / "templates" / "gateway-aspire" / "HotChocolate.Template.Gateway.Aspire.csproj";
27-
AbsolutePath GatewayManaged13Proj => RootDirectory / "templates" / "gateway-bcp" / "HotChocolate.Template.Gateway.Managed.csproj";
27+
AbsolutePath GatewayManaged13Proj => RootDirectory / "templates" / "gateway-managed" / "HotChocolate.Template.Gateway.Managed.csproj";
2828
AbsolutePath FSharpTypes => SourceDirectory/"HotChocolate" /"Core" / "src" / "Types.FSharp" / "HotChocolate.Types.FSharp.fsproj";
2929
}

.build/Build.BananaCakePop.cs .build/Build.Nitro.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111

1212
partial class Build
1313
{
14-
Target UpdateBananaCakePop => _ => _
14+
Target UpdateNitro => _ => _
1515
.Executes(async () =>
1616
{
17-
var latestVersion = await GetLatestVersion("BananaCakePop.Middleware");
18-
Log.Information($"Latest BCP Version: {latestVersion}");
17+
var latestVersion = await GetLatestVersion("ChilliCream.Nitro.App");
18+
Log.Information($"Latest Nitro Version: {latestVersion}");
1919

2020
var project = Project.FromFile(HotChocolateDirectoryBuildProps, new ProjectOptions());
21-
project.SetProperty("BananaCakePopVersion", latestVersion);
21+
project.SetProperty("NitroVersion", latestVersion);
2222
project.Save();
2323
});
2424

.github/ISSUE_TEMPLATE/bug_report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ body:
2525
options:
2626
- Hot Chocolate
2727
- Strawberry Shake
28-
- Banana Cake Pop
28+
- Nitro
2929
- Green Donut
3030
validations:
3131
required: true

.github/ISSUE_TEMPLATE/feature_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ body:
1010
options:
1111
- Hot Chocolate
1212
- Strawberry Shake
13-
- Banana Cake Pop
13+
- Nitro
1414
- Green Donut
1515
validations:
1616
required: true

.github/issue-labeler.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
🌶️ strawberry shake:
55
- "### Product\n\nStrawberry Shake"
66

7-
🌶️ banana cake pop:
8-
- "### Product\n\nBanana Cake Pop"
7+
🌶️ nitro:
8+
- "### Product\n\nNitro"
99

1010
🌶️ green donut:
1111
- "### Product\n\nGreen Donut"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Hot Chocolate is the most efficient, feature-rich, open-source GraphQL server in
3131

3232
Nitro App is an awesome, performant, feature-rich GraphQL IDE / API Cockpit that helps developers and data scientists to explore, share, and test any GraphQL API.
3333

34-
Nitro App can be installed as [Desktop App](https://get-nitro.chillicream.com), used as [Web App](https://nitro.chillicream.com), which can be installed through your browser of choice as well, or used as Middleware on your GraphQL endpoint. Middlewares are available in [.NET](https://www.nuget.org/packages/HotChocolate.AspNetCore) and [NodeJS](https://www.npmjs.com/package/@chillicream/nitro-express-middleware). More middlewares will follow.
34+
Nitro App can be installed as a [Desktop App](https://get-nitro.chillicream.com), used as a [Web App](https://nitro.chillicream.com), which can be installed through your browser of choice as well, or used as middleware on your GraphQL endpoint. Middlewares are available in [.NET](https://www.nuget.org/packages/HotChocolate.AspNetCore) and [NodeJS](https://www.npmjs.com/package/@chillicream/nitro-express-middleware). More middlewares will follow.
3535

3636
[Documentation](https://chillicream.com/docs/nitro/)
3737

dictionary.txt

-1
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,5 @@ vsix
173173
VXNlcjox
174174
websockets
175175
Wilhuff
176-
winget
177176
Wunder
178177
xunit

src/Directory.Packages.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<PackageVersion Include="Aspire.Hosting.RabbitMQ" Version="8.0.0" />
1212
<PackageVersion Include="Aspire.Hosting.Redis" Version="8.0.0" />
1313
<PackageVersion Include="AutoMapper" Version="10.1.1" />
14-
<PackageVersion Include="BananaCakePop.Middleware" Version="$(BananaCakePopVersion)" />
1514
<PackageVersion Include="Basic.Reference.Assemblies.Net80" Version="1.7.8" />
1615
<PackageVersion Include="Basic.Reference.Assemblies.Net90" Version="1.7.8" />
16+
<PackageVersion Include="ChilliCream.Nitro.App" Version="$(NitroVersion)" />
1717
<PackageVersion Include="ChilliCream.Testing.Utilities" Version="0.2.0" />
1818
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
1919
<PackageVersion Include="DiffPlex" Version="1.7.2" />

src/HotChocolate/AspNetCore/src/AspNetCore/DefaultHttpMethod.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
namespace HotChocolate.AspNetCore;
22

33
/// <summary>
4-
/// The default HTTP fetch method for Banana Cake Pop.
4+
/// The default HTTP fetch method for Nitro.
55
/// </summary>
66
public enum DefaultHttpMethod
77
{

src/HotChocolate/AspNetCore/src/AspNetCore/Extensions/EndpointRouteBuilderExtensions.cs

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System.Diagnostics.CodeAnalysis;
2+
using ChilliCream.Nitro.App;
23
using Microsoft.AspNetCore.Http;
34
using Microsoft.AspNetCore.Routing;
45
using Microsoft.AspNetCore.Routing.Patterns;
56
using HotChocolate.AspNetCore;
67
using HotChocolate.AspNetCore.Extensions;
7-
using BananaCakePop.Middleware;
88
using static HotChocolate.AspNetCore.MiddlewareRoutingType;
99
using static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory;
1010

@@ -124,7 +124,7 @@ public static IApplicationBuilder MapGraphQL(
124124
.UseMiddleware<HttpMultipartMiddleware>(schemaName)
125125
.UseMiddleware<HttpGetMiddleware>(schemaName)
126126
.UseMiddleware<HttpGetSchemaMiddleware>(schemaName, path, Integrated)
127-
.UseBananaCakePop(path)
127+
.UseNitroApp(path)
128128
.Use(
129129
_ => context =>
130130
{
@@ -374,13 +374,13 @@ public static IEndpointConventionBuilder MapGraphQLSchema(
374374
}
375375

376376
/// <summary>
377-
/// Adds a Banana Cake Pop endpoint to the endpoint configurations.
377+
/// Adds a Nitro endpoint to the endpoint configurations.
378378
/// </summary>
379379
/// <param name="endpointRouteBuilder">
380380
/// The <see cref="IEndpointConventionBuilder"/>.
381381
/// </param>
382382
/// <param name="toolPath">
383-
/// The path to which Banana Cake Pop is mapped.
383+
/// The path to which Nitro is mapped.
384384
/// </param>
385385
/// <param name="relativeRequestPath">
386386
/// The relative path on which the server is listening for GraphQL requests.
@@ -389,20 +389,20 @@ public static IEndpointConventionBuilder MapGraphQLSchema(
389389
/// Returns the <see cref="IEndpointConventionBuilder"/> so that
390390
/// configuration can be chained.
391391
/// </returns>
392-
public static BananaCakePopEndpointConventionBuilder MapBananaCakePop(
392+
public static NitroAppEndpointConventionBuilder MapNitroApp(
393393
this IEndpointRouteBuilder endpointRouteBuilder,
394394
string toolPath = _graphQLToolPath,
395395
string? relativeRequestPath = _graphQLToolRelativeRequestPath)
396-
=> MapBananaCakePop(endpointRouteBuilder, new PathString(toolPath), relativeRequestPath);
396+
=> MapNitroApp(endpointRouteBuilder, new PathString(toolPath), relativeRequestPath);
397397

398398
/// <summary>
399-
/// Adds a Banana Cake Pop endpoint to the endpoint configurations.
399+
/// Adds a Nitro endpoint to the endpoint configurations.
400400
/// </summary>
401401
/// <param name="endpointRouteBuilder">
402402
/// The <see cref="IEndpointConventionBuilder"/>.
403403
/// </param>
404404
/// <param name="toolPath">
405-
/// The path to which Banana Cake Pop is mapped.
405+
/// The path to which Nitro is mapped.
406406
/// </param>
407407
/// <param name="relativeRequestPath">
408408
/// The relative path on which the server is listening for GraphQL requests.
@@ -411,7 +411,7 @@ public static BananaCakePopEndpointConventionBuilder MapBananaCakePop(
411411
/// Returns the <see cref="IEndpointConventionBuilder"/> so that
412412
/// configuration can be chained.
413413
/// </returns>
414-
public static BananaCakePopEndpointConventionBuilder MapBananaCakePop(
414+
public static NitroAppEndpointConventionBuilder MapNitroApp(
415415
this IEndpointRouteBuilder endpointRouteBuilder,
416416
PathString toolPath,
417417
string? relativeRequestPath = _graphQLToolRelativeRequestPath)
@@ -428,7 +428,7 @@ public static BananaCakePopEndpointConventionBuilder MapBananaCakePop(
428428
var requestPipeline = endpointRouteBuilder.CreateApplicationBuilder();
429429

430430
requestPipeline
431-
.UseBananaCakePop(toolPath)
431+
.UseNitroApp(toolPath)
432432
.Use(
433433
_ => context =>
434434
{
@@ -438,10 +438,10 @@ public static BananaCakePopEndpointConventionBuilder MapBananaCakePop(
438438

439439
var builder = endpointRouteBuilder
440440
.Map(pattern, requestPipeline.Build())
441-
.WithDisplayName("Banana Cake Pop Pipeline")
442-
.WithMetadata(new BananaCakePopOptions { GraphQLEndpoint = relativeRequestPath, });
441+
.WithDisplayName("Nitro Pipeline")
442+
.WithMetadata(new NitroAppOptions { GraphQLEndpoint = relativeRequestPath, });
443443

444-
return new BananaCakePopEndpointConventionBuilder(builder);
444+
return new NitroAppEndpointConventionBuilder(builder);
445445
}
446446

447447
/// <summary>
@@ -518,7 +518,7 @@ public static GraphQLEndpointConventionBuilder WithOptions(
518518
GraphQLServerOptions serverOptions)
519519
=> builder
520520
.WithMetadata(serverOptions)
521-
.WithMetadata(serverOptions.Tool.ToBcpOptions());
521+
.WithMetadata(serverOptions.Tool.ToNitroAppOptions());
522522

523523
/// <summary>
524524
/// Specifies the GraphQL HTTP request options.
@@ -545,23 +545,23 @@ public static GraphQLHttpEndpointConventionBuilder WithOptions(
545545
});
546546

547547
/// <summary>
548-
/// Specifies the Banana Cake Pop tooling options.
548+
/// Specifies the Nitro tooling options.
549549
/// </summary>
550550
/// <param name="builder">
551-
/// The <see cref="BananaCakePopEndpointConventionBuilder"/>.
551+
/// The <see cref="NitroAppEndpointConventionBuilder"/>.
552552
/// </param>
553553
/// <param name="toolOptions">
554-
/// The Banana Cake Pop tooling options.
554+
/// The Nitro tooling options.
555555
/// </param>
556556
/// <returns>
557-
/// Returns the <see cref="BananaCakePopEndpointConventionBuilder"/> so that
557+
/// Returns the <see cref="NitroAppEndpointConventionBuilder"/> so that
558558
/// configuration can be chained.
559559
/// </returns>
560-
public static BananaCakePopEndpointConventionBuilder WithOptions(
561-
this BananaCakePopEndpointConventionBuilder builder,
560+
public static NitroAppEndpointConventionBuilder WithOptions(
561+
this NitroAppEndpointConventionBuilder builder,
562562
GraphQLToolOptions toolOptions)
563563
{
564-
builder.Add(c => c.Metadata.Add(toolOptions.ToBcpOptions()));
564+
builder.Add(c => c.Metadata.Add(toolOptions.ToNitroAppOptions()));
565565
return builder;
566566
}
567567

@@ -597,7 +597,7 @@ private static IApplicationBuilder UseCancellation(this IApplicationBuilder buil
597597
}
598598
});
599599

600-
internal static BananaCakePopOptions ToBcpOptions(this GraphQLToolOptions options)
600+
internal static NitroAppOptions ToNitroAppOptions(this GraphQLToolOptions options)
601601
=> new()
602602
{
603603
ServeMode = ServeMode.Version(options.ServeMode.Mode),

src/HotChocolate/AspNetCore/src/AspNetCore/Extensions/BananaCakePopEndpointConventionBuilder.cs src/HotChocolate/AspNetCore/src/AspNetCore/Extensions/NitroAppEndpointConventionBuilder.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
namespace HotChocolate.AspNetCore.Extensions;
44

55
/// <summary>
6-
/// Represents the endpoint convention builder for Banana Cake Pop.
6+
/// Represents the endpoint convention builder for Nitro.
77
/// </summary>
8-
public sealed class BananaCakePopEndpointConventionBuilder : IEndpointConventionBuilder
8+
public sealed class NitroAppEndpointConventionBuilder : IEndpointConventionBuilder
99
{
1010
private readonly IEndpointConventionBuilder _builder;
1111

12-
internal BananaCakePopEndpointConventionBuilder(IEndpointConventionBuilder builder)
12+
internal NitroAppEndpointConventionBuilder(IEndpointConventionBuilder builder)
1313
{
1414
_builder = builder;
1515
}

src/HotChocolate/AspNetCore/src/AspNetCore/GraphQLServerOptions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace HotChocolate.AspNetCore;
66
public sealed class GraphQLServerOptions
77
{
88
/// <summary>
9-
/// Gets the GraphQL tool options for Banana Cake Pop.
9+
/// Gets the GraphQL tool options for Nitro.
1010
/// </summary>
1111
public GraphQLToolOptions Tool { get; internal set; } = new();
1212

src/HotChocolate/AspNetCore/src/AspNetCore/GraphQLToolOptions.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace HotChocolate.AspNetCore;
44

55
/// <summary>
6-
/// Represents the GraphQL tool options for Banana Cake Pop.
6+
/// Represents the GraphQL tool options for Nitro.
77
/// </summary>
88
public sealed class GraphQLToolOptions
99
{
@@ -38,7 +38,7 @@ public sealed class GraphQLToolOptions
3838
public bool? IncludeCookies { get; set; }
3939

4040
/// <summary>
41-
/// Gets or sets the default http headers for Banana Cake Pop.
41+
/// Gets or sets the default http headers for Nitro.
4242
/// </summary>
4343
public IHeaderDictionary? HttpHeaders { get; set; }
4444

@@ -48,12 +48,12 @@ public sealed class GraphQLToolOptions
4848
public DefaultHttpMethod? HttpMethod { get; set; }
4949

5050
/// <summary>
51-
/// Defines if Banana Cake Pop is enabled.
51+
/// Defines if Nitro is enabled.
5252
/// </summary>
5353
public bool Enable { get; set; } = true;
5454

5555
/// <summary>
56-
/// Specifies the Google analytics tracking ID for Banana Cake Pop.
56+
/// Specifies the Google analytics tracking ID for Nitro.
5757
/// </summary>
5858
public string? GaTrackingId { get; set; }
5959

src/HotChocolate/AspNetCore/src/AspNetCore/GraphQLToolServeMode.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using BananaCakePop.Middleware;
1+
using ChilliCream.Nitro.App;
22

33
namespace HotChocolate.AspNetCore;
44

55
/// <summary>
6-
/// Represents the different modes of serving the Banana Cake Pop GraphQL tool. This class enables
6+
/// Represents the different modes of serving the Nitro GraphQL tool. This class enables
77
/// serving the tool in a variety of predefined ways:
88
/// <list type="bullet">
99
/// <item>

src/HotChocolate/AspNetCore/src/AspNetCore/HotChocolate.AspNetCore.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<PackageId>HotChocolate.AspNetCore</PackageId>
55
<AssemblyName>HotChocolate.AspNetCore</AssemblyName>
66
<RootNamespace>HotChocolate.AspNetCore</RootNamespace>
7-
<Description>This package contains the GraphQL ASP.NET Core middleware for Hot Chocolate. Moreover, this package includes the Banana Cake Pop middleware, which provides you with our beloved GraphQL IDE middleware.</Description>
7+
<Description>This package contains the GraphQL ASP.NET Core middleware for Hot Chocolate. Moreover, this package includes the Nitro middleware, which provides you with our beloved GraphQL IDE middleware.</Description>
88
</PropertyGroup>
99

1010
<ItemGroup>
@@ -23,7 +23,7 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="BananaCakePop.Middleware" />
26+
<PackageReference Include="ChilliCream.Nitro.App" />
2727
</ItemGroup>
2828

2929
<ItemGroup>

0 commit comments

Comments
 (0)