-
-
Notifications
You must be signed in to change notification settings - Fork 822
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
enhance(utils/isUrl): use URL.canParse when available #6891
base: master
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: cf92675 The changes in this PR will be included in the next version bump. This PR includes changesets to release 26 packages
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 |
🚀 Snapshot Release (
|
Package | Version | Info |
---|---|---|
@graphql-tools/executor |
1.3.13-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/executor-apollo-link |
1.0.13-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/executor-envelop |
3.0.20-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/executor-legacy-ws |
1.1.11-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/executor-urql-exchange |
1.0.13-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/executor-yoga |
3.0.20-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/graphql-tag-pluck |
8.3.13-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
graphql-tools |
9.0.12-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/import |
7.0.12-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/links |
9.0.21-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/load |
8.0.13-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/apollo-engine-loader |
8.0.14-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/code-file-loader |
8.1.14-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/git-loader |
8.0.18-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/github-loader |
8.0.14-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/graphql-file-loader |
8.0.13-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/json-file-loader |
8.0.12-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/module-loader |
8.0.12-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/url-loader |
8.0.25-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/merge |
9.0.18-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/mock |
9.0.16-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/node-require |
7.0.14-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/relay-operation-optimizer |
7.0.13-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/resolvers-composition |
7.0.12-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/schema |
10.0.17-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/utils |
10.8.0-alpha-20250124175511-cf926757b2731edb762be661f8671ed41d778b2f |
npm ↗︎ unpkg ↗︎ |
💻 Website PreviewThe latest changes are available as preview in: https://792e9d47.graphql-tools.pages.dev |
isUrl
helper, and it usesURL.canParse
if availableURL.canParse
is faster than usingnew URL
constructor to check if the string is URL