-
Notifications
You must be signed in to change notification settings - Fork 6
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
fix(deps): update dependency apollo-server-core to v2.26.1 [security] #118
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/npm-apollo-server-core-vulnerability
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
September 19, 2023 20:43
1577735
to
39ae0f8
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
2 times, most recently
from
September 29, 2023 20:28
9664053
to
277ec07
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
2 times, most recently
from
October 16, 2023 02:29
2090928
to
169ae47
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
October 24, 2023 23:36
169ae47
to
b45f4ee
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
November 6, 2023 06:03
b45f4ee
to
afe9eb4
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
November 17, 2023 02:41
afe9eb4
to
46ae7d3
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
December 4, 2023 05:53
46ae7d3
to
54f0336
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
2 times, most recently
from
February 5, 2024 02:57
ebcb9fa
to
e13ba11
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
February 26, 2024 02:59
e13ba11
to
ba71ac0
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
March 13, 2024 02:19
ba71ac0
to
f1e353f
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
March 22, 2024 08:55
f1e353f
to
b8336ab
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
April 14, 2024 14:53
b8336ab
to
2cc0e78
Compare
👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎ This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored. |
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
April 23, 2024 02:49
2cc0e78
to
bae2acd
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
June 5, 2024 05:31
bae2acd
to
1fe149d
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
July 22, 2024 02:49
1fe149d
to
be649bc
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
August 8, 2024 03:00
be649bc
to
4ff98a4
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
August 29, 2024 00:00
4ff98a4
to
68f7326
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
October 10, 2024 05:17
68f7326
to
eece614
Compare
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
December 2, 2024 23:51
eece614
to
242b07a
Compare
renovate
bot
changed the title
chore(deps): update dependency apollo-server-core to v2.26.1 [security]
fix(deps): update dependency apollo-server-core to v2.26.1 [security]
Dec 11, 2024
renovate
bot
force-pushed
the
renovate/npm-apollo-server-core-vulnerability
branch
from
January 25, 2025 03:21
242b07a
to
fc01c32
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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 PR contains the following updates:
2.21.0
->2.26.1
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
GitHub Vulnerability Alerts
GHSA-j5g3-5c8r-7qfx
Impact
What kind of vulnerability is it?
Apollo Server can log sensitive information (Studio API keys) if they are passed incorrectly (with leading/trailing whitespace) or if they have any characters that are invalid as part of a header value.
Who is impacted?
Users who (all of the below):
node-fetch
) or configured their ownnode-fetch
fetcherThe following node snippet can test whether your API key has invalid header values. This code is taken directly from
node-fetch@2
's header value validation code.If the provided API key is not a valid header value, whenever Apollo Server uses that API key in a request (to Studio, for example),
node-fetch
will throw an error which contains the header value. This error is logged in various ways depending on the user's configuration, but most likely the console or some configured logging service.Patches
This problem is patched in the latest version of Apollo Server as soon as this advisory is published.
Workarounds
fetcher
Solution
.trim()
on incoming API keys in order to eliminate leading/trailing whitespace and log a warning when it does so.node-fetch@2
performs on header values on startup. Apollo Server will throw an error on startup (i.e., fail to start completely) and notify the user their API key is invalid along with the offending characters.Release Notes
apollographql/apollo-server (apollo-server-core)
v2.26.1
Compare Source
v2.26.0
Compare Source
v2.25.4
Compare Source
v2.25.3
Compare Source
v2.25.2
Compare Source
v2.25.1
Compare Source
v2.25.0
Compare Source
v2.24.1
Compare Source
v2.24.0
Compare Source
v2.23.0
Compare Source
v2.22.2
Compare Source
v2.22.1
Compare Source
v2.22.0
Compare Source
v2.21.2
Compare Source
v2.21.1
Compare Source
Configuration
📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.