-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
2025 01 18 1 #47
2025 01 18 1 #47
Conversation
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…tch-soc#2916) * Remove glitch-soc's post collapse feature * Get rid of the infamous `parseClick` * Remove unused CSS * Use upstream's “Read More” implementation * Update translation strings
Port 683db3a to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port 9ff0140 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
…/middle-click Port upstream's middle-click handling changes
* New Crowdin translations * Fix bogus no.yml * Fix bogus simple_form.no.yml --------- Co-authored-by: GitHub Actions <noreply@github.com> Co-authored-by: Claire <claire.github-309c@sitedethib.com>
…oc/merge-upstream Conflicts: - `app/models/concerns/user/has_settings.rb`: Not a real conflict, upstream added a setting textually close to a glitch-soc one. Added upstream's new setting. - `app/views/settings/preferences/appearance/show.html.haml`: Not a real conflict, upstream added a setting textually close to a glitch-soc one. Added upstream's new setting. - `config/routes.rb`: Upstream moved web app routes to `config/routes/web_app.rb`, while glitch-soc had an extra route. Moved the extra route to `config/routes/web_app.rb`. - `spec/controllers/settings/preferences/appearance_controller_spec.rb`: This spec got converted to a system spec upstream. However, the theme setting works differently in glitch-soc, so the spec had been changed. Changed the corresponding system spec as well.
Port 346a27b to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port 04b7046 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port 6cf8776 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
…in web UI Port 7135f51 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
…tyles Port b82c791 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port 25387dc to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port ca45f89 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
… web UI Port bf79174 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port 30aa0df to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port 6615f17 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port 425311e to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port 58c5068 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port ded799f to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
…ntions Port a4560d9 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port da279df to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port 234af14 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port 3cf6681 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port f19fd0b to glitch-soc Co-authored-by: Claire <claire.github-309c@sitedethib.com> Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Port 0636bcd to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Co-authored-by: GitHub Actions <noreply@github.com>
…oc/merge-upstream
…e-upstream Merge upstream changes up to da4e55e
…oc/merge-upstream
…e-upstream Merge upstream changes up to 0aa9bb8
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: GitHub Actions <noreply@github.com>
…oc/merge-upstream Conflicts: - `CONTRIBUTING.md`: Upstream modified it while we quote upstream's within an otherwise different file. Applied upstream's changes.
…e-upstream Merge upstream changes up to 4bd969e
end | ||
|
||
def previous_name_error_message | ||
I18n.t('tags.does_not_match_previous_name') |
Check failure
Code scanning / CodeQL
Incomplete regular expression for hostnames High test
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix AI 18 days ago
To fix the problem, we need to ensure that all .
characters in the regular expression are properly escaped. This will prevent the regular expression from matching unintended hosts. Specifically, we need to update the regular expression used in the HASHTAG_RE
constant to escape the .
characters.
-
Copy modified line R70
@@ -69,3 +69,3 @@ | ||
it 'does not match URLs with hashtag-like anchors after a numeral' do | ||
expect(subject.match('https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111895#c4')).to be_nil | ||
expect(subject.match('https://gcc\.gnu\.org/bugzilla/show_bug\.cgi?id=111895#c4')).to be_nil | ||
end |
No description provided.