You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- All Unit Tests passing!
- Enhanced StarWars Demo for testing/validating with v12 for additional manual tests.
- Validated functionality of BananaCakePop GraphQL IDE Web App as well as functionality via Insomnia (third party IDE).
- With this major update, I'm now correctly calling the GraphQL IDE "Banana Cake Pop" instead of "Playground" (which is the Old IDE).
- GraphQL IDE naming is now updated consistently to be called BananaCakePop (new IDE from v11) in code, comments, and Readme; updated Readme sample code also.
- Deprecated as obsolete the old EnablePlaygroundWebApp option which will be removed in future release; but remains in place and supported at this time for easier upgrade/transition of projects using the AzureFunctionsProxy.
- Updated Nuget version notes and version to correllate to v12.0.0 release and push to Nuget!
Copy file name to clipboardExpand all lines: GraphQL.AzureFunctionsProxy/GraphQL.AzureFunctionsProxy.csproj
+13-7
Original file line number
Diff line number
Diff line change
@@ -2,21 +2,27 @@
2
2
3
3
<PropertyGroup>
4
4
<TargetFramework>netcoreapp3.1</TargetFramework>
5
-
<Version>11.3.8.1</Version>
5
+
<Version>12.0.0.1</Version>
6
6
<Authors>BBernard / CajunCoding</Authors>
7
7
<Company>CajunCoding</Company>
8
-
<Description>This is a extension package for HotChocolate GraphQL framework to enable execution within AzureFunctions using the new v11 API. Provides very easy integration with Azure Functions with maximum support for out-of-the-box HotChocolate functionality.</Description>
8
+
<Description>This is a extension package for HotChocolate GraphQL framework to enable execution within AzureFunctions V1 using the new v12 API. Provides very easy integration with Azure Functions with maximum support for out-of-the-box HotChocolate functionality.</Description>
- Update Nuget package for deployment of latest (last) version compatible with v11; v12 is being released today (09/28/2021)
13
+
<PackageReleaseNotes>- Fully updated for new Hot Chocolate v12 released today (09/28/2021) with no significant breaking changes.
14
+
- Corrected GraphQL IDE naming to now be "Banana Cake Pop" instead of incorrrectly calling it "Playground" (the old IDE).
15
+
- Original option EnablePlaygroundWebApp is now deprecated as obsolete and will be removed in a future release; use EnableBananaCakePop instead.
16
+
- Default route is now /graphql/bcp/ instead of /graphql/playground.
17
+
- Otherwise there are no other breaking changes other than IDE route path.
15
18
16
19
Prior Releases Notes:
20
+
- Bumped to HC v11.3.8
21
+
- Update Nuget package for deployment of latest (last) version compatible with v11; v12 is being released today (09/28/2021)
17
22
- Bumped to HC v11.0.7
18
23
- Added support for download of the Schema (?SDL)
19
-
- Added support for functioning Playground (when configured correctly in the Azure Function HttpTrigger & Route Binding)- Added ConfigureAwait(false) to all awaits for performance.
24
+
- Added support for functioning GraphQL IDE (when configured correctly in the Azure Function HttpTrigger & Route Binding)
25
+
- Added ConfigureAwait(false) to all awaits for performance.
20
26
- Bumped to HC v11.0.4
21
27
- Bump to HotChocolate v11.0.1 which now resolves a bug that we helped identify with interfaces in the initial release of v11.0.0.
22
28
- Updated to support namespace changes in HotChocolate v11 rc.03 with synced version here as v11.0.0.3. Bumped HotChocolate version to v11-rc.03.
//New for v12 The Constructor for this Middleware is simplified and no longer requires the injection of GraphQL dependencies because it's simply a File Handler for BCP
0 commit comments