Skip to content
Snippets Groups Projects
  1. Apr 15, 2021
  2. Apr 14, 2021
  3. Apr 13, 2021
  4. Apr 12, 2021
  5. Apr 11, 2021
  6. Apr 10, 2021
  7. Apr 05, 2021
  8. Apr 03, 2021
  9. Mar 31, 2021
  10. Mar 26, 2021
  11. Mar 25, 2021
  12. Mar 24, 2021
    • Marcin Mikołajczak's avatar
      Add transition to media modal background (#15843) · f8e50eae
      Marcin Mikołajczak authored
      
      * Add transition to media modal background
      
      * use reduceMotion
      
      * Move background color transition into css
      
      Signed-off-by: default avatarmarcin mikołajczak <me@mkljczk.pl>
      Unverified
      f8e50eae
    • Claire's avatar
      Update Mastodon to Rails 6.1 (#15910) · cbd0ee1d
      Claire authored
      * Update devise-two-factor to unreleased fork for Rails 6 support
      
      Update tests to match new `rotp` version.
      
      * Update nsa gem to unreleased fork for Rails 6 support
      
      * Update rails to 6.1.3 and rails-i18n to 6.0
      
      * Update to unreleased fork of pluck_each for Ruby 6 support
      
      * Run "rails app:update"
      
      * Add missing ActiveStorage config file
      
      * Use config.ssl_options instead of removed ApplicationController#force_ssl
      
      Disabled force_ssl-related tests as they do not seem to be easily testable
      anymore.
      
      * Fix nonce directives by removing Rails 5 specific monkey-patching
      
      * Fix fixture_file_upload deprecation warning
      
      * Fix yield-based test failing with Rails 6
      
      * Use Rails 6's index_with when possible
      
      * Use ActiveRecord::Cache::Store#delete_multi from Rails 6
      
      This will yield better performances when deleting an account
      
      * Disable Rails 6.1's automatic preload link headers
      
      Since Rails 6.1, ActionView adds preload links for javascript files
      in the Links header per default.
      
      In our case, that will bloat headers too much and potentially cause
      issues with reverse proxies. Furhermore, we don't need those links,
      as we already output them as HTML link tags.
      
      * Switch to Rails 6.0 default config
      
      * Switch to Rails 6.1 default config
      
      * Do not include autoload paths in the load path
      Unverified
      cbd0ee1d
    • Claire's avatar
      Fix Mastodon not understanding as:Public and Public (#15948) · 1c4dee45
      Claire authored
      Fixes #5551
      Unverified
      1c4dee45
    • Claire's avatar
      Fix compose form behavior in mobile view (#15555) · 034f37b8
      Claire authored
      * Fix ComposeForm being mounted twice in mobile view
      
      Fixes #13094
      
      * Fix compose form focus and pre-selection behavior in mobile view
      
      * Split _updateFocusAndSelection out of componentDidUpdate
      Unverified
      034f37b8
  13. Mar 22, 2021
  14. Mar 19, 2021
    • Claire's avatar
      Fix brakeman warning (#15870) · 876840e9
      Claire authored
      As far as I understand, the brakeman warning was a false-positive as
      `content_tag` properly escapes untrusted HTML. Furthermore, the interpolated
      string values are built from the “username” part of accounts, which is
      restricted to a small subset of ASCII that precludes any XML entity or HTML
      code.
      
      This proposed change should be functionally equivalent to the current code,
      however it is slightly more robust, it's more idiomatic, and Brakeman will
      stop complaining about it.
      Unverified
      876840e9
    • Claire's avatar
      Bypass MX validation for explicitly allowed domains (#15930) · 051efed5
      Claire authored
      * Bypass MX validation for explicitly allowed domains
      
      This spares some lookups and prevent issues in some edge cases with
      local domains.
      
      * Add tests
      
      * Fix test
      Unverified
      051efed5
    • Claire's avatar
      Fixing the hero widget (#15926) · 5d48402b
      Claire authored
      
      * Removing last-child padding conflicts with light theme in hero widget
      
      * Add missing background color to widget
      
      * Reset widget.scss to default
      
      * Hope this works
      
      Co-authored-by: default avatarkoyu <me@koyu.space>
      Unverified
      5d48402b
    • Claire's avatar
      Fix custom CSS when CDN_HOST is set (#15927) · 39a490c7
      Claire authored
      Unverified
      39a490c7
    • Eugen Rochko's avatar
      WIP (#15222) · af8fe6e1
      Eugen Rochko authored
      Unverified
      af8fe6e1
    • Claire's avatar
      Improve account counters handling (#15913) · 741d0952
      Claire authored
      * Improve account counters handling
      
      * Use ActiveRecord::Base::sanitize_sql to pass values instead of interpolating them
      
      Keep using string interpolation for `key` as it is safe and using
      “ActiveRecord::Base::sanitize_sql_hash_for_assignment” would require stitching
      bits of SQL in a way that is not more easily checked for safety.
      
      * Add migration hook to catch PostgreSQL versions earlier than 9.5
      Unverified
      741d0952
    • Claire's avatar
      Further preparation for Rails 6 (#15916) · b3582298
      Claire authored
      * Use ActiveRecord::Result#to_ary instead of deprecated to_hash
      
      They do the same thing, and to_hash has been removed from Rails 6.1
      
      * Explicitly name polymorphic indexes to workaround a bug in Rails 6.1
      
      cf. https://github.com/rails/rails/issues/41693
      
      * Fix incorrect usage of “foreign_key” in migration script
      
      * Use `ActiveModel::Errors#delete` instead of deprecated clear method
      
      * Fix link headers tests on Rails 6.1
      
      Rails 6.1 adds values to the Link header by default, thus it is not a
      LinkHeader object anymore. Fix the test to parse the Link header instead
      of assuming it is a LinkHeader.
      Unverified
      b3582298
    • Claire's avatar
      Add option to opt out of unread notification markers (#15842) · 55ac2b9c
      Claire authored
      Fixes #15133
      Unverified
      55ac2b9c
    • Claire's avatar
      Prepare Mastodon for zeitwerk autoloader (#15917) · a4dcaef5
      Claire authored
      * Prepare Mastodon for zeitwerk autoloader (Rails 6)
      
      Add inflections and rename/move a few classes.
      
      In particular, app/lib/exceptions.rb and app/lib/sanitize_config.rb
      were manually loaded while still in autoload paths.
      
      * Add inflection for Url → URL
      Unverified
      a4dcaef5
  15. Mar 17, 2021
    • Claire's avatar
      Fix cache_collection crashing when given an empty collection (#15921) · 5027abec
      Claire authored
      * Fix cache_collection crashing when given an empty collection
      
      * Add tests
      Unverified
      5027abec
    • Claire's avatar
      Prepare Mastodon for Rails 6 (#15911) · 43eff898
      Claire authored
      * Fix misuse of foreign_type
      
      * Fix use of removed "add_template_helper"
      
      * Use response.media_type instead of response.content_type in tests
      
      * Fix CSV export controller test on Rails 6
      
      Rails 6 sets a "filename*" field in the Content-Disposition header to
      explicitly encode the filename as UTF-8.
      
      This changes checks the first part of the Content-Disposition header so
      it matches in both Rails 5 and Rails 6.
      
      * Fix emoji formatting with Rails 6
      
      * Make emoji output more idiomatic and robust
      
      * Switch from redis-rails gem to built-in Rails redis cache storage
      Unverified
      43eff898
  16. Mar 15, 2021
  17. Mar 12, 2021
  18. Mar 07, 2021
  19. Mar 03, 2021
  20. Mar 02, 2021
  21. Mar 01, 2021
Loading