forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 182
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
Merge upstream changes up to 0b4a3a04378ce43f2f314b9446b5053f6b374c6d #2532
Merged
ClearlyClaire
merged 99 commits into
glitch-soc:main
from
ClearlyClaire:glitch-soc/merge-upstream
Dec 21, 2023
Merged
Merge upstream changes up to 0b4a3a04378ce43f2f314b9446b5053f6b374c6d #2532
ClearlyClaire
merged 99 commits into
glitch-soc:main
from
ClearlyClaire:glitch-soc/merge-upstream
Dec 21, 2023
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
… and size reduction, dedicated Streaming image (mastodon#26850) Co-authored-by: “Michael <“mx@vmstan.com> Co-authored-by: Emelia Smith <ThisIsMissEm@users.noreply.github.com>
Co-authored-by: Claire <claire.github-309c@sitedethib.com> Co-authored-by: Renaud Chaput <renchap@gmail.com>
Co-authored-by: Renaud Chaput <renchap@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Filippo Giunchedi <filippo@debian.org>
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>
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: - `config/initializers/content_security_policy.rb`: Upstream reworked the CSP, we kept our version for now. - `spec/requests/content_security_policy_spec.rb`: Upstream reworked the CSP, we kept our version for now.
Port 7faa27e to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #2532 +/- ##
==========================================
+ Coverage 82.62% 82.64% +0.01%
==========================================
Files 1038 1045 +7
Lines 28653 28696 +43
Branches 4661 4664 +3
==========================================
+ Hits 23675 23716 +41
Misses 3856 3856
- Partials 1122 1124 +2 ☔ View full report in Codecov by Sentry. |
…oc/merge-upstream
…creens Port b20af17 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
…oc/merge-upstream Conflicts: - `.rubocop_todo.yml`: Upstream fixed a bunch lint issues, and changed the `Max` parameter of the `Metrics/AbcSize` cop. Glitch-soc has different code and slightly higher `AbcSize` complexity, modified the `.rubocop_todo.yml` file accordingly. - `app/policies/status_policy.rb`: Upstream changed `account.suspended?` to `account.unavailable?` to prepare for delete flags. Glitch-soc has additional local-only conditions. Ported upstream's refactor while keeping glitch-soc's additional condition. - `app/serializers/initial_state_serializer.rb`: Upstream refactored a bunch of stuff while glitch-soc has more settings. Refactored as upstream did while keeping glitch-soc's settings.
…oc/merge-upstream Conflicts: - `Gemfile.lock`: Conflict caused by the `json` gem thing once again. Updated as upstream did, but keeping the most recent `json` version. - `spec/helpers/application_helper_spec.rb`: Upstream refactored a bunch of specs, including one place that differs because of glitch-soc's theming system. Refactored as upstream did, adapting it for glitch-soc's theming system.
Port ee83d5c to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
ClearlyClaire
changed the title
Merge upstream changes up to 85662a5a57531af5402a6777d0b1089e78c56815
Merge upstream changes up to 0b4a3a04378ce43f2f314b9446b5053f6b374c6d
Dec 20, 2023
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.
Merge upstream changes up to 85662a5
Conflicts
config/initializers/content_security_policy.rb
:Upstream reworked the CSP, we kept our version for now.
spec/requests/content_security_policy_spec.rb
:Upstream reworked the CSP, we kept our version for now.
Ported changes
Postponed changes
Merge upstream changes up to 0530ce5
Ported changes
Merge upstream changes up to 272592d
Conflicts
.rubocop_todo.yml
:Upstream fixed a bunch lint issues, and changed the
Max
parameter of theMetrics/AbcSize
cop.Glitch-soc has different code and slightly higher
AbcSize
complexity, modified the.rubocop_todo.yml
file accordingly.app/policies/status_policy.rb
:Upstream changed
account.suspended?
toaccount.unavailable?
to prepare for delete flags. Glitch-soc has additional local-only conditions.Ported upstream's refactor while keeping glitch-soc's additional condition.
app/serializers/initial_state_serializer.rb
:Upstream refactored a bunch of stuff while glitch-soc has more settings.
Refactored as upstream did while keeping glitch-soc's settings.
Merge upstream changes up to 0b4a3a0
Conflicts
Gemfile.lock
:Conflict caused by the
json
gem thing once again.Updated as upstream did, but keeping the most recent
json
version.spec/helpers/application_helper_spec.rb
:Upstream refactored a bunch of specs, including one place that differs
because of glitch-soc's theming system.
Refactored as upstream did, adapting it for glitch-soc's theming system.
Ported changes
Additional changes