Release 2.6.1#2754
Merged
Merged
Conversation
Also added the MISSING `CHANGELOG.md` from the original release which I somehow stomped out! Ref: #2428
- apollo-engine-reporting@1.2.1-alpha.0 - @apollo/gateway@0.6.1-alpha.0 - apollo-server-azure-functions@2.6.1-alpha.0 - apollo-server-cloud-functions@2.6.1-alpha.0 - apollo-server-cloudflare@2.6.1-alpha.0 - apollo-server-core@2.6.1-alpha.0 - apollo-server-express@2.6.1-alpha.0 - apollo-server-fastify@2.6.1-alpha.0 - apollo-server-hapi@2.6.1-alpha.0 - apollo-server-integration-testsuite@2.6.1-alpha.0 - apollo-server-koa@2.6.1-alpha.0 - apollo-server-lambda@2.6.1-alpha.0 - apollo-server-micro@2.6.1-alpha.0 - apollo-server-plugin-base@0.5.1-alpha.0 - apollo-server-testing@2.6.1-alpha.0 - apollo-server@2.6.1-alpha.0 - graphql-extensions@0.7.1-alpha.0
Empty commit to let Lerna know that _something_ has changed, even if it is just the version that I'm _about_ to input and it doesn't know about yet!
4 tasks
- apollo-cache-control@0.7.1 - apollo-engine-reporting@1.2.1 - @apollo/gateway@0.6.1 - apollo-server-azure-functions@2.6.1 - apollo-server-cloud-functions@2.6.1 - apollo-server-cloudflare@2.6.1 - apollo-server-core@2.6.1 - apollo-server-express@2.6.1 - apollo-server-fastify@2.6.1 - apollo-server-hapi@2.6.1 - apollo-server-integration-testsuite@2.6.1 - apollo-server-koa@2.6.1 - apollo-server-lambda@2.6.1 - apollo-server-micro@2.6.1 - apollo-server-plugin-base@0.5.1 - apollo-server-plugin-response-cache@0.2.1 - apollo-server-testing@2.6.1 - apollo-server@2.6.1 - apollo-tracing@0.7.1 - graphql-extensions@0.7.1
Member
Author
|
Member
Author
|
Big thank you to @trevor-scheer for helping to track down the cause of this! |
|
Hmm, did the 2.6.1 release go sideways? Can't seem to install even though npm shows the 2.6.1 version exists. Tried a few of the packages listed (e.g. |
|
This broke my CICD server |
Contributor
|
@wKovacs64 @fullstackwebdev can either of you still reproduce the issue? I was seeing it for a few minutes, but it seems to have cleared up for me. Seems like some funny CDN business. |
|
Agreed, seems fine now. Weird. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This reverts an unintended breaking change in Apollo Server 2.6.1 which caused
typeDefswhich were defined as astringrather than aDocumentNode(i.e.wrapped in the
gqltemplate tagged literal) to result in an error within thenew
isDirectiveDefinedfunctionality.This was reported in #2753.
TypeScript users would have been guarded against using
typeDefsas a string,but in JavaScript, there is no such protection and
typeDefshistorically havefrequently
string-typed because of the internalgraphql-toolsusage whichsupported this pattern.
And in case any readers of this didn't know, while many will wrap their
typeDefsin thegqltag hoping to gain syntax-highlighing in their editor(a very good reason!), it does also do more — like parse its body into a
DocumentNode!