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

Mastodonのバージョンアップ #418

Closed
wants to merge 621 commits into from
Closed

Mastodonのバージョンアップ #418

wants to merge 621 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Oct 13, 2020

  1. Bump sass from 1.26.12 to 1.27.0 (mastodon#14973)

    Bumps [sass](https://github.com/sass/dart-sass) from 1.26.12 to 1.27.0.
    - [Release notes](https://github.com/sass/dart-sass/releases)
    - [Changelog](https://github.com/sass/dart-sass/blob/master/CHANGELOG.md)
    - [Commits](sass/dart-sass@1.26.12...1.27.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 13, 2020
    Configuration menu
    Copy the full SHA
    ec1d8b7 View commit details
    Browse the repository at this point in the history
  2. Bump jest from 26.5.2 to 26.5.3 (mastodon#14969)

    Bumps [jest](https://github.com/facebook/jest) from 26.5.2 to 26.5.3.
    - [Release notes](https://github.com/facebook/jest/releases)
    - [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md)
    - [Commits](jestjs/jest@v26.5.2...v26.5.3)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 13, 2020
    Configuration menu
    Copy the full SHA
    bb18092 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b4c4af1 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2020

  1. Change how missing desktop notifications permission is displayed (mas…

    …todon#14985)
    
    Add missing controls for new notification type
    Gargron committed Oct 15, 2020
    Configuration menu
    Copy the full SHA
    a69ca29 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fb5f3be View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2020

  1. Configuration menu
    Copy the full SHA
    4130aef View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2020

  1. Add support for Gemini urls (mastodon#15013)

    This PR updates the `valid_url` regex and sanitizer allowlist to provide
    support for Gemini urls.
    
    Closes mastodon#14991
    joshleeb committed Oct 19, 2020
    Configuration menu
    Copy the full SHA
    0c24f4d View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2020

  1. Removed disabling comments for Style/MethodMissingSuper (mastodon#15014)

    * Removed disabling comments for Style/MethodMissingSuper
    
    * Update rubocop for codeclimate
    abcang committed Oct 20, 2020
    Configuration menu
    Copy the full SHA
    9649ca0 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2020

  1. Add follower synchronization mechanism (mastodon#14510)

    * Add support for followers synchronization on the receiving end
    
    Check the `collectionSynchronization` attribute on `Create` and `Announce`
    activities and synchronize followers from provided collection if possible.
    
    * Add tests for followers synchronization on the receiving end
    
    * Add support for follower synchronization on the sender's end
    
    * Add tests for the sending end
    
    * Switch from AS attributes to HTTP header
    
    Replace the custom `collectionSynchronization` ActivityStreams attribute by
    an HTTP header (`X-AS-Collection-Synchronization`) with the same syntax as
    the `Signature` header and the following fields:
    - `collectionId` to specify which collection to synchronize
    - `digest` for the SHA256 hex-digest of the list of followers known on the
       receiving instance (where “receiving instance” is determined by accounts
       sharing the same host name for their ActivityPub actor `id`)
    - `url` of a collection that should be fetched by the instance actor
    
    Internally, move away from the webfinger-based `domain` attribute and use
    account `uri` prefix to group accounts.
    
    * Add environment variable to disable followers synchronization
    
    Since the whole mechanism relies on some new preconditions that, in some
    extremely rare cases, might not be met, add an environment variable
    (DISABLE_FOLLOWERS_SYNCHRONIZATION) to disable the mechanism altogether and
    avoid followers being incorrectly removed.
    
    The current conditions are:
    1. all managed accounts' actor `id` and inbox URL have the same URI scheme and
       netloc.
    2. all accounts whose actor `id` or inbox URL share the same URI scheme and
       netloc as a managed account must be managed by the same Mastodon instance
       as well.
    
    As far as Mastodon is concerned, breaking those preconditions require extensive
    configuration changes in the reverse proxy and might also cause other issues.
    
    Therefore, this environment variable provides a way out for people with highly
    unusual configurations, and can be safely ignored for the overwhelming majority
    of Mastodon administrators.
    
    * Only set follower synchronization header on non-public statuses
    
    This is to avoid unnecessary computations and allow Follow-related
    activities to be handled by the usual codepath instead of going through
    the synchronization mechanism (otherwise, any Follow/Undo/Accept activity
    would trigger the synchronization mechanism even if processing the activity
    itself would be enough to re-introduce synchronization)
    
    * Change how ActivityPub::SynchronizeFollowersService handles follow requests
    
    If the remote lists a local follower which we only know has sent a follow
    request, consider the follow request as accepted instead of sending an Undo.
    
    * Integrate review feeback
    
    - rename X-AS-Collection-Synchronization to Collection-Synchronization
    - various minor refactoring and code style changes
    
    * Only select required fields when computing followers_hash
    
    * Use actor URI rather than webfinger domain in synchronization endpoint
    
    * Change hash computation to be a XOR of individual hashes
    
    Makes it much easier to be memory-efficient, and avoid sorting discrepancy issues.
    
    * Marginally improve followers_hash computation speed
    
    * Further improve hash computation performances by using pluck_each
    ClearlyClaire committed Oct 21, 2020
    Configuration menu
    Copy the full SHA
    ca56527 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b37c9e5 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2020

  1. Bump @testing-library/react from 11.0.4 to 11.1.0 (mastodon#14992)

    Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 11.0.4 to 11.1.0.
    - [Release notes](https://github.com/testing-library/react-testing-library/releases)
    - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md)
    - [Commits](testing-library/react-testing-library@v11.0.4...v11.1.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    bfc4226 View commit details
    Browse the repository at this point in the history
  2. Bump @babel/core from 7.11.6 to 7.12.3 (mastodon#14993)

    Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.11.6 to 7.12.3.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.3/packages/babel-core)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    a8eea8e View commit details
    Browse the repository at this point in the history
  3. Bump @babel/runtime from 7.11.2 to 7.12.1 (mastodon#14994)

    Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) from 7.11.2 to 7.12.1.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.1/packages/babel-runtime)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    e07ea2f View commit details
    Browse the repository at this point in the history
  4. Bump webmock from 3.9.1 to 3.9.3 (mastodon#14996)

    Bumps [webmock](https://github.com/bblimke/webmock) from 3.9.1 to 3.9.3.
    - [Release notes](https://github.com/bblimke/webmock/releases)
    - [Changelog](https://github.com/bblimke/webmock/blob/master/CHANGELOG.md)
    - [Commits](bblimke/webmock@v3.9.1...v3.9.3)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    0e37e26 View commit details
    Browse the repository at this point in the history
  5. Bump @babel/plugin-transform-react-inline-elements from 7.10.4 to 7.1…

    …2.1 (mastodon#14998)
    
    Bumps [@babel/plugin-transform-react-inline-elements](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-react-inline-elements) from 7.10.4 to 7.12.1.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.1/packages/babel-plugin-transform-react-inline-elements)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    5bdcc2c View commit details
    Browse the repository at this point in the history
  6. Bump active_record_query_trace from 1.7 to 1.8 (mastodon#14999)

    Bumps [active_record_query_trace](https://github.com/brunofacca/active-record-query-trace) from 1.7 to 1.8.
    - [Release notes](https://github.com/brunofacca/active-record-query-trace/releases)
    - [Changelog](https://github.com/brunofacca/active-record-query-trace/blob/master/HISTORY.md)
    - [Commits](brunofacca/active-record-query-trace@v1.7...v1.8)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    5567a50 View commit details
    Browse the repository at this point in the history
  7. Bump yargs from 16.0.3 to 16.1.0 (mastodon#15010)

    Bumps [yargs](https://github.com/yargs/yargs) from 16.0.3 to 16.1.0.
    - [Release notes](https://github.com/yargs/yargs/releases)
    - [Changelog](https://github.com/yargs/yargs/blob/master/CHANGELOG.md)
    - [Commits](yargs/yargs@v16.0.3...v16.1.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    ac90b06 View commit details
    Browse the repository at this point in the history
  8. Bump oj from 3.10.14 to 3.10.15 (mastodon#15009)

    Bumps [oj](https://github.com/ohler55/oj) from 3.10.14 to 3.10.15.
    - [Release notes](https://github.com/ohler55/oj/releases)
    - [Changelog](https://github.com/ohler55/oj/blob/develop/CHANGELOG.md)
    - [Commits](ohler55/oj@v3.10.14...v3.10.15)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    5598c67 View commit details
    Browse the repository at this point in the history
  9. Bump tzinfo-data from 1.2020.2 to 1.2020.3 (mastodon#15002)

    Bumps [tzinfo-data](https://github.com/tzinfo/tzinfo-data) from 1.2020.2 to 1.2020.3.
    - [Release notes](https://github.com/tzinfo/tzinfo-data/releases)
    - [Commits](tzinfo/tzinfo-data@v1.2020.2...v1.2020.3)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    cf5f8a7 View commit details
    Browse the repository at this point in the history
  10. Bump rubocop from 0.93.0 to 0.93.1 (mastodon#15004)

    Bumps [rubocop](https://github.com/rubocop-hq/rubocop) from 0.93.0 to 0.93.1.
    - [Release notes](https://github.com/rubocop-hq/rubocop/releases)
    - [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md)
    - [Commits](rubocop/rubocop@v0.93.0...v0.93.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    9061127 View commit details
    Browse the repository at this point in the history
  11. Bump omniauth-saml from 1.10.2 to 1.10.3 (mastodon#15007)

    Bumps [omniauth-saml](https://github.com/omniauth/omniauth-saml) from 1.10.2 to 1.10.3.
    - [Release notes](https://github.com/omniauth/omniauth-saml/releases)
    - [Changelog](https://github.com/omniauth/omniauth-saml/blob/master/CHANGELOG.md)
    - [Commits](omniauth/omniauth-saml@v1.10.2...v1.10.3)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    39d7562 View commit details
    Browse the repository at this point in the history
  12. Bump @github/webauthn-json from 0.5.6 to 0.5.7 (mastodon#14997)

    Bumps [@github/webauthn-json](https://github.com/github/webauthn-json) from 0.5.6 to 0.5.7.
    - [Release notes](https://github.com/github/webauthn-json/releases)
    - [Commits](github/webauthn-json@v0.5.6...v0.5.7)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    4d6716e View commit details
    Browse the repository at this point in the history
  13. Bump @babel/plugin-proposal-decorators from 7.10.5 to 7.12.1 (mastodo…

    …n#15008)
    
    Bumps [@babel/plugin-proposal-decorators](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-proposal-decorators) from 7.10.5 to 7.12.1.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.1/packages/babel-plugin-proposal-decorators)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    3b4ecf4 View commit details
    Browse the repository at this point in the history
  14. Bump @babel/preset-react from 7.10.4 to 7.12.1 (mastodon#15006)

    Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) from 7.10.4 to 7.12.1.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.1/packages/babel-preset-react)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    cab4a71 View commit details
    Browse the repository at this point in the history
  15. Bump react from 16.13.1 to 16.14.0 (mastodon#15005)

    Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) from 16.13.1 to 16.14.0.
    - [Release notes](https://github.com/facebook/react/releases)
    - [Changelog](https://github.com/facebook/react/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/facebook/react/commits/v16.14.0/packages/react)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    d9b6efd View commit details
    Browse the repository at this point in the history
  16. Bump @babel/preset-env from 7.11.5 to 7.12.1 (mastodon#15001)

    Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.11.5 to 7.12.1.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.1/packages/babel-preset-env)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    8984c87 View commit details
    Browse the repository at this point in the history
  17. Bump @babel/plugin-transform-runtime from 7.11.5 to 7.12.1 (mastodon#…

    …14995)
    
    Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) from 7.11.5 to 7.12.1.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.1/packages/babel-plugin-transform-runtime)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    57b9115 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2020

  1. Configuration menu
    Copy the full SHA
    fb58658 View commit details
    Browse the repository at this point in the history
  2. Fix followers synchronization mechanism not being triggered on mentio…

    …ns (mastodon#15026)
    
    e.g. if someone on an instance that previously had followers gets mentioned
    in a private toot, before this PR, they would not receive a
    Collection-Synchronization header and may show the toot to the former followers
    in addition to the mentioned person.
    ClearlyClaire committed Oct 23, 2020
    Configuration menu
    Copy the full SHA
    1f945e7 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2020

  1. Configuration menu
    Copy the full SHA
    3678b10 View commit details
    Browse the repository at this point in the history
  2. Bump stackprof from 0.2.15 to 0.2.16 (mastodon#15046)

    Bumps [stackprof](https://github.com/tmm1/stackprof) from 0.2.15 to 0.2.16.
    - [Release notes](https://github.com/tmm1/stackprof/releases)
    - [Changelog](https://github.com/tmm1/stackprof/blob/master/CHANGELOG.md)
    - [Commits](tmm1/stackprof@v0.2.15...v0.2.16)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    853d276 View commit details
    Browse the repository at this point in the history
  3. Bump aws-sdk-s3 from 1.83.0 to 1.83.1 (mastodon#15045)

    Bumps [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) from 1.83.0 to 1.83.1.
    - [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
    - [Changelog](https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-s3/CHANGELOG.md)
    - [Commits](https://github.com/aws/aws-sdk-ruby/commits)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    652f626 View commit details
    Browse the repository at this point in the history
  4. Bump simplecov from 0.19.0 to 0.19.1 (mastodon#15042)

    Bumps [simplecov](https://github.com/simplecov-ruby/simplecov) from 0.19.0 to 0.19.1.
    - [Release notes](https://github.com/simplecov-ruby/simplecov/releases)
    - [Changelog](https://github.com/simplecov-ruby/simplecov/blob/main/CHANGELOG.md)
    - [Commits](simplecov-ruby/simplecov@v0.19.0...v0.19.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    8b4654f View commit details
    Browse the repository at this point in the history
  5. Bump strong_migrations from 0.7.1 to 0.7.2 (mastodon#15044)

    Bumps [strong_migrations](https://github.com/ankane/strong_migrations) from 0.7.1 to 0.7.2.
    - [Release notes](https://github.com/ankane/strong_migrations/releases)
    - [Changelog](https://github.com/ankane/strong_migrations/blob/master/CHANGELOG.md)
    - [Commits](ankane/strong_migrations@v0.7.1...v0.7.2)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    1eda0a9 View commit details
    Browse the repository at this point in the history
  6. Bump eslint-plugin-react from 7.21.4 to 7.21.5 (mastodon#15043)

    Bumps [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) from 7.21.4 to 7.21.5.
    - [Release notes](https://github.com/yannickcr/eslint-plugin-react/releases)
    - [Changelog](https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md)
    - [Commits](jsx-eslint/eslint-plugin-react@v7.21.4...v7.21.5)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    0e04878 View commit details
    Browse the repository at this point in the history
  7. Bump sass-loader from 10.0.3 to 10.0.4 (mastodon#15035)

    Bumps [sass-loader](https://github.com/webpack-contrib/sass-loader) from 10.0.3 to 10.0.4.
    - [Release notes](https://github.com/webpack-contrib/sass-loader/releases)
    - [Changelog](https://github.com/webpack-contrib/sass-loader/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/sass-loader@v10.0.3...v10.0.4)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    0a30a13 View commit details
    Browse the repository at this point in the history
  8. Bump tzinfo-data from 1.2020.3 to 1.2020.4 (mastodon#15041)

    Bumps [tzinfo-data](https://github.com/tzinfo/tzinfo-data) from 1.2020.3 to 1.2020.4.
    - [Release notes](https://github.com/tzinfo/tzinfo-data/releases)
    - [Commits](tzinfo/tzinfo-data@v1.2020.3...v1.2020.4)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    336b6a3 View commit details
    Browse the repository at this point in the history
  9. Bump @testing-library/jest-dom from 5.11.4 to 5.11.5 (mastodon#15039)

    Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.11.4 to 5.11.5.
    - [Release notes](https://github.com/testing-library/jest-dom/releases)
    - [Changelog](https://github.com/testing-library/jest-dom/blob/master/CHANGELOG.md)
    - [Commits](testing-library/jest-dom@v5.11.4...v5.11.5)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    56939e1 View commit details
    Browse the repository at this point in the history
  10. Bump eslint from 7.11.0 to 7.12.0 (mastodon#15040)

    Bumps [eslint](https://github.com/eslint/eslint) from 7.11.0 to 7.12.0.
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
    - [Commits](eslint/eslint@v7.11.0...v7.12.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    e63c1f1 View commit details
    Browse the repository at this point in the history
  11. Bump react-test-renderer from 16.13.1 to 16.14.0 (mastodon#15038)

    Bumps [react-test-renderer](https://github.com/facebook/react/tree/HEAD/packages/react-test-renderer) from 16.13.1 to 16.14.0.
    - [Release notes](https://github.com/facebook/react/releases)
    - [Changelog](https://github.com/facebook/react/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/facebook/react/commits/v16.14.0/packages/react-test-renderer)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    444ed97 View commit details
    Browse the repository at this point in the history
  12. Bump axios from 0.20.0 to 0.21.0 (mastodon#15033)

    Bumps [axios](https://github.com/axios/axios) from 0.20.0 to 0.21.0.
    - [Release notes](https://github.com/axios/axios/releases)
    - [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md)
    - [Commits](axios/axios@v0.20.0...v0.21.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    2089290 View commit details
    Browse the repository at this point in the history
  13. Bump babel-jest from 26.5.2 to 26.6.1 (mastodon#15036)

    Bumps [babel-jest](https://github.com/facebook/jest/tree/HEAD/packages/babel-jest) from 26.5.2 to 26.6.1.
    - [Release notes](https://github.com/facebook/jest/releases)
    - [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/facebook/jest/commits/v26.6.1/packages/babel-jest)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    d388e5c View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2020

  1. Bump jest from 26.5.3 to 26.6.1 (mastodon#15037)

    Bumps [jest](https://github.com/facebook/jest) from 26.5.3 to 26.6.1.
    - [Release notes](https://github.com/facebook/jest/releases)
    - [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md)
    - [Commits](jestjs/jest@v26.5.3...v26.6.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 27, 2020
    Configuration menu
    Copy the full SHA
    4a509d5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a5afbb6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0a8ab82 View commit details
    Browse the repository at this point in the history
  4. Make visibility icon clickable as part of the time of a toot (mastodo…

    …n#15053)
    
    - Makes permalink to a toot more easily clickable
    - Fix clicking between icon and time in fact clicking the display name
    - Fix clicking slightly under time in fact clicking the display name
    ariasuni committed Oct 27, 2020
    Configuration menu
    Copy the full SHA
    1d07f51 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c5704e7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2ae751f View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2020

  1. Bump css-loader from 4.3.0 to 5.0.0 (mastodon#15011)

    Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 4.3.0 to 5.0.0.
    - [Release notes](https://github.com/webpack-contrib/css-loader/releases)
    - [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/css-loader@v4.3.0...v5.0.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    c796264 View commit details
    Browse the repository at this point in the history
  2. Bump mini-css-extract-plugin from 0.11.3 to 1.2.0 (mastodon#15034)

    Bumps [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) from 0.11.3 to 1.2.0.
    - [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases)
    - [Changelog](https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/mini-css-extract-plugin@v0.11.3...v1.2.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    d56e14a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8d7fbe7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f1f0400 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2020

  1. Fix poll ending notifications being created for each vote (mastodon#1…

    …5071)
    
    On a poll ending, notifications were created for each vote instead
    of for each voter.
    ClearlyClaire committed Nov 1, 2020
    Configuration menu
    Copy the full SHA
    c49805e View commit details
    Browse the repository at this point in the history
  2. Fix some account media gallery items having empty labels (mastodon#15073

    )
    
    Remove the labels entirely for images instead of putting an empty label.
    ClearlyClaire committed Nov 1, 2020
    Configuration menu
    Copy the full SHA
    9d023ed View commit details
    Browse the repository at this point in the history
  3. Tweak signature verification (mastodon#15069)

    * Add more specific error message when request body digest is invalid
    
    This may help other implementors debug their implementation.
    
    * Relax Host parameter requirement to GET requests
    
    The only POST requests processed by Mastodon need objects/actors (including
    their host) to be explicitly mentioned in the request's body, so replaying
    a legitimate request to another host should not be a security issue.
    
    * Support Digest headers using multiple algorithms or lowercase alogirthm names
    ClearlyClaire committed Nov 1, 2020
    Configuration menu
    Copy the full SHA
    fa929d8 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2020

  1. Fix postrgres secret name for cronjob (mastodon#15072)

    The cronjob tries to get key from `mastodon` secret instead of
    `mastodon-postgresql` - so the cronjob fails with this error:
    
    Error: couldn't find key postgresql-password in Secret [NS]/mastodon
    
    Another solution is to save the postgres password in mastodon secret,
    but that means that the password is placed in two places.
    
    Postgresql use <fullname>-postgresql name as secret name.
    metal3d committed Nov 2, 2020
    Configuration menu
    Copy the full SHA
    4b2ec4a View commit details
    Browse the repository at this point in the history
  2. Add expand/compress image button on image view box (mastodon#15068)

    * add zoom image button
    
    * enhance zoom algorithm & add translation
    
    * code structure
    
    * code structure
    
    * code structure
    
    * enhance grab performance
    
    * rm useless state
    
    * fix behavior on Firefox & scroll lock & horizontal scroll with mousewheel
    
    * remove scroll lock on MouseWheelEvent
    
    * code structure
    
    * enhance algorithm and code structure
    
    * rm Gemfile.lock from tree
    
    * codeclimate
    
    * fix a stupid mistake
    mashirozx committed Nov 2, 2020
    Configuration menu
    Copy the full SHA
    6a2db10 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2020

  1. add mouse scroll lock in image expand view (mastodon#15088)

    * add mouse scroll lock in image expand view
    
    * enhancement
    mashirozx committed Nov 3, 2020
    Configuration menu
    Copy the full SHA
    f645dad View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2020

  1. Bump bootsnap from 1.4.8 to 1.4.9 (mastodon#15086)

    Bumps [bootsnap](https://github.com/Shopify/bootsnap) from 1.4.8 to 1.4.9.
    - [Release notes](https://github.com/Shopify/bootsnap/releases)
    - [Changelog](https://github.com/Shopify/bootsnap/blob/master/CHANGELOG.md)
    - [Commits](Shopify/bootsnap@v1.4.8...v1.4.9)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    f43000d View commit details
    Browse the repository at this point in the history
  2. Bump sidekiq-unique-jobs from 6.0.24 to 6.0.25 (mastodon#15083)

    Bumps [sidekiq-unique-jobs](https://github.com/mhenrixon/sidekiq-unique-jobs) from 6.0.24 to 6.0.25.
    - [Release notes](https://github.com/mhenrixon/sidekiq-unique-jobs/releases)
    - [Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/mhenrixon/sidekiq-unique-jobs/commits/v6.0.25)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    d60485c View commit details
    Browse the repository at this point in the history
  3. Bump wicg-inert from 3.0.3 to 3.1.0 (mastodon#15081)

    Bumps [wicg-inert](https://github.com/WICG/inert) from 3.0.3 to 3.1.0.
    - [Release notes](https://github.com/WICG/inert/releases)
    - [Commits](WICG/inert@v3.0.3...v3.1.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    5b66763 View commit details
    Browse the repository at this point in the history
  4. Bump file-loader from 6.1.1 to 6.2.0 (mastodon#15075)

    Bumps [file-loader](https://github.com/webpack-contrib/file-loader) from 6.1.1 to 6.2.0.
    - [Release notes](https://github.com/webpack-contrib/file-loader/releases)
    - [Changelog](https://github.com/webpack-contrib/file-loader/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/file-loader@v6.1.1...v6.2.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    84cffe8 View commit details
    Browse the repository at this point in the history
  5. Bump compression-webpack-plugin from 6.0.3 to 6.0.4 (mastodon#15076)

    Bumps [compression-webpack-plugin](https://github.com/webpack-contrib/compression-webpack-plugin) from 6.0.3 to 6.0.4.
    - [Release notes](https://github.com/webpack-contrib/compression-webpack-plugin/releases)
    - [Changelog](https://github.com/webpack-contrib/compression-webpack-plugin/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/compression-webpack-plugin@v6.0.3...v6.0.4)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    ff93ec5 View commit details
    Browse the repository at this point in the history
  6. Bump eslint from 7.12.0 to 7.12.1 (mastodon#15080)

    Bumps [eslint](https://github.com/eslint/eslint) from 7.12.0 to 7.12.1.
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
    - [Commits](eslint/eslint@v7.12.0...v7.12.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    868a13b View commit details
    Browse the repository at this point in the history
  7. Bump react-redux from 7.2.1 to 7.2.2 (mastodon#15079)

    Bumps [react-redux](https://github.com/reduxjs/react-redux) from 7.2.1 to 7.2.2.
    - [Release notes](https://github.com/reduxjs/react-redux/releases)
    - [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md)
    - [Commits](reduxjs/react-redux@v7.2.1...v7.2.2)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    f298e78 View commit details
    Browse the repository at this point in the history
  8. Bump eslint-plugin-jsx-a11y from 6.3.1 to 6.4.1 (mastodon#15078)

    Bumps [eslint-plugin-jsx-a11y](https://github.com/evcohen/eslint-plugin-jsx-a11y) from 6.3.1 to 6.4.1.
    - [Release notes](https://github.com/evcohen/eslint-plugin-jsx-a11y/releases)
    - [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/CHANGELOG.md)
    - [Commits](bradbirdsallCHANGED/eslint-plugin-jsx-a11y@v6.3.1...v6.4.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    5b28298 View commit details
    Browse the repository at this point in the history
  9. Bump mini-css-extract-plugin from 1.2.0 to 1.2.1 (mastodon#15077)

    Bumps [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) from 1.2.0 to 1.2.1.
    - [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases)
    - [Changelog](https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/mini-css-extract-plugin@v1.2.0...v1.2.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    4a4f237 View commit details
    Browse the repository at this point in the history
  10. Bump sass from 1.27.0 to 1.28.0 (mastodon#15082)

    Bumps [sass](https://github.com/sass/dart-sass) from 1.27.0 to 1.28.0.
    - [Release notes](https://github.com/sass/dart-sass/releases)
    - [Changelog](https://github.com/sass/dart-sass/blob/master/CHANGELOG.md)
    - [Commits](sass/dart-sass@1.27.0...1.28.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    352c490 View commit details
    Browse the repository at this point in the history
  11. Bump detect-passive-events from 1.0.5 to 2.0.1 (mastodon#15003)

    * Bump detect-passive-events from 1.0.5 to 2.0.1
    
    Bumps [detect-passive-events](https://github.com/rafgraph/detect-passive-events) from 1.0.5 to 2.0.1.
    - [Release notes](https://github.com/rafgraph/detect-passive-events/releases)
    - [Commits](rafgraph/detect-passive-events@v1.0.5...v2.0.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    * Migrate to detect-passive-events v2
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
    dependabot[bot] and ykzts committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    e16b0fb View commit details
    Browse the repository at this point in the history
  12. Bump webpack-merge from 4.2.2 to 5.0.9 (mastodon#14424)

    * Bump webpack-merge from 4.2.2 to 5.0.9
    
    Bumps [webpack-merge](https://github.com/survivejs/webpack-merge) from 4.2.2 to 5.0.9.
    - [Release notes](https://github.com/survivejs/webpack-merge/releases)
    - [Changelog](https://github.com/survivejs/webpack-merge/blob/master/CHANGELOG.md)
    - [Commits](survivejs/webpack-merge@v4.2.2...v5.0.9)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    * Fix import path
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
    dependabot[bot] and ykzts committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    ab00998 View commit details
    Browse the repository at this point in the history
  13. Add limitation of image's max zoom rate (max to the original size of …

    …image) (mastodon#15094)
    
    * limit image max scale rate to fit the actual image size
    
    * replace with MIN_SCALE
    
    * fix behavior on touch screen
    mashirozx committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    f720af6 View commit details
    Browse the repository at this point in the history
  14. Bump puma from 5.0.2 to 5.0.4 (mastodon#15085)

    Bumps [puma](https://github.com/puma/puma) from 5.0.2 to 5.0.4.
    - [Release notes](https://github.com/puma/puma/releases)
    - [Changelog](https://github.com/puma/puma/blob/master/History.md)
    - [Commits](puma/puma@v5.0.2...v5.0.4)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    f90620b View commit details
    Browse the repository at this point in the history
  15. Add account sensitized (mastodon#14361)

    * Add account sensitized
    
    * Fix i18n normalize
    
    * Fix description and spec
    
    * Fix spec
    
    * Fix wording
    noellabo committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    d6fe0c9 View commit details
    Browse the repository at this point in the history
  16. Change order of announcements in admin page to sort them newest-first (

    …mastodon#15091)
    
    * Change order of announcements in admin page to sort show newly-created first
    
    Fixes mastodon#15090
    
    * Use reverse-chronological rather than creation date only
    ClearlyClaire committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    b29defb View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    68d4b2b View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2020

  1. Configuration menu
    Copy the full SHA
    9b1f2a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    acc1c03 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2020

  1. Configuration menu
    Copy the full SHA
    f84239e View commit details
    Browse the repository at this point in the history
  2. Fix crashes in SuspendAccountService/UnsuspendAccountService (mastodo…

    …n#15100)
    
    * Fix crashes in SuspendAccountService/UnsuspendAccountService
    
    * Catch filesystem errors
    ClearlyClaire committed Nov 7, 2020
    Configuration menu
    Copy the full SHA
    ee8cf24 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3134691 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2020

  1. Fix crash in SuspendAccountWorker (mastodon#15106)

    * Fix crash in SuspendAccountWorker
    
    `follows` is an array thanks to `to_a`
    
    * Fix code style issue
    
    Co-authored-by: Eugen Rochko <eugen@zeonfederated.com>
    ClearlyClaire and Gargron committed Nov 8, 2020
    Configuration menu
    Copy the full SHA
    1e64666 View commit details
    Browse the repository at this point in the history
  2. New Crowdin updates (mastodon#14388)

    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations en.json (Indonesian)
    [ci skip]
    
    * New translations en.json (Catalan)
    [ci skip]
    
    * New translations en.json (Indonesian)
    [ci skip]
    
    * New translations en.json (Indonesian)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Sardinian)
    [ci skip]
    
    * New translations en.json (Esperanto)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations simple_form.en.yml (Esperanto)
    [ci skip]
    
    * New translations en.json (Japanese)
    [ci skip]
    
    * New translations en.json (Norwegian)
    [ci skip]
    
    * New translations en.yml (Norwegian)
    [ci skip]
    
    * New translations simple_form.en.yml (Norwegian)
    [ci skip]
    
    * New translations devise.en.yml (Norwegian)
    [ci skip]
    
    * New translations en.json (French)
    [ci skip]
    
    * New translations en.json (Esperanto)
    [ci skip]
    
    * New translations simple_form.en.yml (Arabic)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations devise.en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Danish)
    [ci skip]
    
    * New translations en.yml (Danish)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.json (Icelandic)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.json (Occitan)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.json (Spanish, Argentina)
    [ci skip]
    
    * New translations en.json (Japanese)
    [ci skip]
    
    * New translations en.json (Japanese)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations simple_form.en.yml (Norwegian Nynorsk)
    [ci skip]
    
    * New translations en.json (Norwegian Nynorsk)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Norwegian Nynorsk)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.json (French)
    [ci skip]
    
    * New translations en.json (Catalan)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.json (Icelandic)
    [ci skip]
    
    * New translations en.json (Spanish, Argentina)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Galician)
    [ci skip]
    
    * New translations en.json (Galician)
    [ci skip]
    
    * New translations en.json (Albanian)
    [ci skip]
    
    * New translations en.json (Indonesian)
    [ci skip]
    
    * New translations en.json (Italian)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Greek)
    [ci skip]
    
    * New translations en.json (Czech)
    [ci skip]
    
    * New translations en.json (German)
    [ci skip]
    
    * New translations en.json (Hungarian)
    [ci skip]
    
    * New translations en.json (Portuguese)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Persian)
    [ci skip]
    
    * New translations en.json (Norwegian Nynorsk)
    [ci skip]
    
    * New translations en.json (Corsican)
    [ci skip]
    
    * New translations en.json (Kabyle)
    [ci skip]
    
    * New translations en.json (Arabic)
    [ci skip]
    
    * New translations en.json (Slovenian)
    [ci skip]
    
    * New translations en.json (Ukrainian)
    [ci skip]
    
    * New translations en.json (Portuguese, Brazilian)
    [ci skip]
    
    * New translations en.json (Breton)
    [ci skip]
    
    * New translations en.json (Sardinian)
    [ci skip]
    
    * New translations en.json (Hungarian)
    [ci skip]
    
    * New translations en.json (Corsican)
    [ci skip]
    
    * New translations en.json (Corsican)
    [ci skip]
    
    * New translations en.json (Corsican)
    [ci skip]
    
    * New translations en.json (Portuguese, Brazilian)
    [ci skip]
    
    * New translations en.json (Kabyle)
    [ci skip]
    
    * New translations en.json (Dutch)
    [ci skip]
    
    * New translations en.json (Dutch)
    [ci skip]
    
    * New translations en.json (Sardinian)
    [ci skip]
    
    * New translations en.json (Portuguese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (French)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations simple_form.en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Greek)
    [ci skip]
    
    * New translations en.yml (Greek)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations simple_form.en.yml (Portuguese)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations en.json (German)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (German)
    [ci skip]
    
    * New translations en.json (German)
    [ci skip]
    
    * New translations simple_form.en.yml (German)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations simple_form.en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations simple_form.en.yml (Korean)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations simple_form.en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations simple_form.en.yml (Galician)
    [ci skip]
    
    * New translations en.yml (Persian)
    [ci skip]
    
    * New translations en.yml (Persian)
    [ci skip]
    
    * New translations simple_form.en.yml (Persian)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations devise.en.yml (German)
    [ci skip]
    
    * New translations simple_form.en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations simple_form.en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Albanian)
    [ci skip]
    
    * New translations simple_form.en.yml (Albanian)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Corsican)
    [ci skip]
    
    * New translations en.yml (Corsican)
    [ci skip]
    
    * New translations en.yml (Corsican)
    [ci skip]
    
    * New translations simple_form.en.yml (Corsican)
    [ci skip]
    
    * New translations en.yml (Corsican)
    [ci skip]
    
    * New translations en.json (Corsican)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Corsican)
    [ci skip]
    
    * New translations devise.en.yml (Corsican)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Danish)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (German)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations simple_form.en.yml (Indonesian)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * New translations en.json (Thai)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * New translations en.json (Occitan)
    [ci skip]
    
    * New translations en.json (Occitan)
    [ci skip]
    
    * New translations devise.en.yml (Occitan)
    [ci skip]
    
    * New translations en.yml (Occitan)
    [ci skip]
    
    * New translations simple_form.en.yml (Occitan)
    [ci skip]
    
    * New translations en.json (Occitan)
    [ci skip]
    
    * New translations simple_form.en.yml (Occitan)
    [ci skip]
    
    * New translations simple_form.en.yml (Occitan)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations simple_form.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations activerecord.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations devise.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Turkish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Turkish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Turkish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Turkish)
    [ci skip]
    
    * New translations devise.en.yml (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Turkish)
    [ci skip]
    
    * New translations devise.en.yml (Turkish)
    [ci skip]
    
    * New translations activerecord.en.yml (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * ran `i18n-tasks normalize`
    
    * ran `yarn manage:translations`
    
    * ran `i18n-tasks normalize`
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
    Gargron and ykzts committed Nov 8, 2020
    Configuration menu
    Copy the full SHA
    cc98f96 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2020

  1. Fix Move handler not being triggered when failing to fetch target (ma…

    …stodon#15107)
    
    When failing to fetch the target account, the ProcessingWorker fails
    as expected, but since it hasn't cleared the `move_in_progress` flag,
    the next attempt at processing skips the `Move` activity altogether.
    
    This commit changes it to clear the flag when encountering any
    unexpected error on fetching the target account. This is likely to
    occur because, of, e.g., a timeout, when many instances query the
    same actor at the same time.
    ClearlyClaire committed Nov 9, 2020
    Configuration menu
    Copy the full SHA
    b089329 View commit details
    Browse the repository at this point in the history
  2. Remove unnecessary messages (mastodon#15109)

    * Remove unnecessary messages
    
    * ran `i18n-tasks normalize`
    ykzts committed Nov 9, 2020
    Configuration menu
    Copy the full SHA
    2b63c62 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    337dc6e View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2020

  1. New Crowdin updates (mastodon#15110)

    * New translations doorkeeper.en.yml (Hungarian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Korean)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Georgian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Japanese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Italian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Armenian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Hebrew)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Dutch)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Finnish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Basque)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Greek)
    [ci skip]
    
    * New translations doorkeeper.en.yml (German)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Danish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Czech)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Catalan)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Norwegian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Persian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Ukrainian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Indonesian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Galician)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Vietnamese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Turkish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Polish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Swedish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Serbian (Cyrillic))
    [ci skip]
    
    * New translations doorkeeper.en.yml (Albanian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Slovenian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Slovak)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Russian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Portuguese)
    [ci skip]
    
    * New translations en.json (Kazakh)
    [ci skip]
    
    * New translations en.yml (Norwegian Nynorsk)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Bulgarian)
    [ci skip]
    
    * New translations simple_form.en.yml (Czech)
    [ci skip]
    
    * New translations en.yml (Czech)
    [ci skip]
    
    * New translations en.json (Czech)
    [ci skip]
    
    * New translations simple_form.en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations en.json (Catalan)
    [ci skip]
    
    * New translations en.yml (Bulgarian)
    [ci skip]
    
    * New translations en.yml (Danish)
    [ci skip]
    
    * New translations en.json (Bulgarian)
    [ci skip]
    
    * New translations simple_form.en.yml (Arabic)
    [ci skip]
    
    * New translations en.yml (Arabic)
    [ci skip]
    
    * New translations en.json (Arabic)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.json (Danish)
    [ci skip]
    
    * New translations simple_form.en.yml (Danish)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.json (Hebrew)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations simple_form.en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.json (Hungarian)
    [ci skip]
    
    * New translations simple_form.en.yml (Hebrew)
    [ci skip]
    
    * New translations en.yml (Hebrew)
    [ci skip]
    
    * New translations simple_form.en.yml (Finnish)
    [ci skip]
    
    * New translations en.json (German)
    [ci skip]
    
    * New translations en.yml (Finnish)
    [ci skip]
    
    * New translations en.json (Finnish)
    [ci skip]
    
    * New translations simple_form.en.yml (Basque)
    [ci skip]
    
    * New translations en.yml (Basque)
    [ci skip]
    
    * New translations en.json (Basque)
    [ci skip]
    
    * New translations simple_form.en.yml (Greek)
    [ci skip]
    
    * New translations simple_form.en.yml (German)
    [ci skip]
    
    * New translations simple_form.en.yml (French)
    [ci skip]
    
    * New translations en.json (French)
    [ci skip]
    
    * New translations simple_form.en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Italian)
    [ci skip]
    
    * New translations en.yml (Russian)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations en.json (Korean)
    [ci skip]
    
    * New translations simple_form.en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Greek)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations en.json (Greek)
    [ci skip]
    
    * New translations en.yml (German)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Turkish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Albanian)
    [ci skip]
    
    * New translations en.json (Icelandic)
    [ci skip]
    
    * New translations simple_form.en.yml (Romanian)
    [ci skip]
    
    * New translations simple_form.en.yml (Croatian)
    [ci skip]
    
    * New translations en.yml (Romanian)
    [ci skip]
    
    * New translations en.json (Romanian)
    [ci skip]
    
    * New translations en.yml (Corsican)
    [ci skip]
    
    * New translations simple_form.en.yml (Breton)
    [ci skip]
    
    * New translations en.yml (Breton)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Croatian)
    [ci skip]
    
    * New translations en.yml (Croatian)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.json (Croatian)
    [ci skip]
    
    * New translations simple_form.en.yml (Thai)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Icelandic)
    [ci skip]
    
    * New translations simple_form.en.yml (Icelandic)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations en.json (Norwegian Nynorsk)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Portuguese, Brazilian)
    [ci skip]
    
    * New translations simple_form.en.yml (Galician)
    [ci skip]
    
    * New translations en.json (Galician)
    [ci skip]
    
    * New translations en.yml (Urdu (Pakistan))
    [ci skip]
    
    * New translations en.json (Urdu (Pakistan))
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations simple_form.en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations simple_form.en.yml (Ukrainian)
    [ci skip]
    
    * New translations en.yml (Ukrainian)
    [ci skip]
    
    * New translations en.json (Ukrainian)
    [ci skip]
    
    * New translations en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations en.json (Indonesian)
    [ci skip]
    
    * New translations en.yml (Swedish)
    [ci skip]
    
    * New translations en.json (Bengali)
    [ci skip]
    
    * New translations en.json (Thai)
    [ci skip]
    
    * New translations en.yml (Marathi)
    [ci skip]
    
    * New translations en.json (Marathi)
    [ci skip]
    
    * New translations simple_form.en.yml (Bengali)
    [ci skip]
    
    * New translations en.yml (Bengali)
    [ci skip]
    
    * New translations en.json (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations simple_form.en.yml (Tamil)
    [ci skip]
    
    * New translations en.yml (Tamil)
    [ci skip]
    
    * New translations en.json (Tamil)
    [ci skip]
    
    * New translations simple_form.en.yml (Persian)
    [ci skip]
    
    * New translations en.yml (Persian)
    [ci skip]
    
    * New translations en.json (Persian)
    [ci skip]
    
    * New translations simple_form.en.yml (Indonesian)
    [ci skip]
    
    * New translations simple_form.en.yml (Swedish)
    [ci skip]
    
    * New translations en.json (Swedish)
    [ci skip]
    
    * New translations simple_form.en.yml (Italian)
    [ci skip]
    
    * New translations en.json (Macedonian)
    [ci skip]
    
    * New translations en.json (Norwegian)
    [ci skip]
    
    * New translations simple_form.en.yml (Dutch)
    [ci skip]
    
    * New translations en.yml (Dutch)
    [ci skip]
    
    * New translations en.json (Dutch)
    [ci skip]
    
    * New translations en.yml (Macedonian)
    [ci skip]
    
    * New translations simple_form.en.yml (Norwegian)
    [ci skip]
    
    * New translations en.yml (Lithuanian)
    [ci skip]
    
    * New translations en.json (Lithuanian)
    [ci skip]
    
    * New translations simple_form.en.yml (Korean)
    [ci skip]
    
    * New translations simple_form.en.yml (Georgian)
    [ci skip]
    
    * New translations en.yml (Georgian)
    [ci skip]
    
    * New translations en.json (Georgian)
    [ci skip]
    
    * New translations en.json (Japanese)
    [ci skip]
    
    * New translations en.yml (Norwegian)
    [ci skip]
    
    * New translations en.json (Polish)
    [ci skip]
    
    * New translations simple_form.en.yml (Serbian (Cyrillic))
    [ci skip]
    
    * New translations en.json (Slovenian)
    [ci skip]
    
    * New translations en.yml (Serbian (Cyrillic))
    [ci skip]
    
    * New translations en.json (Serbian (Cyrillic))
    [ci skip]
    
    * New translations simple_form.en.yml (Albanian)
    [ci skip]
    
    * New translations en.json (Albanian)
    [ci skip]
    
    * New translations simple_form.en.yml (Slovenian)
    [ci skip]
    
    * New translations en.yml (Slovenian)
    [ci skip]
    
    * New translations simple_form.en.yml (Slovak)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (Slovak)
    [ci skip]
    
    * New translations en.json (Slovak)
    [ci skip]
    
    * New translations simple_form.en.yml (Russian)
    [ci skip]
    
    * New translations en.json (Russian)
    [ci skip]
    
    * New translations simple_form.en.yml (Portuguese)
    [ci skip]
    
    * New translations en.json (Portuguese)
    [ci skip]
    
    * New translations simple_form.en.yml (Polish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.json (Korean)
    [ci skip]
    
    * New translations en.json (Corsican)
    [ci skip]
    
    * New translations devise.en.yml (Turkish)
    [ci skip]
    
    * New translations en.json (Corsican)
    [ci skip]
    
    * New translations en.yml (Kabyle)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.json (Korean)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations simple_form.en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Kabyle)
    [ci skip]
    
    * New translations devise.en.yml (Japanese)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations simple_form.en.yml (Icelandic)
    [ci skip]
    
    * New translations simple_form.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations simple_form.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations simple_form.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations devise.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations activerecord.en.yml (Icelandic)
    [ci skip]
    
    * New translations devise.en.yml (Icelandic)
    [ci skip]
    
    * New translations en.yml (Russian)
    [ci skip]
    
    * New translations en.json (Russian)
    [ci skip]
    
    * New translations simple_form.en.yml (Russian)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations devise.en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations devise.en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Turkish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Turkish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Turkish)
    [ci skip]
    
    * New translations activerecord.en.yml (Turkish)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * Fix invalid syntax
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * bundle exec i18n-tasks normalize
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * bundle exec i18n-tasks normalize
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * bundle exec i18n-tasks normalize [ci skip]
    
    Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
    Gargron and ykzts committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    880fc9b View commit details
    Browse the repository at this point in the history
  2. Bump parallel from 1.19.2 to 1.20.0 (mastodon#15115)

    Bumps [parallel](https://github.com/grosser/parallel) from 1.19.2 to 1.20.0.
    - [Release notes](https://github.com/grosser/parallel/releases)
    - [Commits](grosser/parallel@v1.19.2...v1.20.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    21d1989 View commit details
    Browse the repository at this point in the history
  3. Bump bootsnap from 1.4.9 to 1.5.0 (mastodon#15116)

    Bumps [bootsnap](https://github.com/Shopify/bootsnap) from 1.4.9 to 1.5.0.
    - [Release notes](https://github.com/Shopify/bootsnap/releases)
    - [Changelog](https://github.com/Shopify/bootsnap/blob/master/CHANGELOG.md)
    - [Commits](Shopify/bootsnap@v1.4.9...v1.5.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    44fb203 View commit details
    Browse the repository at this point in the history
  4. Bump webmock from 3.9.3 to 3.9.5 (mastodon#15134)

    Bumps [webmock](https://github.com/bblimke/webmock) from 3.9.3 to 3.9.5.
    - [Release notes](https://github.com/bblimke/webmock/releases)
    - [Changelog](https://github.com/bblimke/webmock/blob/master/CHANGELOG.md)
    - [Commits](bblimke/webmock@v3.9.3...v3.9.5)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    c19f934 View commit details
    Browse the repository at this point in the history
  5. Bump aws-sdk-s3 from 1.83.1 to 1.84.0 (mastodon#15135)

    Bumps [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) from 1.83.1 to 1.84.0.
    - [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
    - [Changelog](https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-s3/CHANGELOG.md)
    - [Commits](https://github.com/aws/aws-sdk-ruby/commits)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    501261c View commit details
    Browse the repository at this point in the history
  6. Bump webpack-merge from 5.0.9 to 5.3.0 (mastodon#15130)

    Bumps [webpack-merge](https://github.com/survivejs/webpack-merge) from 5.0.9 to 5.3.0.
    - [Release notes](https://github.com/survivejs/webpack-merge/releases)
    - [Changelog](https://github.com/survivejs/webpack-merge/blob/master/CHANGELOG.md)
    - [Commits](survivejs/webpack-merge@v5.0.9...v5.3.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    01f1835 View commit details
    Browse the repository at this point in the history
  7. Bump eslint from 7.12.1 to 7.13.0 (mastodon#15127)

    Bumps [eslint](https://github.com/eslint/eslint) from 7.12.1 to 7.13.0.
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
    - [Commits](eslint/eslint@v7.12.1...v7.13.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    ce4aa7d View commit details
    Browse the repository at this point in the history
  8. Bump sass-loader from 10.0.4 to 10.0.5 (mastodon#15121)

    Bumps [sass-loader](https://github.com/webpack-contrib/sass-loader) from 10.0.4 to 10.0.5.
    - [Release notes](https://github.com/webpack-contrib/sass-loader/releases)
    - [Changelog](https://github.com/webpack-contrib/sass-loader/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/sass-loader@v10.0.4...v10.0.5)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    522e592 View commit details
    Browse the repository at this point in the history
  9. Bump compression-webpack-plugin from 6.0.4 to 6.1.0 (mastodon#15136)

    Bumps [compression-webpack-plugin](https://github.com/webpack-contrib/compression-webpack-plugin) from 6.0.4 to 6.1.0.
    - [Release notes](https://github.com/webpack-contrib/compression-webpack-plugin/releases)
    - [Changelog](https://github.com/webpack-contrib/compression-webpack-plugin/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/compression-webpack-plugin@v6.0.4...v6.1.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    4471f5e View commit details
    Browse the repository at this point in the history
  10. Bump mini-css-extract-plugin from 1.2.1 to 1.3.0 (mastodon#15131)

    Bumps [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) from 1.2.1 to 1.3.0.
    - [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases)
    - [Changelog](https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/mini-css-extract-plugin@v1.2.1...v1.3.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    9394d81 View commit details
    Browse the repository at this point in the history
  11. Bump @babel/preset-react from 7.12.1 to 7.12.5 (mastodon#15122)

    Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) from 7.12.1 to 7.12.5.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.5/packages/babel-preset-react)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    cc7f85f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    5206ede View commit details
    Browse the repository at this point in the history
  13. Bump react-textarea-autosize from 8.2.0 to 8.3.0 (mastodon#15132)

    Bumps [react-textarea-autosize](https://github.com/Andarist/react-textarea-autosize) from 8.2.0 to 8.3.0.
    - [Release notes](https://github.com/Andarist/react-textarea-autosize/releases)
    - [Changelog](https://github.com/Andarist/react-textarea-autosize/blob/master/CHANGELOG.md)
    - [Commits](Andarist/react-textarea-autosize@v8.2.0...v8.3.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    60d40ba View commit details
    Browse the repository at this point in the history
  14. Bump babel-jest from 26.6.1 to 26.6.3 (mastodon#15125)

    Bumps [babel-jest](https://github.com/facebook/jest/tree/HEAD/packages/babel-jest) from 26.6.1 to 26.6.3.
    - [Release notes](https://github.com/facebook/jest/releases)
    - [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/facebook/jest/commits/v26.6.3/packages/babel-jest)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    badb0fa View commit details
    Browse the repository at this point in the history
  15. Bump css-loader from 5.0.0 to 5.0.1 (mastodon#15118)

    Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 5.0.0 to 5.0.1.
    - [Release notes](https://github.com/webpack-contrib/css-loader/releases)
    - [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/css-loader@v5.0.0...v5.0.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    e8339b2 View commit details
    Browse the repository at this point in the history
  16. Bump better_errors from 2.8.3 to 2.9.1 (mastodon#15117)

    Bumps [better_errors](https://github.com/BetterErrors/better_errors) from 2.8.3 to 2.9.1.
    - [Release notes](https://github.com/BetterErrors/better_errors/releases)
    - [Commits](BetterErrors/better_errors@v2.8.3...v2.9.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    e9b4d97 View commit details
    Browse the repository at this point in the history
  17. Bump webpack-bundle-analyzer from 3.9.0 to 4.1.0 (mastodon#15129)

    Bumps [webpack-bundle-analyzer](https://github.com/webpack-contrib/webpack-bundle-analyzer) from 3.9.0 to 4.1.0.
    - [Release notes](https://github.com/webpack-contrib/webpack-bundle-analyzer/releases)
    - [Changelog](https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/webpack-contrib/webpack-bundle-analyzer/commits/v4.1.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    fc41c1f View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2020

  1. Configuration menu
    Copy the full SHA
    bb13276 View commit details
    Browse the repository at this point in the history
  2. Bump jest from 26.6.1 to 26.6.3 (mastodon#15119)

    Bumps [jest](https://github.com/facebook/jest) from 26.6.1 to 26.6.3.
    - [Release notes](https://github.com/facebook/jest/releases)
    - [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md)
    - [Commits](jestjs/jest@v26.6.1...v26.6.3)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 11, 2020
    Configuration menu
    Copy the full SHA
    5eef34b View commit details
    Browse the repository at this point in the history
  3. Bump @babel/runtime from 7.12.1 to 7.12.5 (mastodon#15126)

    Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) from 7.12.1 to 7.12.5.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.5/packages/babel-runtime)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 11, 2020
    Configuration menu
    Copy the full SHA
    7be82d9 View commit details
    Browse the repository at this point in the history
  4. Bump @testing-library/react from 11.1.0 to 11.1.1 (mastodon#15124)

    Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 11.1.0 to 11.1.1.
    - [Release notes](https://github.com/testing-library/react-testing-library/releases)
    - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md)
    - [Commits](testing-library/react-testing-library@v11.1.0...v11.1.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 11, 2020
    Configuration menu
    Copy the full SHA
    9e9560a View commit details
    Browse the repository at this point in the history
  5. Bump sass from 1.28.0 to 1.29.0 (mastodon#15128)

    Bumps [sass](https://github.com/sass/dart-sass) from 1.28.0 to 1.29.0.
    - [Release notes](https://github.com/sass/dart-sass/releases)
    - [Changelog](https://github.com/sass/dart-sass/blob/master/CHANGELOG.md)
    - [Commits](sass/dart-sass@1.28.0...1.29.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 11, 2020
    Configuration menu
    Copy the full SHA
    462fb54 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f1858f0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4790a12 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2020

  1. Add follow selected followers button (mastodon#15148)

    * Add follow selected followers button
    
    * Fix unused variable
    
    * Fix i18n normalize
    noellabo committed Nov 12, 2020
    Configuration menu
    Copy the full SHA
    2b1a6e7 View commit details
    Browse the repository at this point in the history
  2. Add interrelationship icon (mastodon#15149)

    * Add interrelationship icon
    
    * Fix arrow for rtl
    
    * Fix to predefined color
    noellabo committed Nov 12, 2020
    Configuration menu
    Copy the full SHA
    148ce97 View commit details
    Browse the repository at this point in the history
  3. Fix possible inconsistencies in tag search (mastodon#14906)

    Do not downcase the queried tag before passing it to postgres when searching:
    - tags are not downcased on creation
    - `arel_table[:name].lower.matches(pattern)` generates an ILIKE anyway
    - if Postgres and Rails happen to use different case-folding rules,
      downcasing before query but not before insertion may mean that some
      tags with some casings are not searchable
    ClearlyClaire committed Nov 12, 2020
    Configuration menu
    Copy the full SHA
    9870b17 View commit details
    Browse the repository at this point in the history
  4. Fix 2FA/sign-in token sessions being valid after password change (mas…

    …todon#14802)
    
    If someone tries logging in to an account and is prompted for a 2FA
    code or sign-in token, even if the account's password or e-mail is
    updated in the meantime, the session will show the prompt and allow
    the login process to complete with a valid 2FA code or sign-in token
    Gargron committed Nov 12, 2020
    Configuration menu
    Copy the full SHA
    8532429 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    aa10200 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2020

  1. Configuration menu
    Copy the full SHA
    0a4d0e8 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2020

  1. Configuration menu
    Copy the full SHA
    8eb97e8 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2020

  1. Configuration menu
    Copy the full SHA
    04a079e View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2020

  1. Configuration menu
    Copy the full SHA
    18ca4e0 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2020

  1. Fix image uploads being random data when canvas read access is blocked (

    mastodon#15180)
    
    Fixes mastodon#15178
    
    PR mastodon#11499 introduced a way to deal with all-white canvas, but newer
    Firefox versions set random data instead.
    
    This PR detects whether canvas operations are reliable by comparing
    the results on a hardcoded 2×2 pixels image, and memoizing the result.
    
    This should be both more reliable and faster than the previous check.
    ClearlyClaire committed Nov 18, 2020
    Configuration menu
    Copy the full SHA
    d8d43a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9665933 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2020

  1. Bump oj from 3.10.15 to 3.10.16 (mastodon#15175)

    Bumps [oj](https://github.com/ohler55/oj) from 3.10.15 to 3.10.16.
    - [Release notes](https://github.com/ohler55/oj/releases)
    - [Changelog](https://github.com/ohler55/oj/blob/develop/CHANGELOG.md)
    - [Commits](ohler55/oj@v3.10.15...v3.10.16)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    feeaa6f View commit details
    Browse the repository at this point in the history
  2. Bump json-ld from 3.1.4 to 3.1.5 (mastodon#15174)

    Bumps [json-ld](https://github.com/ruby-rdf/json-ld) from 3.1.4 to 3.1.5.
    - [Release notes](https://github.com/ruby-rdf/json-ld/releases)
    - [Commits](ruby-rdf/json-ld@3.1.4...3.1.5)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    beddf82 View commit details
    Browse the repository at this point in the history
  3. Bump aws-sdk-s3 from 1.84.0 to 1.84.1 (mastodon#15173)

    Bumps [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) from 1.84.0 to 1.84.1.
    - [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
    - [Changelog](https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-s3/CHANGELOG.md)
    - [Commits](https://github.com/aws/aws-sdk-ruby/commits)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    78a3956 View commit details
    Browse the repository at this point in the history
  4. Bump compression-webpack-plugin from 6.1.0 to 6.1.1 (mastodon#15161)

    Bumps [compression-webpack-plugin](https://github.com/webpack-contrib/compression-webpack-plugin) from 6.1.0 to 6.1.1.
    - [Release notes](https://github.com/webpack-contrib/compression-webpack-plugin/releases)
    - [Changelog](https://github.com/webpack-contrib/compression-webpack-plugin/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/compression-webpack-plugin@v6.1.0...v6.1.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    d942eb2 View commit details
    Browse the repository at this point in the history
  5. Bump @testing-library/jest-dom from 5.11.5 to 5.11.6 (mastodon#15162)

    Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.11.5 to 5.11.6.
    - [Release notes](https://github.com/testing-library/jest-dom/releases)
    - [Changelog](https://github.com/testing-library/jest-dom/blob/master/CHANGELOG.md)
    - [Commits](testing-library/jest-dom@v5.11.5...v5.11.6)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    3d98741 View commit details
    Browse the repository at this point in the history
  6. Bump webmock from 3.9.5 to 3.10.0 (mastodon#15172)

    Bumps [webmock](https://github.com/bblimke/webmock) from 3.9.5 to 3.10.0.
    - [Release notes](https://github.com/bblimke/webmock/releases)
    - [Changelog](https://github.com/bblimke/webmock/blob/master/CHANGELOG.md)
    - [Commits](bblimke/webmock@v3.9.5...v3.10.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    9b188a6 View commit details
    Browse the repository at this point in the history
  7. Bump yargs from 16.1.0 to 16.1.1 (mastodon#15163)

    Bumps [yargs](https://github.com/yargs/yargs) from 16.1.0 to 16.1.1.
    - [Release notes](https://github.com/yargs/yargs/releases)
    - [Changelog](https://github.com/yargs/yargs/blob/master/CHANGELOG.md)
    - [Commits](yargs/yargs@v16.1.0...v16.1.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    34ced3d View commit details
    Browse the repository at this point in the history
  8. Bump bootsnap from 1.5.0 to 1.5.1 (mastodon#15171)

    Bumps [bootsnap](https://github.com/Shopify/bootsnap) from 1.5.0 to 1.5.1.
    - [Release notes](https://github.com/Shopify/bootsnap/releases)
    - [Changelog](https://github.com/Shopify/bootsnap/blob/master/CHANGELOG.md)
    - [Commits](Shopify/bootsnap@v1.5.0...v1.5.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    a3f3a91 View commit details
    Browse the repository at this point in the history
  9. Bump mini-css-extract-plugin from 1.3.0 to 1.3.1 (mastodon#15168)

    Bumps [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) from 1.3.0 to 1.3.1.
    - [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases)
    - [Changelog](https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/mini-css-extract-plugin@v1.3.0...v1.3.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    e77bd9f View commit details
    Browse the repository at this point in the history
  10. Bump sass-loader from 10.0.5 to 10.1.0 (mastodon#15164)

    Bumps [sass-loader](https://github.com/webpack-contrib/sass-loader) from 10.0.5 to 10.1.0.
    - [Release notes](https://github.com/webpack-contrib/sass-loader/releases)
    - [Changelog](https://github.com/webpack-contrib/sass-loader/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/sass-loader@v10.0.5...v10.1.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    8d520d4 View commit details
    Browse the repository at this point in the history
  11. Bump webpack-merge from 5.3.0 to 5.4.0 (mastodon#15166)

    Bumps [webpack-merge](https://github.com/survivejs/webpack-merge) from 5.3.0 to 5.4.0.
    - [Release notes](https://github.com/survivejs/webpack-merge/releases)
    - [Changelog](https://github.com/survivejs/webpack-merge/blob/develop/CHANGELOG.md)
    - [Commits](survivejs/webpack-merge@v5.3.0...v5.4.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    60cc3a9 View commit details
    Browse the repository at this point in the history
  12. Bump babel-loader from 8.1.0 to 8.2.1 (mastodon#15167)

    Bumps [babel-loader](https://github.com/babel/babel-loader) from 8.1.0 to 8.2.1.
    - [Release notes](https://github.com/babel/babel-loader/releases)
    - [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md)
    - [Commits](babel/babel-loader@v8.1.0...v8.2.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    29e76f9 View commit details
    Browse the repository at this point in the history
  13. Deal with collation-related index corruption (mastodon#14860)

    * Add tootctl maintenance fix-duplicates
    
    This tool goes through the database to detect and fix duplicates.
    This operation is very slow and may cause data loss (of data that would be
    inaccessible without intervention because of the existing index corruptions).
    It tries its best to make sensible decisions, and asks the user in some cases.
    
    * Add warning message in db:migrate hook
    
    * Clear Rails cache after being done with database deduplication
    
    Avoids followers hash cache being incorrect, among other things
    ClearlyClaire committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    1242e57 View commit details
    Browse the repository at this point in the history
  14. Add cache buster feature for media files (mastodon#15155)

    Nginx can be configured to bypass proxy cache when a special header
    is in the request. If the response is cacheable, it will replace
    the cache for that request. Proxy caching of media files is
    desirable when using object storage as a way of minimizing bandwidth
    costs, but has the drawback of leaving deleted media files for
    a configured amount of cache time. A cache buster can make those
    media files immediately unavailable. This especially makes sense
    when suspending and unsuspending an account.
    Gargron committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    df16531 View commit details
    Browse the repository at this point in the history
  15. Fix sending spurious Rejects when processing remote account deletion (m…

    …astodon#15104)
    
    * Fix sending spurious Rejects when processing remote account deletion
    
    * Make skip_side_effects imply skip_activitypub
    ClearlyClaire committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    2f6831f View commit details
    Browse the repository at this point in the history
  16. Mark correctly as read reverse-order announcements (mastodon#15070)

    This fixes a bug in mastodon#15065 where the "read" indicator was not getting correctly set. The ID of a dismissed announcement is now correct.
    dariusk committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    8e2530e View commit details
    Browse the repository at this point in the history
  17. Bump @testing-library/react from 11.1.1 to 11.2.0 (mastodon#15186)

    Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 11.1.1 to 11.2.0.
    - [Release notes](https://github.com/testing-library/react-testing-library/releases)
    - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md)
    - [Commits](testing-library/react-testing-library@v11.1.1...v11.2.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    dbe5a96 View commit details
    Browse the repository at this point in the history
  18. Bump rubocop from 0.93.1 to 1.3.0 (mastodon#15170)

    Bumps [rubocop](https://github.com/rubocop-hq/rubocop) from 0.93.1 to 1.3.0.
    - [Release notes](https://github.com/rubocop-hq/rubocop/releases)
    - [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md)
    - [Commits](rubocop/rubocop@v0.93.1...v1.3.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    1a9099c View commit details
    Browse the repository at this point in the history
  19. Bump omniauth-cas from 1.1.1 to 2.0.0 (mastodon#15165)

    Bumps [omniauth-cas](https://github.com/dlindahl/omniauth-cas) from 1.1.1 to 2.0.0.
    - [Release notes](https://github.com/dlindahl/omniauth-cas/releases)
    - [Changelog](https://github.com/dlindahl/omniauth-cas/blob/master/CHANGELOG.md)
    - [Commits](dlindahl/omniauth-cas@v1.1.1...v2.0.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    67ace1d View commit details
    Browse the repository at this point in the history
  20. Use Ruby 2.7.2 (mastodon#15150)

    thwait and e2mmap are no longer needed in Gemfile.
    Gems properly require those.
    zunda committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    541b9f8 View commit details
    Browse the repository at this point in the history
  21. Bump webpack-cli from 3.3.12 to 4.2.0 (mastodon#15123)

    Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 3.3.12 to 4.2.0.
    - [Release notes](https://github.com/webpack/webpack-cli/releases)
    - [Changelog](https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/webpack/webpack-cli/compare/v3.3.12...webpack-cli@4.2.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    022d235 View commit details
    Browse the repository at this point in the history
  22. Add import/export feature for bookmarks (mastodon#14956)

    * Add ability to export bookmarks
    
    * Add support for importing bookmarks
    
    * Add bookmark import tests
    
    * Add bookmarks export test
    ClearlyClaire committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    96c1e71 View commit details
    Browse the repository at this point in the history
  23. Fix webfinger redirect handling in ResolveAccountService (mastodon#15187

    )
    
    * Fix webfinger redirect handling in ResolveAccountService
    
    ResolveAccountService#process_webfinger! handled a one-step webfinger
    redirection, but only accepting the result if it matched the exact URI passed
    as input, defeating the point of a redirection check.
    
    Instead, use the same logic as in `ActivityPub::FetchRemoteAccountService`,
    updating the resulting `acct:` URI with the result of the first webfinger
    query.
    
    * Add tests
    ClearlyClaire committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    8b8004a View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2020

  1. Configuration menu
    Copy the full SHA
    c43f4cd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    66832cb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f970e1f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2725660 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2020

  1. Bump aws-sdk-s3 from 1.84.1 to 1.85.0 (mastodon#15207)

    Bumps [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) from 1.84.1 to 1.85.0.
    - [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
    - [Changelog](https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-s3/CHANGELOG.md)
    - [Commits](https://github.com/aws/aws-sdk-ruby/commits)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    b257c50 View commit details
    Browse the repository at this point in the history
  2. Bump rubocop from 1.3.0 to 1.3.1 (mastodon#15212)

    Bumps [rubocop](https://github.com/rubocop-hq/rubocop) from 1.3.0 to 1.3.1.
    - [Release notes](https://github.com/rubocop-hq/rubocop/releases)
    - [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md)
    - [Commits](rubocop/rubocop@v1.3.0...v1.3.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    9536ce1 View commit details
    Browse the repository at this point in the history
  3. Bump redis from 4.2.2 to 4.2.5 (mastodon#15202)

    Bumps [redis](https://github.com/redis/redis-rb) from 4.2.2 to 4.2.5.
    - [Release notes](https://github.com/redis/redis-rb/releases)
    - [Changelog](https://github.com/redis/redis-rb/blob/master/CHANGELOG.md)
    - [Commits](redis/redis-rb@v4.2.2...v4.2.5)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    af607c6 View commit details
    Browse the repository at this point in the history
  4. Bump parallel_tests from 3.3.0 to 3.4.0 (mastodon#15203)

    Bumps [parallel_tests](https://github.com/grosser/parallel_tests) from 3.3.0 to 3.4.0.
    - [Release notes](https://github.com/grosser/parallel_tests/releases)
    - [Changelog](https://github.com/grosser/parallel_tests/blob/master/CHANGELOG.md)
    - [Commits](grosser/parallel_tests@v3.3.0...v3.4.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    005354b View commit details
    Browse the repository at this point in the history
  5. Bump @testing-library/react from 11.2.0 to 11.2.2 (mastodon#15211)

    Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 11.2.0 to 11.2.2.
    - [Release notes](https://github.com/testing-library/react-testing-library/releases)
    - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md)
    - [Commits](testing-library/react-testing-library@v11.2.0...v11.2.2)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    94c97ef View commit details
    Browse the repository at this point in the history
  6. Bump @babel/core from 7.12.3 to 7.12.7 (mastodon#15205)

    Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.12.3 to 7.12.7.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.7/packages/babel-core)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    3e70161 View commit details
    Browse the repository at this point in the history
  7. Bump @babel/preset-react from 7.12.5 to 7.12.7 (mastodon#15208)

    Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) from 7.12.5 to 7.12.7.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.7/packages/babel-preset-react)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    fef4da9 View commit details
    Browse the repository at this point in the history
  8. Bump eslint from 7.13.0 to 7.14.0 (mastodon#15210)

    Bumps [eslint](https://github.com/eslint/eslint) from 7.13.0 to 7.14.0.
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
    - [Commits](eslint/eslint@v7.13.0...v7.14.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    01e41ac View commit details
    Browse the repository at this point in the history
  9. Bump parallel from 1.20.0 to 1.20.1 (mastodon#15204)

    Bumps [parallel](https://github.com/grosser/parallel) from 1.20.0 to 1.20.1.
    - [Release notes](https://github.com/grosser/parallel/releases)
    - [Commits](grosser/parallel@v1.20.0...v1.20.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    6b6b1ea View commit details
    Browse the repository at this point in the history
  10. Bump @babel/preset-env from 7.12.1 to 7.12.7 (mastodon#15209)

    Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.12.1 to 7.12.7.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.12.7/packages/babel-preset-env)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    4ae22c4 View commit details
    Browse the repository at this point in the history
  11. Fixed ESLint error (mastodon#15214)

    * eslint --fix
    
    * fix consistent-return
    
    * fix promise/catch-or-return
    
    * ignore import rule
    abcang committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    a2da026 View commit details
    Browse the repository at this point in the history
  12. Add tootctl accounts merge (mastodon#15201)

    * Add `tootctl accounts merge`
    
    * Update lib/mastodon/accounts_cli.rb
    
    Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
    
    Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
    Gargron and ykzts committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    f844386 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2020

  1. Configuration menu
    Copy the full SHA
    41b38b0 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2020

  1. New Crowdin updates (mastodon#15137)

    * New translations en.yml (Kabyle)
    [ci skip]
    
    * New translations en.json (Kabyle)
    [ci skip]
    
    * New translations en.yml (Sanskrit)
    [ci skip]
    
    * New translations en.json (Sanskrit)
    [ci skip]
    
    * New translations en.yml (Sardinian)
    [ci skip]
    
    * New translations en.json (Sardinian)
    [ci skip]
    
    * New translations simple_form.en.yml (Corsican)
    [ci skip]
    
    * New translations simple_form.en.yml (Sorani (Kurdish))
    [ci skip]
    
    * New translations en.yml (Welsh)
    [ci skip]
    
    * New translations simple_form.en.yml (Swedish)
    [ci skip]
    
    * New translations en.json (Tamil)
    [ci skip]
    
    * New translations simple_form.en.yml (Persian)
    [ci skip]
    
    * New translations en.yml (Persian)
    [ci skip]
    
    * New translations en.json (Persian)
    [ci skip]
    
    * New translations simple_form.en.yml (Indonesian)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations simple_form.en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations simple_form.en.yml (Galician)
    [ci skip]
    
    * New translations simple_form.en.yml (Tamil)
    [ci skip]
    
    * New translations en.yml (Urdu (Pakistan))
    [ci skip]
    
    * New translations en.json (Urdu (Pakistan))
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations simple_form.en.yml (Ukrainian)
    [ci skip]
    
    * New translations en.yml (Ukrainian)
    [ci skip]
    
    * New translations en.json (Ukrainian)
    [ci skip]
    
    * New translations en.yml (Tamil)
    [ci skip]
    
    * New translations en.yml (Telugu)
    [ci skip]
    
    * New translations en.yml (Estonian)
    [ci skip]
    
    * New translations en.json (Telugu)
    [ci skip]
    
    * New translations en.yml (Malay)
    [ci skip]
    
    * New translations en.json (Malay)
    [ci skip]
    
    * New translations en.yml (Hindi)
    [ci skip]
    
    * New translations en.json (Hindi)
    [ci skip]
    
    * New translations en.yml (Latvian)
    [ci skip]
    
    * New translations en.json (Latvian)
    [ci skip]
    
    * New translations simple_form.en.yml (Estonian)
    [ci skip]
    
    * New translations en.json (Estonian)
    [ci skip]
    
    * New translations en.json (Bengali)
    [ci skip]
    
    * New translations simple_form.en.yml (Kazakh)
    [ci skip]
    
    * New translations en.yml (Kazakh)
    [ci skip]
    
    * New translations en.json (Kazakh)
    [ci skip]
    
    * New translations simple_form.en.yml (Norwegian Nynorsk)
    [ci skip]
    
    * New translations en.yml (Norwegian Nynorsk)
    [ci skip]
    
    * New translations en.json (Norwegian Nynorsk)
    [ci skip]
    
    * New translations en.json (Thai)
    [ci skip]
    
    * New translations en.yml (Marathi)
    [ci skip]
    
    * New translations en.json (Marathi)
    [ci skip]
    
    * New translations simple_form.en.yml (Bengali)
    [ci skip]
    
    * New translations en.yml (Bengali)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.json (French)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations devise.en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Occitan)
    [ci skip]
    
    * New translations simple_form.en.yml (Occitan)
    [ci skip]
    
    * New translations en.yml (Occitan)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Kannada)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.json (Esperanto)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations simple_form.en.yml (Esperanto)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Esperanto)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Esperanto)
    [ci skip]
    
    * New translations en.json (Esperanto)
    [ci skip]
    
    * New translations en.json (Esperanto)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Swedish)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (Corsican)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Russian)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Danish)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Japanese)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Albanian)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations devise.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Persian)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations devise.en.yml (Czech)
    [ci skip]
    
    * New translations devise.en.yml (Czech)
    [ci skip]
    
    * New translations en.json (Czech)
    [ci skip]
    
    * New translations en.json (Polish)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations simple_form.en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * New translations en.json (Czech)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.json (Galician)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations simple_form.en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations en.yml (Russian)
    [ci skip]
    
    * New translations en.json (Russian)
    [ci skip]
    
    * New translations en.yml (Swedish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (Albanian)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (Persian)
    [ci skip]
    
    * New translations en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations simple_form.en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations simple_form.en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Danish)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.json (Japanese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.json (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations simple_form.en.yml (French)
    [ci skip]
    
    * New translations en.json (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.json (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.json (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.json (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.json (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations devise.en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations devise.en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations devise.en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.yml (German)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations en.json (Galician)
    [ci skip]
    
    * New translations devise.en.yml (Galician)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Sardinian)
    [ci skip]
    
    * New translations en.json (Sardinian)
    [ci skip]
    
    * New translations en.json (Sardinian)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Sorani (Kurdish))
    [ci skip]
    
    * New translations doorkeeper.en.yml (Sorani (Kurdish))
    [ci skip]
    
    * Ran `i18n-tasks normalize`
    
    * Ran `yarn manage:translations`
    
    Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
    Gargron and ykzts committed Nov 26, 2020
    Configuration menu
    Copy the full SHA
    cb7bd8e View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2020

  1. Change media modals look in web UI (mastodon#15217)

    - Change overlay background to match color of viewed image
    - Add interactive reply/boost/favourite buttons to footer of modal
    - Change ugly "View context" link to button among the action bar
    Gargron committed Nov 27, 2020
    Configuration menu
    Copy the full SHA
    1e89e2e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec0edf7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e1a6526 View commit details
    Browse the repository at this point in the history
  4. Fix deletes not reaching every server that interacted with status (ma…

    …stodon#15200)
    
    Extract logic for determining ActivityPub inboxes to send deletes
    to to its own class and explicitly include the person the status
    replied to (even if not mentioned), people who favourited it, and
    people who replied to it (though that one is still not recursive)
    Gargron committed Nov 27, 2020
    Configuration menu
    Copy the full SHA
    e7e099d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e7f1439 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2020

  1. Configuration menu
    Copy the full SHA
    13206fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    13b07b8 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2020

  1. Configuration menu
    Copy the full SHA
    b429d33 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2020

  1. Configuration menu
    Copy the full SHA
    68775b6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a55e6e9 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2020

  1. Configuration menu
    Copy the full SHA
    8e0b985 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    17f01ec View commit details
    Browse the repository at this point in the history
  3. Fix Gemfile.lock breaking CI (mastodon#15257)

    Unnecessary Ruby and Bundler version constraints got included in mastodon#15230
    ClearlyClaire committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    4b7f21a View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2020

  1. Configuration menu
    Copy the full SHA
    fbff89b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9136be4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d849aad View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2020

  1. Fix account merging in maintenance script (mastodon#15264)

    Also include AccountNote and AccountDeletionRequest to the list of classes
    needing to be reassigned the merged account.
    ClearlyClaire committed Dec 4, 2020
    Configuration menu
    Copy the full SHA
    fbe7519 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    44d5c6b View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2020

  1. Configuration menu
    Copy the full SHA
    17a2e27 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2020

  1. Configuration menu
    Copy the full SHA
    014733d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    59d943e View commit details
    Browse the repository at this point in the history
  3. Fix not being able to open audio modal in web UI (mastodon#15283)

    Fix mastodon#15280
    
    Also adds the new action bar and blurhash-based background
    color to audio and video modals
    Gargron committed Dec 7, 2020
    Configuration menu
    Copy the full SHA
    a8c471f View commit details
    Browse the repository at this point in the history
  4. Fix slow distinct queries where grouped queries are faster (mastodon#…

    …15287)
    
    About 2x speed-up on inboxes query
    Gargron committed Dec 7, 2020
    Configuration menu
    Copy the full SHA
    48bef17 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9620ee9 View commit details
    Browse the repository at this point in the history
  6. Fix column swiping animation logic (mastodon#15301)

    From the start, swiping columns was highly unreliable because the logic
    could change `ReactSwipeableViews`'s `animateTransitions` property
    mid-swipe.
    
    PR mastodon#11200 partially fixed this, but at the unintended cost of disabling the
    swipe animation altogether.
    
    This PR changes the logic behind `shouldAnimate` to only disable the swiping
    animation at the end of a column change not initiated by `ReactSwipeableViews`.
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 7, 2020
    Configuration menu
    Copy the full SHA
    0b43732 View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2020

  1. Configuration menu
    Copy the full SHA
    765626a View commit details
    Browse the repository at this point in the history
  2. Fix open media hotkey (mastodon#15308)

    * Fix open media hotkey
    
    * Update status.js
    
    Co-authored-by: Eugen Rochko <eugen@zeonfederated.com>
    tribela and Gargron committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    7aee364 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2020

  1. Configuration menu
    Copy the full SHA
    f379a52 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    127c543 View commit details
    Browse the repository at this point in the history
  3. Fix notifications being unnecessarily redrawn on state change (mastod…

    …on#15312)
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 9, 2020
    Configuration menu
    Copy the full SHA
    9669167 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2020

  1. Add honeypot fields and minimum fill-out time for sign-up form (masto…

    …don#15276)
    
    * Add honeypot fields to limit non-specialized spam
    
    Add two honeypot fields: a fake website input and a fake password confirmation
    one. The label/placeholder/aria-label tells not to fill them, and they are
    hidden in CSS, so legitimate users should not fall into these.
    
    This should cut down on some non-Mastodon-specific spambots.
    
    * Require a 3 seconds delay before submitting the registration form
    
    * Fix tests
    
    * Move registration form time check to model validation
    
    * Give people a chance to clear the honeypot fields
    
    * Refactor honeypot translation strings
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 10, 2020
    Configuration menu
    Copy the full SHA
    49eb4d4 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2020

  1. Configuration menu
    Copy the full SHA
    a3b5675 View commit details
    Browse the repository at this point in the history
  2. Fix performance on instances list in admin UI (mastodon#15282)

    - Reduce duplicate queries
    - Remove n+1 queries
    - Add accounts count to detailed view
    - Add separate action log entry for updating existing domain blocks
    Gargron committed Dec 14, 2020
    Configuration menu
    Copy the full SHA
    216b85b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4fd3062 View commit details
    Browse the repository at this point in the history
  4. Fix dynamic updating of “Bootstrap timeline accounts” admin setting (m…

    …astodon#15325)
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 14, 2020
    Configuration menu
    Copy the full SHA
    a7e819b View commit details
    Browse the repository at this point in the history
  5. Add ability to require invite request text (mastodon#15326)

    Fixes mastodon#15273
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 14, 2020
    Configuration menu
    Copy the full SHA
    47e507f View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2020

  1. Add app shortcuts (mastodon#15234)

    * Add app shortcuts
    
    Signed-off-by: mkljczk <me@mkljczk.pl>
    
    * Fix codeclimate issues
    
    Signed-off-by: mkljczk <me@mkljczk.pl>
    
    * Change shortcuts
    
    Signed-off-by: mkljczk <me@mkljczk.pl>
    
    * More consistent new-status icon
    
    Signed-off-by: mkljczk <me@mkljczk.pl>
    mkljczk committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    9342705 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a2ef002 View commit details
    Browse the repository at this point in the history
  3. Bump ini from 1.3.5 to 1.3.7 (mastodon#15317)

    Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7.
    - [Release notes](https://github.com/isaacs/ini/releases)
    - [Commits](npm/ini@v1.3.5...v1.3.7)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    7c800fa View commit details
    Browse the repository at this point in the history
  4. Add indication to admin UI of whether a report has been forwarded (ma…

    …stodon#13237)
    
    * Add indication to admin UI of whether a report has been forwarded
    
    * Rework how forwarded status is displayed
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    1390cc1 View commit details
    Browse the repository at this point in the history
  5. Add "invite request content" display in user account admin page (mast…

    …odon#15265)
    
    * feat: display `invite_request_text` in admin's user account page
    
    * fix: move invite_request to the bottom of accounts page
    
    * fix: remove time display, remove formate, change code terminology
    
    * fix: remove escape
    mashirozx committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    75d2762 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1045549 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1f56405 View commit details
    Browse the repository at this point in the history
  8. Bump max supported schema version in maintenance script (mastodon#15349)

    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    8485c43 View commit details
    Browse the repository at this point in the history
  9. Fix admins being able to suspend their instance actor (mastodon#14567)

    * Fix admin being able to suspend their own instance account
    
    * Add text about the instance's own actor in admin view
    
    * Change instance actor notice from flash message to template
    
    * Do not list local instance actor in account moderation list
    ClearlyClaire committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    8357969 View commit details
    Browse the repository at this point in the history
  10. Change notification permission handling (mastodon#15176)

    * Change notification permission handling
    
    - allow changing individual alert settings even if permission is not explicitly
      enabled (asks for permission on toggle)
    - persist permission request banner dismissal across sessions through settings
    
    * Add additional, more discrete message to grant permissions
    
    * Change permission granting button design according to reviews
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    79efcf8 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2020

  1. New Crowdin updates (mastodon#15220)

    * New translations doorkeeper.en.yml (Slovak)
    [ci skip]
    
    * New translations simple_form.en.yml (Slovak)
    [ci skip]
    
    * New translations en.yml (Slovak)
    [ci skip]
    
    * New translations en.json (Slovak)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Russian)
    [ci skip]
    
    * New translations en.yml (Russian)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Portuguese)
    [ci skip]
    
    * New translations simple_form.en.yml (Portuguese)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Polish)
    [ci skip]
    
    * New translations simple_form.en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (Georgian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Japanese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Catalan)
    [ci skip]
    
    * New translations simple_form.en.yml (German)
    [ci skip]
    
    * New translations simple_form.en.yml (Basque)
    [ci skip]
    
    * New translations en.yml (Basque)
    [ci skip]
    
    * New translations en.json (Basque)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Greek)
    [ci skip]
    
    * New translations en.json (Greek)
    [ci skip]
    
    * New translations doorkeeper.en.yml (German)
    [ci skip]
    
    * New translations en.yml (German)
    [ci skip]
    
    * New translations en.json (Finnish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Danish)
    [ci skip]
    
    * New translations simple_form.en.yml (Danish)
    [ci skip]
    
    * New translations en.yml (Danish)
    [ci skip]
    
    * New translations en.json (Danish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Czech)
    [ci skip]
    
    * New translations simple_form.en.yml (Czech)
    [ci skip]
    
    * New translations en.yml (Czech)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Basque)
    [ci skip]
    
    * New translations en.yml (Finnish)
    [ci skip]
    
    * New translations simple_form.en.yml (Japanese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Hungarian)
    [ci skip]
    
    * New translations en.json (Japanese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Italian)
    [ci skip]
    
    * New translations simple_form.en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Armenian)
    [ci skip]
    
    * New translations simple_form.en.yml (Armenian)
    [ci skip]
    
    * New translations simple_form.en.yml (Hungarian)
    [ci skip]
    
    * New translations simple_form.en.yml (Finnish)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Hebrew)
    [ci skip]
    
    * New translations simple_form.en.yml (Hebrew)
    [ci skip]
    
    * New translations en.yml (Hebrew)
    [ci skip]
    
    * New translations en.json (Hebrew)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Finnish)
    [ci skip]
    
    * New translations simple_form.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations simple_form.en.yml (Galician)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations simple_form.en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations simple_form.en.yml (Korean)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations simple_form.en.yml (Portuguese)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations simple_form.en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations simple_form.en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Swedish)
    [ci skip]
    
    * New translations simple_form.en.yml (Swedish)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations simple_form.en.yml (Polish)
    [ci skip]
    
    * New translations simple_form.en.yml (Russian)
    [ci skip]
    
    * New translations en.yml (Sardinian)
    [ci skip]
    
    * New translations simple_form.en.yml (Sardinian)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations simple_form.en.yml (Icelandic)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (German)
    [ci skip]
    
    * New translations simple_form.en.yml (German)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations simple_form.en.yml (French)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations simple_form.en.yml (Esperanto)
    [ci skip]
    
    * New translations simple_form.en.yml (French)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations simple_form.en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations simple_form.en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Albanian)
    [ci skip]
    
    * New translations simple_form.en.yml (Albanian)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations simple_form.en.yml (Greek)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations en.json (Esperanto)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Swedish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Japanese)
    [ci skip]
    
    * New translations en.yml (Persian)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Albanian)
    [ci skip]
    
    * New translations en.yml (Swedish)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (Corsican)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Kabyle)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Turkish)
    [ci skip]
    
    * New translations simple_form.en.yml (Sardinian)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations devise.en.yml (Hungarian)
    [ci skip]
    
    * New translations simple_form.en.yml (Sardinian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (Swedish)
    [ci skip]
    
    * New translations en.yml (Greek)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (German)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (Greek)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.yml (Albanian)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (Swedish)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations simple_form.en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (German)
    [ci skip]
    
    * New translations en.yml (Russian)
    [ci skip]
    
    * New translations en.yml (Russian)
    [ci skip]
    
    * New translations en.json (Persian)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (Persian)
    [ci skip]
    
    * New translations simple_form.en.yml (Persian)
    [ci skip]
    
    * New translations en.yml (Persian)
    [ci skip]
    
    * New translations en.yml (Persian)
    [ci skip]
    
    * ran `yarn manage:translations`
    
    * ran `i18n-tasks normalize`
    
    * Ran `yarn manage:translations`
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * Ran `i18n-tasks normalize`
    
    Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
    Gargron and ykzts committed Dec 16, 2020
    Configuration menu
    Copy the full SHA
    2032748 View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2020

  1. Improve searching for private toots from URL (mastodon#14856)

    * Improve searching for private toots from URL
    
    Most of the time, when sharing toots, people use the toot URL rather than
    the toot URI, which makes sense since it is the user-facing URL.
    
    In Mastodon's case, the URL and URI are different, and Mastodon does not
    have an index on URL, which means searching a private toot by URL is done
    with a slow query that will only succeed for very recent toots.
    
    This change gets rid of the slow query, and attempts to guess the URI from
    URL instead, as Mastodon's are predictable.
    
    * Add tests
    
    * Only return status with guessed uri if url matches
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 17, 2020
    Configuration menu
    Copy the full SHA
    b1feb47 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2020

  1. Add option to obfuscate domain name in public list of domain blocks (m…

    …astodon#15355)
    
    - Replace the middle of the domain with * characters (except for periods)
    - Add SHA-256 digest of the domain name in tooltip
    Gargron committed Dec 18, 2020
    Configuration menu
    Copy the full SHA
    8a95867 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    941ff04 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eb35be0 View commit details
    Browse the repository at this point in the history
  4. Fix styling issue on /about when server admin has a long username (ma…

    …stodon#15357)
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 18, 2020
    Configuration menu
    Copy the full SHA
    47c6c54 View commit details
    Browse the repository at this point in the history
  5. Bump max supported schema version in maintenance script (mastodon#15359)

    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 18, 2020
    Configuration menu
    Copy the full SHA
    75944a2 View commit details
    Browse the repository at this point in the history
  6. Reword invite text settings in admin views for consistency (mastodon#…

    …15358)
    
    For consistency with mastodon#15265
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 18, 2020
    Configuration menu
    Copy the full SHA
    1a02882 View commit details
    Browse the repository at this point in the history
  7. Fix old migration script not being able to run if it fails midway (ma…

    …stodon#15361)
    
    * Fix old migration script not being able to run if it fails midway
    
    Improve the robustness of a migration script likely to fail because of database
    corruption so it can run again once database corruptions are fixed.
    
    * Display a specific error message in case of index corruption
    
    Co-authored-by: Eugen Rochko <eugen@zeonfederated.com>
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    3 people committed Dec 18, 2020
    Configuration menu
    Copy the full SHA
    0522495 View commit details
    Browse the repository at this point in the history
  8. Fix resolving accounts sometimes creating duplicate records for a giv…

    …en AP id (mastodon#15364)
    
    * Fix ResolveAccountService accepting mismatching acct: URI
    
    * Set attributes that should be updated regardless of suspension
    
    * Fix key fetching
    
    * Automatically merge remote accounts with duplicate `uri`
    
    * Add tests
    
    * Add "tootctl accounts fix-duplicates"
    
    Finds duplicate accounts sharing a same ActivityPub `id`, re-fetch them and
    merge them under the canonical `acct:` URI.
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 18, 2020
    Configuration menu
    Copy the full SHA
    a60d933 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    59343ef View commit details
    Browse the repository at this point in the history
  10. New Crowdin updates (mastodon#15353)

    * New translations en.json (Danish)
    [ci skip]
    
    * New translations en.yml (Danish)
    [ci skip]
    
    * New translations simple_form.en.yml (Danish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Danish)
    [ci skip]
    
    * New translations en.yml (German)
    [ci skip]
    
    * New translations simple_form.en.yml (German)
    [ci skip]
    
    * New translations en.json (Greek)
    [ci skip]
    
    * New translations simple_form.en.yml (Czech)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Greek)
    [ci skip]
    
    * New translations en.json (Basque)
    [ci skip]
    
    * New translations en.yml (Basque)
    [ci skip]
    
    * New translations simple_form.en.yml (Basque)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Basque)
    [ci skip]
    
    * New translations en.json (Finnish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Czech)
    [ci skip]
    
    * New translations en.yml (Czech)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Bulgarian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Arabic)
    [ci skip]
    
    * New translations en.yml (Arabic)
    [ci skip]
    
    * New translations simple_form.en.yml (Arabic)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Arabic)
    [ci skip]
    
    * New translations en.yml (Bulgarian)
    [ci skip]
    
    * New translations simple_form.en.yml (Bulgarian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Bulgarian)
    [ci skip]
    
    * New translations en.json (Catalan)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations simple_form.en.yml (Catalan)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Breton)
    [ci skip]
    
    * New translations simple_form.en.yml (Breton)
    [ci skip]
    
    * New translations en.json (Kannada)
    [ci skip]
    
    * New translations en.yml (Breton)
    [ci skip]
    
    * New translations en.json (Hindi)
    [ci skip]
    
    * New translations en.yml (Hindi)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Hindi)
    [ci skip]
    
    * New translations en.json (Malay)
    [ci skip]
    
    * New translations en.yml (Malay)
    [ci skip]
    
    * New translations en.json (Telugu)
    [ci skip]
    
    * New translations en.yml (Telugu)
    [ci skip]
    
    * New translations en.json (Welsh)
    [ci skip]
    
    * New translations en.json (Breton)
    [ci skip]
    
    * New translations en.yml (Welsh)
    [ci skip]
    
    * New translations simple_form.en.yml (Welsh)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Welsh)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Esperanto)
    [ci skip]
    
    * New translations en.json (Uyghur)
    [ci skip]
    
    * New translations en.yml (Uyghur)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.yml (Malayalam)
    [ci skip]
    
    * New translations simple_form.en.yml (Malayalam)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Malayalam)
    [ci skip]
    
    * New translations en.yml (Kannada)
    [ci skip]
    
    * New translations en.yml (Serbian (Latin))
    [ci skip]
    
    * New translations en.json (Taigi)
    [ci skip]
    
    * New translations simple_form.en.yml (Kabyle)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Kabyle)
    [ci skip]
    
    * New translations en.json (Ido)
    [ci skip]
    
    * New translations en.yml (Ido)
    [ci skip]
    
    * New translations simple_form.en.yml (Ido)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Ido)
    [ci skip]
    
    * New translations en.yml (Taigi)
    [ci skip]
    
    * New translations en.json (Silesian)
    [ci skip]
    
    * New translations en.yml (Silesian)
    [ci skip]
    
    * New translations en.yml (Kabyle)
    [ci skip]
    
    * New translations en.json (Asturian)
    [ci skip]
    
    * New translations en.json (Serbian (Latin))
    [ci skip]
    
    * New translations en.yml (Asturian)
    [ci skip]
    
    * New translations simple_form.en.yml (Asturian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Asturian)
    [ci skip]
    
    * New translations en.json (Occitan)
    [ci skip]
    
    * New translations simple_form.en.yml (Occitan)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Occitan)
    [ci skip]
    
    * New translations en.yml (Latvian)
    [ci skip]
    
    * New translations en.yml (Sanskrit)
    [ci skip]
    
    * New translations simple_form.en.yml (Serbian (Latin))
    [ci skip]
    
    * New translations doorkeeper.en.yml (Serbian (Latin))
    [ci skip]
    
    * New translations en.json (Corsican)
    [ci skip]
    
    * New translations simple_form.en.yml (Corsican)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Corsican)
    [ci skip]
    
    * New translations en.json (Sanskrit)
    [ci skip]
    
    * New translations en.json (Spanish, Argentina)
    [ci skip]
    
    * New translations en.json (Latvian)
    [ci skip]
    
    * New translations en.json (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations simple_form.en.yml (Sorani (Kurdish))
    [ci skip]
    
    * New translations en.yml (Sorani (Kurdish))
    [ci skip]
    
    * New translations en.json (Sorani (Kurdish))
    [ci skip]
    
    * New translations en.yml (Occitan)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations simple_form.en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (Sardinian)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations en.json (Persian)
    [ci skip]
    
    * New translations en.yml (Corsican)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Indonesian)
    [ci skip]
    
    * New translations en.yml (Persian)
    [ci skip]
    
    * New translations simple_form.en.yml (Persian)
    [ci skip]
    
    * New translations en.json (Sardinian)
    [ci skip]
    
    * New translations simple_form.en.yml (Sardinian)
    [ci skip]
    
    * New translations en.json (Tamil)
    [ci skip]
    
    * New translations en.json (Esperanto)
    [ci skip]
    
    * New translations en.json (Thai)
    [ci skip]
    
    * New translations simple_form.en.yml (Thai)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.yml (Tatar)
    [ci skip]
    
    * New translations en.json (Kabyle)
    [ci skip]
    
    * New translations en.json (Tatar)
    [ci skip]
    
    * New translations en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Sardinian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Sorani (Kurdish))
    [ci skip]
    
    * New translations doorkeeper.en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Persian)
    [ci skip]
    
    * New translations en.yml (Tamil)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Estonian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Norwegian Nynorsk)
    [ci skip]
    
    * New translations en.yml (Croatian)
    [ci skip]
    
    * New translations simple_form.en.yml (Croatian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Croatian)
    [ci skip]
    
    * New translations en.json (Norwegian Nynorsk)
    [ci skip]
    
    * New translations en.yml (Norwegian Nynorsk)
    [ci skip]
    
    * New translations simple_form.en.yml (Norwegian Nynorsk)
    [ci skip]
    
    * New translations en.json (Kazakh)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Thai)
    [ci skip]
    
    * New translations en.yml (Kazakh)
    [ci skip]
    
    * New translations simple_form.en.yml (Kazakh)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Kazakh)
    [ci skip]
    
    * New translations en.json (Estonian)
    [ci skip]
    
    * New translations en.yml (Estonian)
    [ci skip]
    
    * New translations simple_form.en.yml (Estonian)
    [ci skip]
    
    * New translations en.json (Croatian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Marathi)
    [ci skip]
    
    * New translations simple_form.en.yml (Tamil)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Tamil)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.json (Bengali)
    [ci skip]
    
    * New translations en.yml (Bengali)
    [ci skip]
    
    * New translations simple_form.en.yml (Bengali)
    [ci skip]
    
    * New translations en.json (Marathi)
    [ci skip]
    
    * New translations en.yml (Marathi)
    [ci skip]
    
    * New translations simple_form.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (French)
    [ci skip]
    
    * New translations en.json (Korean)
    [ci skip]
    
    * New translations en.json (Spanish, Argentina)
    [ci skip]
    
    * New translations en.json (Spanish, Argentina)
    [ci skip]
    
    * New translations en.json (Catalan)
    [ci skip]
    
    * New translations en.json (Galician)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.json (Russian)
    [ci skip]
    
    * New translations en.json (Russian)
    [ci skip]
    
    * New translations en.json (Polish)
    [ci skip]
    
    * New translations en.json (Albanian)
    [ci skip]
    
    * New translations en.yml (Albanian)
    [ci skip]
    
    * New translations en.json (Greek)
    [ci skip]
    
    * New translations en.json (Albanian)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Persian)
    [ci skip]
    
    * New translations en.json (Icelandic)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.json (Icelandic)
    [ci skip]
    
    * New translations en.json (Hungarian)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations simple_form.en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations en.json (Portuguese, Brazilian)
    [ci skip]
    
    * New translations en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations simple_form.en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations en.yml (Portuguese, Brazilian)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * New translations en.json (Thai)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * New translations en.yml (Corsican)
    [ci skip]
    
    * New translations en.json (Corsican)
    [ci skip]
    
    * New translations simple_form.en.yml (Corsican)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.json (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations en.json (Portuguese)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations en.json (Portuguese)
    [ci skip]
    
    * New translations en.json (Japanese)
    [ci skip]
    
    * New translations en.json (Galician)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations en.json (Italian)
    [ci skip]
    
    * New translations en.yml (Kabyle)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.json (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish, Mexico)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Greek)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.yml (Swedish)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.json (Indonesian)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.json (Indonesian)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations simple_form.en.yml (Indonesian)
    [ci skip]
    
    * New translations en.yml (Albanian)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * i18n-tasks normalize
    
    * yarn manage:translations
    Gargron committed Dec 18, 2020
    Configuration menu
    Copy the full SHA
    1c41ce3 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c6598b1 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2020

  1. Configuration menu
    Copy the full SHA
    2dd3643 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3561f8f View commit details
    Browse the repository at this point in the history
  3. Fix "tootctl accounts fix-duplicates" (mastodon#15373)

    - `pluck_each` cannot be used this way with `group`
    - typo
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 19, 2020
    Configuration menu
    Copy the full SHA
    c4e8602 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2020

  1. Add clean error message when RAILS_ENV is unset (mastodon#15381)

    By default, an unset RAILS_ENV is understood as RAILS_ENV=development.
    
    However, this is not what most people expect, and due to development-only
    dependencies, users are often left with confusing error messages.
    
    This commit changes it so that an explicit RAILS_ENV is required, and
    failing that, an error message is displayed before loading the app.
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 20, 2020
    Configuration menu
    Copy the full SHA
    9734c9b View commit details
    Browse the repository at this point in the history
  2. Fix AccountDeletionWorker crashing and clogging sidekiq queues (masto…

    …don#15380)
    
    * Fix account deletion workers being queued multiple times for a single account
    
    * Fix poll votes being unnecessarily instantiated on poll deletion
    
    * Fix favourites being unnecessarily instantiated on status deletion
    
    * Remove inaccurate comments
    
    * Delete polls instead of destroying them
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 20, 2020
    Configuration menu
    Copy the full SHA
    7bf3c6e View commit details
    Browse the repository at this point in the history
  3. Fix invitation links not working when invite request text is required (

    …mastodon#15385)
    
    Fixes mastodon#15383
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 20, 2020
    Configuration menu
    Copy the full SHA
    6f51fd7 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2020

  1. Fix some notifications not being deleted on poll/status deletion (mas…

    …todon#15402)
    
    * Fix deleting polls not deleting notifications
    
    * Fix fav notification deletion when deleting a toot
    
    * Refactor DeleteAccountService spec
    
    * Add DeleteAccountService tests for other associations and notifications
    
    * Add favourite handling spec in status removal
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 21, 2020
    Configuration menu
    Copy the full SHA
    4396103 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2020

  1. Bump node-notifier from 8.0.0 to 8.0.1 (mastodon#15404)

    Bumps [node-notifier](https://github.com/mikaelbr/node-notifier) from 8.0.0 to 8.0.1.
    - [Release notes](https://github.com/mikaelbr/node-notifier/releases)
    - [Changelog](https://github.com/mikaelbr/node-notifier/blob/v8.0.1/CHANGELOG.md)
    - [Commits](mikaelbr/node-notifier@v8.0.0...v8.0.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Dec 22, 2020
    Configuration menu
    Copy the full SHA
    67ebd61 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9915d11 View commit details
    Browse the repository at this point in the history
  3. Fix external user creation failing when invite request text is requir…

    …ed (mastodon#15405)
    
    * Fix external user creation failing when invite request text is required
    
    Also fixes tootctl-based user creation.
    
    * Add test about invites when invite request text is otherwise required
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 22, 2020
    Configuration menu
    Copy the full SHA
    1cf2c3a View commit details
    Browse the repository at this point in the history
  4. Fix batch order warnings in BatchedRemoveStatusService (mastodon#15409)

    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 22, 2020
    Configuration menu
    Copy the full SHA
    f183496 View commit details
    Browse the repository at this point in the history
  5. Improve account deletion performances further (mastodon#15407)

    * Delete status records by batches of 50
    
    * Do not precompute values that are only used once
    
    * Do not generate redis events for removal of public toots older than two weeks
    
    * Filter reported toots a priori for polls and status deletion
    
    * Do not process reblogs when cleaning up public timelines
    
    As in Mastodon proper, reblogs don't appear in public TLs
    
    * Clean the deleted account's own feed in one go
    
    * Refactor Account#clean_feed_manager and List#clean_feed_manager
    
    * Delete instead of destroy a few more associations
    
    * Fix preloading
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 22, 2020
    Configuration menu
    Copy the full SHA
    3249d35 View commit details
    Browse the repository at this point in the history
  6. Fix BatchedRemoveStatusService not working without ES in rails console (

    mastodon#15408)
    
    Not a huge deal but may cause surprising failures in custom scripts and
    development.
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 22, 2020
    Configuration menu
    Copy the full SHA
    2ab3e91 View commit details
    Browse the repository at this point in the history
  7. New Crowdin updates (mastodon#15369)

    * New translations doorkeeper.en.yml (Esperanto)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Albanian)
    [ci skip]
    
    * New translations en.yml (Albanian)
    [ci skip]
    
    * New translations en.yml (Greek)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Romanian)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.json (Esperanto)
    [ci skip]
    
    * New translations en.json (Thai)
    [ci skip]
    
    * New translations simple_form.en.yml (Thai)
    [ci skip]
    
    * New translations en.yml (Thai)
    [ci skip]
    
    * New translations simple_form.en.yml (Galician)
    [ci skip]
    
    * New translations simple_form.en.yml (Romanian)
    [ci skip]
    
    * New translations en.yml (Tatar)
    [ci skip]
    
    * New translations en.json (Tatar)
    [ci skip]
    
    * New translations en.yml (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations en.json (Standard Moroccan Tamazight)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Sardinian)
    [ci skip]
    
    * New translations en.yml (Romanian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Romanian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.json (Bulgarian)
    [ci skip]
    
    * New translations simple_form.en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Bulgarian)
    [ci skip]
    
    * New translations simple_form.en.yml (Bulgarian)
    [ci skip]
    
    * New translations en.yml (Bulgarian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Arabic)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations simple_form.en.yml (Arabic)
    [ci skip]
    
    * New translations en.yml (Arabic)
    [ci skip]
    
    * New translations en.json (Arabic)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (French)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Sorani (Kurdish))
    [ci skip]
    
    * New translations doorkeeper.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Czech)
    [ci skip]
    
    * New translations simple_form.en.yml (Greek)
    [ci skip]
    
    * New translations simple_form.en.yml (Dutch)
    [ci skip]
    
    * New translations en.yml (Dutch)
    [ci skip]
    
    * New translations en.json (Dutch)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.json (German)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Czech)
    [ci skip]
    
    * New translations en.json (Spanish)
    [ci skip]
    
    * New translations simple_form.en.yml (French)
    [ci skip]
    
    * New translations en.yml (Corsican)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations en.json (Swedish)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Kabyle)
    [ci skip]
    
    * New translations en.yml (Occitan)
    [ci skip]
    
    * New translations simple_form.en.yml (Sardinian)
    [ci skip]
    
    * New translations en.yml (Sardinian)
    [ci skip]
    
    * New translations en.json (Sardinian)
    [ci skip]
    
    * New translations simple_form.en.yml (Sorani (Kurdish))
    [ci skip]
    
    * New translations en.yml (Sorani (Kurdish))
    [ci skip]
    
    * New translations en.json (Sorani (Kurdish))
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations simple_form.en.yml (Esperanto)
    [ci skip]
    
    * New translations en.yml (Esperanto)
    [ci skip]
    
    * New translations simple_form.en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Catalan)
    [ci skip]
    
    * New translations simple_form.en.yml (Czech)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Norwegian)
    [ci skip]
    
    * New translations simple_form.en.yml (Norwegian)
    [ci skip]
    
    * New translations en.yml (Norwegian)
    [ci skip]
    
    * New translations en.json (Norwegian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Dutch)
    [ci skip]
    
    * New translations en.yml (Macedonian)
    [ci skip]
    
    * New translations simple_form.en.yml (Polish)
    [ci skip]
    
    * New translations en.json (Macedonian)
    [ci skip]
    
    * New translations en.yml (Lithuanian)
    [ci skip]
    
    * New translations en.json (Lithuanian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Korean)
    [ci skip]
    
    * New translations simple_form.en.yml (Korean)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Polish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Georgian)
    [ci skip]
    
    * New translations en.yml (Slovak)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Slovenian)
    [ci skip]
    
    * New translations simple_form.en.yml (Slovenian)
    [ci skip]
    
    * New translations en.yml (Slovenian)
    [ci skip]
    
    * New translations en.json (Slovenian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Slovak)
    [ci skip]
    
    * New translations simple_form.en.yml (Slovak)
    [ci skip]
    
    * New translations en.json (Slovak)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Russian)
    [ci skip]
    
    * New translations simple_form.en.yml (Russian)
    [ci skip]
    
    * New translations en.yml (Russian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Portuguese)
    [ci skip]
    
    * New translations simple_form.en.yml (Portuguese)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations simple_form.en.yml (Georgian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Czech)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Greek)
    [ci skip]
    
    * New translations en.yml (Finnish)
    [ci skip]
    
    * New translations en.json (Finnish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Basque)
    [ci skip]
    
    * New translations simple_form.en.yml (Basque)
    [ci skip]
    
    * New translations en.yml (Basque)
    [ci skip]
    
    * New translations en.json (Basque)
    [ci skip]
    
    * New translations en.json (Greek)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Finnish)
    [ci skip]
    
    * New translations doorkeeper.en.yml (German)
    [ci skip]
    
    * New translations simple_form.en.yml (German)
    [ci skip]
    
    * New translations en.yml (German)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Danish)
    [ci skip]
    
    * New translations simple_form.en.yml (Danish)
    [ci skip]
    
    * New translations en.yml (Danish)
    [ci skip]
    
    * New translations en.json (Danish)
    [ci skip]
    
    * New translations simple_form.en.yml (Finnish)
    [ci skip]
    
    * New translations en.json (Hebrew)
    [ci skip]
    
    * New translations en.yml (Georgian)
    [ci skip]
    
    * New translations en.json (Georgian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Japanese)
    [ci skip]
    
    * New translations simple_form.en.yml (Japanese)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Italian)
    [ci skip]
    
    * New translations simple_form.en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Hebrew)
    [ci skip]
    
    * New translations simple_form.en.yml (Armenian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Hungarian)
    [ci skip]
    
    * New translations simple_form.en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations doorkeeper.en.yml (Hebrew)
    [ci skip]
    
    * New translations simple_form.en.yml (Hebrew)
    [ci skip]
    
    * New translations simple_form.en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Turkish)
    [ci skip]
    
    * New translations en.yml (French)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Spanish, Argentina)
    [ci skip]
    
    * New translations en.json (French)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (French)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations en.yml (Galician)
    [ci skip]
    
    * New translations en.yml (Catalan)
    [ci skip]
    
    * New translations en.yml (Occitan)
    [ci skip]
    
    * New translations en.json (Occitan)
    [ci skip]
    
    * New translations en.yml (Polish)
    [ci skip]
    
    * New translations en.yml (Greek)
    [ci skip]
    
    * New translations en.yml (Albanian)
    [ci skip]
    
    * New translations en.json (German)
    [ci skip]
    
    * New translations en.json (German)
    [ci skip]
    
    * New translations en.yml (Spanish)
    [ci skip]
    
    * New translations en.yml (German)
    [ci skip]
    
    * New translations devise.en.yml (German)
    [ci skip]
    
    * New translations en.yml (Icelandic)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Italian)
    [ci skip]
    
    * New translations en.yml (Portuguese)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations simple_form.en.yml (Armenian)
    [ci skip]
    
    * New translations simple_form.en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Occitan)
    [ci skip]
    
    * New translations simple_form.en.yml (Occitan)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.yml (Malayalam)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Malayalam)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.yml (Malayalam)
    [ci skip]
    
    * New translations simple_form.en.yml (Malayalam)
    [ci skip]
    
    * New translations en.json (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.yml (Malayalam)
    [ci skip]
    
    * New translations devise.en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations devise.en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations devise.en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Malayalam)
    [ci skip]
    
    * New translations devise.en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Dutch)
    [ci skip]
    
    * New translations en.yml (Dutch)
    [ci skip]
    
    * New translations en.yml (Dutch)
    [ci skip]
    
    * New translations simple_form.en.yml (Dutch)
    [ci skip]
    
    * New translations en.yml (Dutch)
    [ci skip]
    
    * New translations simple_form.en.yml (Dutch)
    [ci skip]
    
    * New translations en.yml (Dutch)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.yml (Malayalam)
    [ci skip]
    
    * New translations en.yml (Malayalam)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.yml (Indonesian)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations en.yml (Hungarian)
    [ci skip]
    
    * New translations activerecord.en.yml (Kabyle)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.json (Croatian)
    [ci skip]
    
    * New translations en.json (Croatian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Esperanto)
    [ci skip]
    
    * New translations en.json (Esperanto)
    [ci skip]
    
    * i18n-tasks normalize
    
    * yarn manage:translations
    Gargron committed Dec 22, 2020
    Configuration menu
    Copy the full SHA
    62e42bd View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2020

  1. Improve performances of deleting favourites when deleting accounts (m…

    …astodon#15412)
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    814b777 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    444b21b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    473abc3 View commit details
    Browse the repository at this point in the history
  4. Fix mentions not being deleted efficiently (mastodon#15416)

    As a regression from the recent optimizations, mentions were left untouched
    until `account.destroy`, which would then delete them individually,
    and executing queries to find and delete associated notifications, resulting
    in a massive slowdown.
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    de57efd View commit details
    Browse the repository at this point in the history
  5. Use existing FeaturedTag serializer and delete AccountFeaturedTag ser…

    …ializer (mastodon#15415)
    
    * Update featured_tags_controller.rb
    
    * Update featured_tag_serializer.rb
    
    * Update featured_tag_serializer.rb
    
    * Delete account_featured_tag_serializer.rb
    
    * please codeclimate
    
    * please codeclimate
    trwnh committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    4950e59 View commit details
    Browse the repository at this point in the history
  6. Fix media modal buttons not showing up on mobile (mastodon#15417)

    Fixes mastodon#15374
    
    When the pop-out player was introduced, it had tweaks for the mobile
    view, but it's now disabled in mobile mode and the styling was reused
    for modals, causing the footer to be hidden on mobile without a good
    reason.
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    b08d2d4 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7e6d3a7 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2020

  1. Configuration menu
    Copy the full SHA
    ba0b79f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e896485 View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2020

  1. Fix logo button style (mastodon#15428)

    * Fix bell button rtl style
    
    * Remove size and style props from button component
    
    * Fix logo button style
    
    * Update jest snapshot
    noellabo committed Dec 26, 2020
    Configuration menu
    Copy the full SHA
    ba748a8 View commit details
    Browse the repository at this point in the history
  2. New Crowdin updates (mastodon#15413)

    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.yml (Vietnamese)
    [ci skip]
    
    * New translations en.json (Malayalam)
    [ci skip]
    
    * New translations en.yml (Korean)
    [ci skip]
    
    * New translations en.yml (Japanese)
    [ci skip]
    
    * New translations simple_form.en.yml (Japanese)
    [ci skip]
    
    * New translations en.yml (Chinese Traditional, Hong Kong)
    [ci skip]
    
    * New translations en.yml (Occitan)
    [ci skip]
    
    * New translations en.yml (Occitan)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.yml (Chinese Simplified)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations en.json (Armenian)
    [ci skip]
    
    * New translations simple_form.en.yml (Armenian)
    [ci skip]
    
    * New translations devise.en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations devise.en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * New translations en.yml (Armenian)
    [ci skip]
    
    * i18n-tasks normalize
    
    * yarn manage:translations
    Gargron committed Dec 26, 2020
    Configuration menu
    Copy the full SHA
    4580129 View commit details
    Browse the repository at this point in the history
  3. Fix being able to import more than allowed number of follows (mastodo…

    …n#15384)
    
    * Fix being able to import more than allowed number of follows
    
    Without this commit, if someone tries importing a second list of accounts to
    follow before the first one has been processed, this will queue imports for
    the two whole lists, even if they exceed the account's allowed number of
    outgoing follows.
    
    This commit changes it so the individual queued imports aren't exempt from
    the follow limit check (they remain exempt from the rate-limiting check
    though).
    
    * Catch validation errors to not re-queue failed follows
    
    Co-authored-by: Claire <claire.github-309c@sitedethib.com>
    ClearlyClaire and ClearlyClaire committed Dec 26, 2020
    Configuration menu
    Copy the full SHA
    f1f96eb View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2020

  1. Configuration menu
    Copy the full SHA
    e43532c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    633d175 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2021

  1. Configuration menu
    Copy the full SHA
    ff5e8ea View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2021

  1. fix merge (ff5e8ea)

    motorailgun committed Feb 20, 2021
    Configuration menu
    Copy the full SHA
    4c72bc7 View commit details
    Browse the repository at this point in the history