forked from mastodon/mastodon
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Release: 20.3 #1055
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
Merged
Merged
Release: 20.3 #1055
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
4bb5179
Allow quotes to be displayed in the featured carousel (#36335)
diondiondion b5fbc4a
Fix redirect to external object when URL is missing or malformed (#36…
ClearlyClaire e3afe21
Display quotes in email notifications (#36379)
diondiondion 075ba7b
Add integration tests for mastodon-streaming (#36025)
ThisIsMissEm b53790a
Fix JSON payload being potentially mutated when processing interactio…
ClearlyClaire 15a64bc
Update dependency `rack` (#36443)
ClearlyClaire a491b1f
Use tag filter for pending tag count on admin dashboard (#36404)
mjankowski 1fb1e55
Fix quote post state sometimes not being updated through streaming se…
ClearlyClaire 529e007
Update dependency `openssl`
ClearlyClaire 0f8e366
Merge commit from fork
ThisIsMissEm 3143564
Merge commit from fork
ThisIsMissEm 682b5d6
Merge commit from fork
ThisIsMissEm 94d8336
Fix streaming still being authorized for suspended accounts (#36448)
ClearlyClaire 8899da0
Merge remote-tracking branch 'origin/releases/20' into kb-draft-20.3
kmycode 8013e34
Bump version to kb20.3
kmycode 38c61df
Fix lint
kmycode File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| %table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' } | ||
| %tr | ||
| %td.email-quote-header-img | ||
| = image_tag full_asset_url(status.account.avatar.url), alt: '', width: 34, height: 34 | ||
| %td.email-quote-header-text | ||
| %h2.email-quote-header-name | ||
| = display_name(status.account) | ||
| %p.email-quote-header-handle | ||
| @#{status.account.pretty_acct} | ||
|
|
||
| %table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' } | ||
| %tr | ||
| %td.email-status-content | ||
| = render 'status_content', status: status | ||
|
|
||
| %p.email-status-footer | ||
| = link_to l(status.created_at.in_time_zone(time_zone.presence), format: :with_time_zone), web_url("@#{status.account.pretty_acct}/#{status.id}") |
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| .auto-dir | ||
| - if status.spoiler_text? | ||
| %p.email-status-spoiler | ||
| = status.spoiler_text | ||
|
|
||
| .email-status-prose | ||
| = status_content_format(status) | ||
|
|
||
| - if status.ordered_media_attachments.size.positive? | ||
| %p.email-status-media | ||
| - status.ordered_media_attachments.each do |a| | ||
| - if status.local? | ||
| = link_to full_asset_url(a.file.url(:original)), full_asset_url(a.file.url(:original)) | ||
| - else | ||
| = link_to a.remote_url, a.remote_url |
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ def kmyblue_major | |
| end | ||
|
|
||
| def kmyblue_minor | ||
| 2 | ||
| 3 | ||
| end | ||
|
|
||
| def kmyblue_flag | ||
|
|
||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.