-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bump graphql-generator dependency version for model-generator #2215
Conversation
🦋 Changeset detectedLatest commit: 8e33f10 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
packages/auth-construct/API.md
Outdated
@@ -48,7 +47,7 @@ export type AuthProps = { | |||
externalProviders?: ExternalProviderOptions; | |||
}; | |||
senders?: { | |||
email: Pick<UserPoolSESOptions, 'fromEmail' | 'fromName' | 'replyTo'> | CustomEmailSender; | |||
email: Pick<UserPoolSESOptions, 'fromEmail' | 'fromName' | 'replyTo'>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes in API.md files should be in this PR.
Please either revert them or rebase PR with current main.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The branch's parent is the current HEAD of main.
> git rev-parse HEAD~2
06e4def3eded2e4127c4501a4dce669abba900db
I'm assuming the API changes were necessary because running npm i
to update the package-lock after bumping the graphql-generator
version pulled in newer versions of other packages that aren't in main.
What do you suggest?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's not possible.
The changes in API.md
files are related to code in the repo that was added recently.
npm run clean && npm install && npm run build && npm run update:api
should help. (gonna push the change since I have it locally).
API.md
files are generated from build artifacts. If local workspace is stale then it may give unexpected deltas.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That makes a lot more sense. Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If local workspace is stale then it may give unexpected deltas.
that is the reason we have check in PR build. we haven't found better way to enforce consistency.
Problem
model-generator
depends ongraphql-generator
with a versioning rule of^0.4.0
.graphql-generator
has released0.5.0
and0.5.1
with updates thatmodel-generator
needs to consume.Issue number, if available:
Changes
model-generator
s dependency ongraphql-generator
to^0.5.1
.Note
I don't know why
graphql-generator
is still in0.
I'll find out and, if appropriate, will bump it to
1.
in a follow up so we don't have this issue anymore.Corresponding docs PR, if applicable:
Validation
Checklist
If this PR includes a functional change to the runtime behavior of the code, I have added or updated automated test coverage for this change.If this PR requires a change to the Project Architecture README, I have included that update in this PR.If this PR requires a docs update, I have linked to that docs PR above.run-e2e
label set.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.