Remove Dependabot version update configuration#581
Merged
Conversation
GitHub will still create PRs for security vulnerabilities even without this file, since Dependabot security updates are controlled separately in the repository settings.
The `click_on 'Login'` call could fail with "Node with given id does not belong to the document" when React re-renders the page between Capybara finding and clicking the element. Using `find().click` lets Capybara retry on stale element references. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The Login element is a <button>, not an <a> tag. The previous fix
incorrectly used find('a', ...) which caused all system tests to fail
with Capybara::ElementNotFound.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
After clicking the Login button (form POST), the page navigates through the OAuth callback and redirects. During this transition, assert_text can hit a stale DOM node causing a Selenium UnknownError that Capybara doesn't automatically retry. Rescue and retry once to handle the race. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Revert sign_in helper back to simple click_on/assert_text. Instead, fix the root cause by adding disable-features=PaintHolding Chrome flag which prevents Chrome from holding stale page frames during navigation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Removes the Dependabot version update configuration. GitHub will continue to create security update PRs automatically, as Dependabot security updates are controlled separately in the repository settings and remain enabled.
This change stops the weekly version bump PRs while maintaining protection against known vulnerabilities.