Skip to content
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 more haml-lint Rubocop #24107

Merged
merged 2 commits into from Mar 15, 2023
Merged

Fix more haml-lint Rubocop #24107

merged 2 commits into from Mar 15, 2023

Conversation

nschonni
Copy link
Contributor

@nschonni nschonni commented Mar 15, 2023

Took a pass by deleting the section from the todo and re-running the lint to see what it was suppressing. There currently isn't any autofix for these rubocops so probably needs an extra check to see I didn't mess anything up doing manual edits

The remaining issues when commenting out the section again

app/views/accounts/_og.html.haml:13 [W] RuboCop: Style/SlicingWithRange: Prefer ary[n..] over ary[n..-1].
app/views/admin/account_warnings/_account_warning.html.haml:8 [W] RuboCop: Rails/OutputSafety: Tagging a string as html safe may be a security risk.
app/views/admin/accounts/index.html.haml:50 [W] RuboCop: Style/SymbolProc: Pass `&:user_pending?` as an argument to `any?` instead of a block.
app/views/admin/accounts/show.html.haml:75 [W] RuboCop: Rails/WhereExists: Prefer `exists?(reference_account_id: @account.id)` over `where(reference_account_id: @account.id).exists?`.
app/views/admin/accounts/show.html.haml:138 [W] RuboCop: Style/SoleNestedConditional: Consider merging nested conditions into outer `if` conditions.
app/views/admin/accounts/show.html.haml:207 [W] RuboCop: Style/SoleNestedConditional: Consider merging nested conditions into outer `if` conditions.
app/views/admin/accounts/show.html.haml:217 [W] RuboCop: Style/IfInsideElse: Convert `if` nested inside `else` to `elsif`.
app/views/admin/accounts/show.html.haml:235 [W] RuboCop: Style/SoleNestedConditional: Consider merging nested conditions into outer `unless` conditions.
app/views/admin/accounts/show.html.haml:238 [W] RuboCop: Style/SoleNestedConditional: Consider merging nested conditions into outer `if` conditions.
app/views/admin/accounts/show.html.haml:243 [W] RuboCop: Style/SoleNestedConditional: Consider merging nested conditions into outer `if` conditions.
app/views/admin/accounts/show.html.haml:245 [W] RuboCop: Style/IfInsideElse: Convert `if` nested inside `else` to `elsif`.
app/views/admin/announcements/edit.html.haml:11 [W] RuboCop: Rails/TimeZone: Do not use `Time.now` without zone. Use one of `Time.zone.now`, `Time.current`, `Time.now.in_time_zone`, `Time.now.utc`, `Time.now.getlocal`, `Time.now.xmlschema`, `Time.now.iso8601`, `Time.now.jisx0301`, `Time.now.rfc3339`, `Time.now.httpdate`, `Time.now.to_i`, `Time.now.to_f` instead. (https://rails.rubystyle.guide#time, http://danilenko.org/2012/7/6/rails_timezones)
app/views/admin/announcements/edit.html.haml:12 [W] RuboCop: Rails/TimeZone: Do not use `Time.now` without zone. Use one of `Time.zone.now`, `Time.current`, `Time.now.in_time_zone`, `Time.now.utc`, `Time.now.getlocal`, `Time.now.xmlschema`, `Time.now.iso8601`, `Time.now.jisx0301`, `Time.now.rfc3339`, `Time.now.httpdate`, `Time.now.to_i`, `Time.now.to_f` instead. (https://rails.rubystyle.guide#time, http://danilenko.org/2012/7/6/rails_timezones)
app/views/admin/announcements/edit.html.haml:22 [W] RuboCop: Rails/TimeZone: Do not use `Time.now` without zone. Use one of `Time.zone.now`, `Time.current`, `Time.now.in_time_zone`, `Time.now.utc`, `Time.now.getlocal`, `Time.now.xmlschema`, `Time.now.iso8601`, `Time.now.jisx0301`, `Time.now.rfc3339`, `Time.now.httpdate`, `Time.now.to_i`, `Time.now.to_f` instead. (https://rails.rubystyle.guide#time, http://danilenko.org/2012/7/6/rails_timezones)
app/views/admin/announcements/new.html.haml:11 [W] RuboCop: Rails/TimeZone: Do not use `Time.now` without zone. Use one of `Time.zone.now`, `Time.current`, `Time.now.in_time_zone`, `Time.now.utc`, `Time.now.getlocal`, `Time.now.xmlschema`, `Time.now.iso8601`, `Time.now.jisx0301`, `Time.now.rfc3339`, `Time.now.httpdate`, `Time.now.to_i`, `Time.now.to_f` instead. (https://rails.rubystyle.guide#time, http://danilenko.org/2012/7/6/rails_timezones)
app/views/admin/announcements/new.html.haml:12 [W] RuboCop: Rails/TimeZone: Do not use `Time.now` without zone. Use one of `Time.zone.now`, `Time.current`, `Time.now.in_time_zone`, `Time.now.utc`, `Time.now.getlocal`, `Time.now.xmlschema`, `Time.now.iso8601`, `Time.now.jisx0301`, `Time.now.rfc3339`, `Time.now.httpdate`, `Time.now.to_i`, `Time.now.to_f` instead. (https://rails.rubystyle.guide#time, http://danilenko.org/2012/7/6/rails_timezones)
app/views/admin/announcements/new.html.haml:21 [W] RuboCop: Rails/TimeZone: Do not use `Time.now` without zone. Use one of `Time.zone.now`, `Time.current`, `Time.now.in_time_zone`, `Time.now.utc`, `Time.now.getlocal`, `Time.now.xmlschema`, `Time.now.iso8601`, `Time.now.jisx0301`, `Time.now.rfc3339`, `Time.now.httpdate`, `Time.now.to_i`, `Time.now.to_f` instead. (https://rails.rubystyle.guide#time, http://danilenko.org/2012/7/6/rails_timezones)
app/views/admin/disputes/appeals/_appeal.html.haml:7 [W] RuboCop: Rails/OutputSafety: Tagging a string as html safe may be a security risk.
app/views/admin/domain_blocks/edit.html.haml:15 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/admin/domain_blocks/new.html.haml:15 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/admin/ip_blocks/new.html.haml:11 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/admin/ip_blocks/new.html.haml:14 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/admin/reports/actions/preview.html.haml:35 [W] RuboCop: Style/NegatedIf: Favor `unless` over `if` for negative conditions. (https://rubystyle.guide#unless-for-negatives)
app/views/admin/reports/actions/preview.html.haml:64 [W] RuboCop: Rails/LinkToBlank: Specify a `:rel` option containing noopener. (https://mathiasbynens.github.io/rel-noopener/, https://html.spec.whatwg.org/multipage/links.html#link-type-noopener, https://html.spec.whatwg.org/multipage/links.html#link-type-noreferrer)
app/views/admin/reports/index.html.haml:30 [W] RuboCop: Lint/UnusedBlockArgument: Unused block argument - `target_account_id`. If it's necessary, use `_` or `_target_account_id` as an argument name to indicate that it won't be used. (https://rubystyle.guide#underscore-unused-vars)
app/views/admin/reports/show.html.haml:95 [W] RuboCop: Style/NegatedIfElseCondition: Invert the negated condition and swap the if-else branches.
app/views/admin/roles/_form.html.haml:35 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/admin/roles/_form.html.haml:35 [W] RuboCop: Style/NumericPredicate: Use `(UserRole::FLAGS[privilege] & current_user.role.computed_permissions).zero?` instead of `UserRole::FLAGS[privilege] & current_user.role.computed_permissions == 0`. (https://rubystyle.guide#predicate-methods)
app/views/admin/settings/about/show.html.haml:25 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/admin/settings/about/show.html.haml:27 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/admin/settings/appearance/show.html.haml:17 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/admin/settings/registrations/show.html.haml:18 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/admin/statuses/show.html.haml:8 [W] RuboCop: Rails/LinkToBlank: Specify a `:rel` option containing noopener. (https://mathiasbynens.github.io/rel-noopener/, https://html.spec.whatwg.org/multipage/links.html#link-type-noopener, https://html.spec.whatwg.org/multipage/links.html#link-type-noreferrer)
app/views/auth/registrations/new.html.haml:28 [W] RuboCop: Rails/Blank: Use `@invite.blank?` instead of `!@invite.present?`.
app/views/disputes/strikes/show.html.haml:28 [W] RuboCop: Rails/Present: Use `if @strike.text.present?` instead of `unless @strike.text.blank?`.
app/views/disputes/strikes/show.html.haml:60 [W] RuboCop: Rails/LinkToBlank: Specify a `:rel` option containing noopener. (https://mathiasbynens.github.io/rel-noopener/, https://html.spec.whatwg.org/multipage/links.html#link-type-noopener, https://html.spec.whatwg.org/multipage/links.html#link-type-noreferrer)
app/views/filters/_filter_fields.html.haml:5 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/filters/_filter_fields.html.haml:8 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/invites/_form.html.haml:6 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/invites/_form.html.haml:8 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/layouts/application.html.haml:27 [W] RuboCop: Rails/OutputSafety: Tagging a string as html safe may be a security risk.
app/views/layouts/error.html.haml:4 [W] RuboCop: Style/HashSyntax: Don't mix styles in the same hash. (https://rubystyle.guide#hash-literals)
app/views/notification_mailer/_status.html.haml:36 [W] RuboCop: Style/NumericPredicate: Use `status.ordered_media_attachments.size.positive?` instead of `status.ordered_media_attachments.size > 0`. (https://rubystyle.guide#predicate-methods)
app/views/notification_mailer/_status.html.haml:36 [W] RuboCop: Style/ZeroLengthPredicate: Use `!empty?` instead of `size > 0`.
app/views/settings/applications/_fields.html.haml:10 [W] RuboCop: Rails/OutputSafety: Tagging a string as html safe may be a security risk.
app/views/settings/applications/_fields.html.haml:17 [W] RuboCop: Lint/UnusedBlockArgument: Unused block argument - `k`. If it's necessary, use `_` or `_k` as an argument name to indicate that it won't be used. (https://rubystyle.guide#underscore-unused-vars)
app/views/settings/applications/_fields.html.haml:18 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/settings/imports/show.html.haml:6 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/settings/imports/show.html.haml:12 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/settings/preferences/appearance/show.html.haml:10 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/settings/preferences/appearance/show.html.haml:12 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/settings/preferences/appearance/show.html.haml:56 [W] RuboCop: Style/WordArray: Use `%w` or `%W` for an array of words. (https://rubystyle.guide#percent-w)
app/views/settings/preferences/appearance/show.html.haml:56 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/settings/preferences/other/show.html.haml:20 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/settings/preferences/other/show.html.haml:23 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/settings/preferences/other/show.html.haml:34 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/statuses/_detailed_status.html.haml:80 [W] RuboCop: Rails/LinkToBlank: Specify a `:rel` option containing noopener. (https://mathiasbynens.github.io/rel-noopener/, https://html.spec.whatwg.org/multipage/links.html#link-type-noopener, https://html.spec.whatwg.org/multipage/links.html#link-type-noreferrer)
app/views/statuses/_poll.html.haml:10 [W] RuboCop: Style/NumericPredicate: Use `total_votes_count.positive?` instead of `total_votes_count > 0`. (https://rubystyle.guide#predicate-methods)
app/views/statuses/_poll.html.haml:20 [W] RuboCop: Style/MinMaxComparison: Use `[percent, 1].max` instead.
app/views/statuses/show.html.haml:16 [W] RuboCop: Style/SlicingWithRange: Prefer ary[n..] over ary[n..-1].
app/views/statuses_cleanup/show.html.haml:13 [W] RuboCop: Style/Lambda: Use the `-> { ... }` lambda literal syntax for single line lambdas. (https://rubystyle.guide#lambda-multi-line)
app/views/user_mailer/warning.html.haml:42 [W] RuboCop: Rails/Present: Use `if @warning.text.present?` instead of `unless @warning.text.blank?`.
app/views/user_mailer/warning.html.haml:71 [W] RuboCop: Rails/Blank: Use `@statuses.blank?` instead of `@statuses.nil? || @statuses.empty?`.

218 files inspected, 63 lints detected

@@ -11,7 +11,7 @@
h_class = microformats_h_class(status, is_predecessor, is_successor, include_threads)
style_classes = style_classes(status, is_predecessor, is_successor, include_threads)
mf_classes = microformats_classes(status, is_direct_parent, is_direct_child)
entry_classes = h_class + ' ' + mf_classes + ' ' + style_classes
entry_classes = "#{h_class} #{mf_classes} #{style_classes}"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was less sure about this one

@Gargron Gargron merged commit 65669d3 into mastodon:main Mar 15, 2023
28 checks passed
@nschonni nschonni deleted the haml-lint-rubocop branch March 15, 2023 19:08
rhelmer added a commit to MozillaSocial/mastodon that referenced this pull request Mar 20, 2023
* Skip double building on Dependabot branches (mastodon#24025)

* Bump pg from 1.4.5 to 1.4.6 (mastodon#24001)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump yargs from 17.7.0 to 17.7.1 (mastodon#24002)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump sidekiq-scheduler from 5.0.1 to 5.0.2 (mastodon#24004)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump rack from 2.2.6.2 to 2.2.6.3 (mastodon#23997)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump axios from 1.3.3 to 1.3.4 (mastodon#23996)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump utf-8-validate from 6.0.2 to 6.0.3 (mastodon#23992)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump omniauth_openid_connect from 0.6.0 to 0.6.1 (mastodon#23991)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump doorkeeper from 5.6.4 to 5.6.5 (mastodon#24009)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jest from 29.4.3 to 29.5.0 (mastodon#24003)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jest-environment-jsdom from 29.4.3 to 29.5.0 (mastodon#23998)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump rubocop from 1.45.1 to 1.48.0 (mastodon#23999)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump mkdirp from 2.1.3 to 2.1.5 (mastodon#23994)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump babel-jest from 29.4.3 to 29.5.0 (mastodon#24007)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add refreshing many accounts at once with "tootctl accounts refresh" (mastodon#23304)

* Skip rebase-needed job for i10n branch (mastodon#24026)

* Unescape HTML entities (mastodon#24019)

* Explicitly set github repo in instance presenter spec (mastodon#24036)

* Center the text itself in upload area (mastodon#24029)

* Sync CI and Docker Compose image versions (mastodon#24053)

* Bump puma from 6.1.0 to 6.1.1 (mastodon#24045)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Serializers spec coverage (mastodon#24017)

* Coverage improvement round-out following up previous work (mastodon#23987)

* Bump pghero from 3.1.0 to 3.2.0 (mastodon#24044)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump eslint from 8.33.0 to 8.35.0 (mastodon#24049)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Enable RSpec/FilePath (mastodon#23965)

* Add basic search specs for chewy indexes (mastodon#24065)

* Fix sidekiq jobs not triggering Elasticsearch index updates (mastodon#24046)

* Enable Rubocop Performance/DeleteSuffix (mastodon#24077)

* Prefer the stored location as after_sign_in_path in Omniauth Callback Controller (mastodon#24073)

* Bump jsdom from 21.1.0 to 21.1.1 (mastodon#24090)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump pghero from 3.2.0 to 3.3.0 (mastodon#24085)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Support the PROXY protocol through the PROXY_PROTO_V1 env variable (mastodon#24064)

* Bump rack from 2.2.6.3 to 2.2.6.4 (mastodon#24097)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump rails from 6.1.7.2 to 6.1.7.3 (mastodon#24096)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump rubocop from 1.48.0 to 1.48.1 (mastodon#24095)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Push Docker images to Github Container Registry as well (mastodon#24101)

* Skip Docker CI Login/Push on forks (mastodon#23564)

* Change sidekiq-bulk's batch size from 10,000 to 1,000 jobs in one Redis call (mastodon#24034)

* Redirect users to SLO at the IdP after logging them out of Mastodon. (mastodon#24020)

* Add spec for the CLI `version` task (mastodon#23978)

* Update PostCSS dependencies (mastodon#23835)

* Fix dashboard crash on ElasticSearch server error (mastodon#23751)

* Fix incorrect post links in strikes when the account is remote (mastodon#23611)

* Fix misleading error code when receiving invalid WebAuthn credentials (mastodon#23568)

* Setup haml-lint CI with todo config (mastodon#23524)

* Use Github Container Registry as the official container image source (mastodon#24113)

* Skip pushing containers on forks (mastodon#24106)

* Fix more haml-lint Rubocop (mastodon#24107)

* Autofix Rubocop Style/PreferredHashMethods (mastodon#23851)

* Bump rack-test from 2.0.2 to 2.1.0 (mastodon#24112)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Autofix Rubocop Style/RedundantArgument (mastodon#23798)

* Bump immutable from 4.2.4 to 4.3.0 (mastodon#24088)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @babel/eslint-parser from 7.19.1 to 7.21.3 (mastodon#24109)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump eslint from 8.35.0 to 8.36.0 (mastodon#24089)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Remove `bullet` and `active_record_query_trace` gems (mastodon#24121)

* Add `SENDFILE_HEADER` environment variable (mastodon#24123)

* Bump @babel/core from 7.21.0 to 7.21.3 (mastodon#24111)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add cache headers to static files served through Rails (mastodon#24120)

* Bump autoprefixer from 10.4.13 to 10.4.14 (mastodon#24108)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump sass from 1.58.3 to 1.59.3 (mastodon#24105)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Regen rubocop-todo without Max shadowing (mastodon#24076)

* Refactor monkey-patching of `PrivateAddressCheck` (mastodon#24122)

* Replace `Status#translatable?` with language matrix in separate endpoint (mastodon#24037)

* New Crowdin updates (mastodon#23904)

Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>

* Roll back unintentionally activated rubocop rules (mastodon#24132)

Co-authored-by: Eugen Rochko <eugen@zeonfederated.com>
Co-authored-by: Nick Schonning <nschonni@gmail.com>

* Change user backups to use expiring URLs for download when possible (mastodon#24136)

* Add warning for object storage misconfiguration (mastodon#24137)

* Ignore additional Style/OptionalBooleanParameter (mastodon#24138)

* Bump glob from 8.1.0 to 9.3.0 (mastodon#24110)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump rimraf from 4.1.2 to 4.4.0 (mastodon#24048)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Link to the Identity provider's account settings from the account settings (mastodon#24100)

Co-authored-by: Claire <claire.github-309c@sitedethib.com>

* Include config/ and update all rubcop deps (mastodon#23963)

* Workaround the ActiveRecord / Marshal serialization bug on Ruby 3.2 (mastodon#24142)

Co-authored-by: Jean Boussier <jean.boussier@gmail.com>

* Dedupe yarn.lock with yarn-deduplicate (mastodon#24119)

* Revert "Dedupe yarn.lock with yarn-deduplicate" (mastodon#24155)

* Upgrade redis-node to latest (mastodon#24154)

* Webhooks for local status.create, status.update, account.update (mastodon#24133)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Nick Schonning <nschonni@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: 9p4 <vcs@ersei.net>
Co-authored-by: Christian Schmidt <github@chsc.dk>
Co-authored-by: Matt Jankowski <matt@jankowski.online>
Co-authored-by: Rodion Borisov <vintprox@gmail.com>
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
Co-authored-by: CSDUMMI <31551856+CSDUMMI@users.noreply.github.com>
Co-authored-by: Renaud Chaput <renchap@gmail.com>
Co-authored-by: Eugen Rochko <eugen@zeonfederated.com>
Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
Co-authored-by: Jean byroot Boussier <jean.boussier+github@shopify.com>
Co-authored-by: Jean Boussier <jean.boussier@gmail.com>
Co-authored-by: Vyr Cossont <VyrCossont@users.noreply.github.com>
arachnist pushed a commit to arachnist/mastodon that referenced this pull request Apr 4, 2023
skerit pushed a commit to 11ways/mastodon that referenced this pull request Jul 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants