You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

804 lines
20 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
Add WebAuthn as an alternative 2FA method (#14466) * feat: add possibility of adding WebAuthn security keys to use as 2FA This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor to the Settings page for editing the 2FA methods – now it will list the methods that are available to the user (TOTP and WebAuthn) and from there they'll be able to add or remove any of them. Also, it's worth mentioning that for enabling WebAuthn it's required to have TOTP enabled, so the first time that you go to the 2FA Settings page, you'll be asked to set it up. This work was inspired by the one donde by Github in their platform, and despite it could be approached in different ways, we decided to go with this one given that we feel that this gives a great UX. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add request for WebAuthn as second factor at login if enabled This commits adds the feature for using WebAuthn as a second factor for login when enabled. If users have WebAuthn enabled, now a page requesting for the use of a WebAuthn credential for log in will appear, although a link redirecting to the old page for logging in using a two-factor code will also be present. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add possibility of deleting WebAuthn Credentials Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: disable WebAuthn when an Admin disables 2FA for a user Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: remove ability to disable TOTP leaving only WebAuthn as 2FA Following examples form other platforms like Github, we decided to make Webauthn 2FA secondary to 2FA with TOTP, so that we removed the possibility of removing TOTP authentication only, leaving users with just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA' in order to remove second factor auth. The reason for WebAuthn being secondary to TOPT is that in that way, users will still be able to log in using their code from their phone's application if they don't have their security keys with them – or maybe even lost them. * We had to change a little the flow for setting up TOTP, given that now it's possible to setting up again if you already had TOTP, in order to let users modify their authenticator app – given that now it's not possible for them to disable TOTP and set it up again with another authenticator app. So, basically, now instead of storing the new `otp_secret` in the user, we store it in the session until the process of set up is finished. This was because, as it was before, when users clicked on 'Edit' in the new two-factor methods lists page, but then went back without finishing the flow, their `otp_secret` had been changed therefore invalidating their previous authenticator app, making them unable to log in again using TOTP. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * refactor: fix eslint errors The PR build was failing given that linting returning some errors. This commit attempts to fix them. * refactor: normalize i18n translations The build was failing given that i18n translations files were not normalized. This commits fixes that. * refactor: avoid having the webauthn gem locked to a specific version * refactor: use symbols for routes without '/' * refactor: avoid sending webauthn disabled email when 2FA is disabled When an admins disable 2FA for users, we were sending two mails to them, one notifying that 2FA was disabled and the other to notify that WebAuthn was disabled. As the second one is redundant since the first email includes it, we can remove it and send just one email to users. * refactor: avoid creating new env variable for webauthn_origin config * refactor: improve flash error messages for webauthn pages Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
3 years ago
Add WebAuthn as an alternative 2FA method (#14466) * feat: add possibility of adding WebAuthn security keys to use as 2FA This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor to the Settings page for editing the 2FA methods – now it will list the methods that are available to the user (TOTP and WebAuthn) and from there they'll be able to add or remove any of them. Also, it's worth mentioning that for enabling WebAuthn it's required to have TOTP enabled, so the first time that you go to the 2FA Settings page, you'll be asked to set it up. This work was inspired by the one donde by Github in their platform, and despite it could be approached in different ways, we decided to go with this one given that we feel that this gives a great UX. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add request for WebAuthn as second factor at login if enabled This commits adds the feature for using WebAuthn as a second factor for login when enabled. If users have WebAuthn enabled, now a page requesting for the use of a WebAuthn credential for log in will appear, although a link redirecting to the old page for logging in using a two-factor code will also be present. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add possibility of deleting WebAuthn Credentials Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: disable WebAuthn when an Admin disables 2FA for a user Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: remove ability to disable TOTP leaving only WebAuthn as 2FA Following examples form other platforms like Github, we decided to make Webauthn 2FA secondary to 2FA with TOTP, so that we removed the possibility of removing TOTP authentication only, leaving users with just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA' in order to remove second factor auth. The reason for WebAuthn being secondary to TOPT is that in that way, users will still be able to log in using their code from their phone's application if they don't have their security keys with them – or maybe even lost them. * We had to change a little the flow for setting up TOTP, given that now it's possible to setting up again if you already had TOTP, in order to let users modify their authenticator app – given that now it's not possible for them to disable TOTP and set it up again with another authenticator app. So, basically, now instead of storing the new `otp_secret` in the user, we store it in the session until the process of set up is finished. This was because, as it was before, when users clicked on 'Edit' in the new two-factor methods lists page, but then went back without finishing the flow, their `otp_secret` had been changed therefore invalidating their previous authenticator app, making them unable to log in again using TOTP. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * refactor: fix eslint errors The PR build was failing given that linting returning some errors. This commit attempts to fix them. * refactor: normalize i18n translations The build was failing given that i18n translations files were not normalized. This commits fixes that. * refactor: avoid having the webauthn gem locked to a specific version * refactor: use symbols for routes without '/' * refactor: avoid sending webauthn disabled email when 2FA is disabled When an admins disable 2FA for users, we were sending two mails to them, one notifying that 2FA was disabled and the other to notify that WebAuthn was disabled. As the second one is redundant since the first email includes it, we can remove it and send just one email to users. * refactor: avoid creating new env variable for webauthn_origin config * refactor: improve flash error messages for webauthn pages Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
3 years ago
Add WebAuthn as an alternative 2FA method (#14466) * feat: add possibility of adding WebAuthn security keys to use as 2FA This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor to the Settings page for editing the 2FA methods – now it will list the methods that are available to the user (TOTP and WebAuthn) and from there they'll be able to add or remove any of them. Also, it's worth mentioning that for enabling WebAuthn it's required to have TOTP enabled, so the first time that you go to the 2FA Settings page, you'll be asked to set it up. This work was inspired by the one donde by Github in their platform, and despite it could be approached in different ways, we decided to go with this one given that we feel that this gives a great UX. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add request for WebAuthn as second factor at login if enabled This commits adds the feature for using WebAuthn as a second factor for login when enabled. If users have WebAuthn enabled, now a page requesting for the use of a WebAuthn credential for log in will appear, although a link redirecting to the old page for logging in using a two-factor code will also be present. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add possibility of deleting WebAuthn Credentials Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: disable WebAuthn when an Admin disables 2FA for a user Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: remove ability to disable TOTP leaving only WebAuthn as 2FA Following examples form other platforms like Github, we decided to make Webauthn 2FA secondary to 2FA with TOTP, so that we removed the possibility of removing TOTP authentication only, leaving users with just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA' in order to remove second factor auth. The reason for WebAuthn being secondary to TOPT is that in that way, users will still be able to log in using their code from their phone's application if they don't have their security keys with them – or maybe even lost them. * We had to change a little the flow for setting up TOTP, given that now it's possible to setting up again if you already had TOTP, in order to let users modify their authenticator app – given that now it's not possible for them to disable TOTP and set it up again with another authenticator app. So, basically, now instead of storing the new `otp_secret` in the user, we store it in the session until the process of set up is finished. This was because, as it was before, when users clicked on 'Edit' in the new two-factor methods lists page, but then went back without finishing the flow, their `otp_secret` had been changed therefore invalidating their previous authenticator app, making them unable to log in again using TOTP. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * refactor: fix eslint errors The PR build was failing given that linting returning some errors. This commit attempts to fix them. * refactor: normalize i18n translations The build was failing given that i18n translations files were not normalized. This commits fixes that. * refactor: avoid having the webauthn gem locked to a specific version * refactor: use symbols for routes without '/' * refactor: avoid sending webauthn disabled email when 2FA is disabled When an admins disable 2FA for users, we were sending two mails to them, one notifying that 2FA was disabled and the other to notify that WebAuthn was disabled. As the second one is redundant since the first email includes it, we can remove it and send just one email to users. * refactor: avoid creating new env variable for webauthn_origin config * refactor: improve flash error messages for webauthn pages Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
3 years ago
8 years ago
Add WebAuthn as an alternative 2FA method (#14466) * feat: add possibility of adding WebAuthn security keys to use as 2FA This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor to the Settings page for editing the 2FA methods – now it will list the methods that are available to the user (TOTP and WebAuthn) and from there they'll be able to add or remove any of them. Also, it's worth mentioning that for enabling WebAuthn it's required to have TOTP enabled, so the first time that you go to the 2FA Settings page, you'll be asked to set it up. This work was inspired by the one donde by Github in their platform, and despite it could be approached in different ways, we decided to go with this one given that we feel that this gives a great UX. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add request for WebAuthn as second factor at login if enabled This commits adds the feature for using WebAuthn as a second factor for login when enabled. If users have WebAuthn enabled, now a page requesting for the use of a WebAuthn credential for log in will appear, although a link redirecting to the old page for logging in using a two-factor code will also be present. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add possibility of deleting WebAuthn Credentials Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: disable WebAuthn when an Admin disables 2FA for a user Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: remove ability to disable TOTP leaving only WebAuthn as 2FA Following examples form other platforms like Github, we decided to make Webauthn 2FA secondary to 2FA with TOTP, so that we removed the possibility of removing TOTP authentication only, leaving users with just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA' in order to remove second factor auth. The reason for WebAuthn being secondary to TOPT is that in that way, users will still be able to log in using their code from their phone's application if they don't have their security keys with them – or maybe even lost them. * We had to change a little the flow for setting up TOTP, given that now it's possible to setting up again if you already had TOTP, in order to let users modify their authenticator app – given that now it's not possible for them to disable TOTP and set it up again with another authenticator app. So, basically, now instead of storing the new `otp_secret` in the user, we store it in the session until the process of set up is finished. This was because, as it was before, when users clicked on 'Edit' in the new two-factor methods lists page, but then went back without finishing the flow, their `otp_secret` had been changed therefore invalidating their previous authenticator app, making them unable to log in again using TOTP. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * refactor: fix eslint errors The PR build was failing given that linting returning some errors. This commit attempts to fix them. * refactor: normalize i18n translations The build was failing given that i18n translations files were not normalized. This commits fixes that. * refactor: avoid having the webauthn gem locked to a specific version * refactor: use symbols for routes without '/' * refactor: avoid sending webauthn disabled email when 2FA is disabled When an admins disable 2FA for users, we were sending two mails to them, one notifying that 2FA was disabled and the other to notify that WebAuthn was disabled. As the second one is redundant since the first email includes it, we can remove it and send just one email to users. * refactor: avoid creating new env variable for webauthn_origin config * refactor: improve flash error messages for webauthn pages Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
3 years ago
Add WebAuthn as an alternative 2FA method (#14466) * feat: add possibility of adding WebAuthn security keys to use as 2FA This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor to the Settings page for editing the 2FA methods – now it will list the methods that are available to the user (TOTP and WebAuthn) and from there they'll be able to add or remove any of them. Also, it's worth mentioning that for enabling WebAuthn it's required to have TOTP enabled, so the first time that you go to the 2FA Settings page, you'll be asked to set it up. This work was inspired by the one donde by Github in their platform, and despite it could be approached in different ways, we decided to go with this one given that we feel that this gives a great UX. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add request for WebAuthn as second factor at login if enabled This commits adds the feature for using WebAuthn as a second factor for login when enabled. If users have WebAuthn enabled, now a page requesting for the use of a WebAuthn credential for log in will appear, although a link redirecting to the old page for logging in using a two-factor code will also be present. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add possibility of deleting WebAuthn Credentials Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: disable WebAuthn when an Admin disables 2FA for a user Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: remove ability to disable TOTP leaving only WebAuthn as 2FA Following examples form other platforms like Github, we decided to make Webauthn 2FA secondary to 2FA with TOTP, so that we removed the possibility of removing TOTP authentication only, leaving users with just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA' in order to remove second factor auth. The reason for WebAuthn being secondary to TOPT is that in that way, users will still be able to log in using their code from their phone's application if they don't have their security keys with them – or maybe even lost them. * We had to change a little the flow for setting up TOTP, given that now it's possible to setting up again if you already had TOTP, in order to let users modify their authenticator app – given that now it's not possible for them to disable TOTP and set it up again with another authenticator app. So, basically, now instead of storing the new `otp_secret` in the user, we store it in the session until the process of set up is finished. This was because, as it was before, when users clicked on 'Edit' in the new two-factor methods lists page, but then went back without finishing the flow, their `otp_secret` had been changed therefore invalidating their previous authenticator app, making them unable to log in again using TOTP. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * refactor: fix eslint errors The PR build was failing given that linting returning some errors. This commit attempts to fix them. * refactor: normalize i18n translations The build was failing given that i18n translations files were not normalized. This commits fixes that. * refactor: avoid having the webauthn gem locked to a specific version * refactor: use symbols for routes without '/' * refactor: avoid sending webauthn disabled email when 2FA is disabled When an admins disable 2FA for users, we were sending two mails to them, one notifying that 2FA was disabled and the other to notify that WebAuthn was disabled. As the second one is redundant since the first email includes it, we can remove it and send just one email to users. * refactor: avoid creating new env variable for webauthn_origin config * refactor: improve flash error messages for webauthn pages Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
3 years ago
8 years ago
Version bumps for ruby and misc gems (#1159) * Update rspec-rails to version 3.5.2 * Update addressable to version 2.5.1 * Update autoprefixer-rails to version 6.7.7.1 * Update bullet to version 5.5.1 * Update domain_name to version 0.5.20170404 * Update letter_opener_web to version 1.3.1 * Upate redis-rails to version 5.0.2 * Update active_record_query_trace to version 1.5.4 * Update capistrano-rails to version 1.2.3 * Update dotenv-rails to version 2.2.0 * Update pg to version 0.20.0 * Update tilt to version 2.0.7 * Update warden to version 1.2.7 * Update tins to version 1.13.2 * Update terminal-table to version 1.7.3 * Update oj to version 2.18.5 * Update simplecov to version 0.14.1 * Update uglifier to version 3.1.13 * Update hashdiff to version 0.3.2 * Update webmock to version 2.3.2 * Update devise to version 4.2.1 * Use ruby version 2.4.1 * Update sass to version 3.4.23 * Update puma to version 3.8.2 * Update will_paginate to version 3.1.5 * Update font-awesome-rails to version 4.7.0.1 * Update fuubar to version 2.2.0 * Update pry-rails to version 0.3.6 * Update simple-navigation to version 4.0.5 * Update rubocop to version 0.48.1 * Update doorkeeper to version 4.2.5 * Update faker to version 1.7.3 * Update aws-sdk to version 2.9.5 * Update fabrication to version 2.16.1 * Update hamlit-rails to version 0.2.0 * Update http to version 2.2.1 * Update httplog to version 0.99.2 * Update sidekiq to version 4.2.10 * Update rspec-sidekiq to version 3.0.0 * Update pghero to version 1.6.4 * Update rack-cors to version 0.4.1 * Update i18n-tasks to version 0.9.13 * Update ruby-oembed to version 0.12.0 * Update jquery-rails to version 4.3.1 * Update simple_form to version 3.4.0 * Update react-rails to version 1.11.0 * Update aws-sdk to version 2.9.6 * Update sidekiq-unique-jobs to version 5.0.0 * Update uglifier to version 3.2.0
7 years ago
8 years ago
8 years ago
8 years ago
Web Push Notifications (#3243) * feat: Register push subscription * feat: Notify when mentioned * feat: Boost, favourite, reply, follow, follow request * feat: Notification interaction * feat: Handle change of public key * feat: Unsubscribe if things go wrong * feat: Do not send normal notifications if push is enabled * feat: Focus client if open * refactor: Move push logic to WebPushSubscription * feat: Better title and body * feat: Localize messages * chore: Fix lint errors * feat: Settings * refactor: Lazy load * fix: Check if push settings exist * feat: Device-based preferences * refactor: Simplify logic * refactor: Pull request feedback * refactor: Pull request feedback * refactor: Create /api/web/push_subscriptions endpoint * feat: Spec PushSubscriptionController * refactor: WebPushSubscription => Web::PushSubscription * feat: Spec Web::PushSubscription * feat: Display first media attachment * feat: Support direction * fix: Stuff broken while rebasing * refactor: Integration with session activations * refactor: Cleanup * refactor: Simplify implementation * feat: Set VAPID keys via environment * chore: Comments * fix: Crash when no alerts * fix: Set VAPID keys in testing environment * fix: Follow link * feat: Notification actions * fix: Delete previous subscription * chore: Temporary logs * refactor: Move migration to a later date * fix: Fetch the correct session activation and misc bugs * refactor: Move migration to a later date * fix: Remove follow request (no notifications) * feat: Send administrator contact to push service * feat: Set time-to-live * fix: Do not show sensitive images * fix: Reducer crash in error handling * feat: Add badge * chore: Fix lint error * fix: Checkbox label overlap * fix: Check for payload support * fix: Rename action "type" (crash in latest Chrome) * feat: Action to expand notification * fix: Lint errors * fix: Unescape notification body * fix: Do not allow boosting if the status is hidden * feat: Add VAPID keys to the production sample environment * fix: Strip HTML tags from status * refactor: Better error messages * refactor: Handle browser not implementing the VAPID protocol (Samsung Internet) * fix: Error when target_status is nil * fix: Handle lack of image * fix: Delete reference to invalid subscriptions * feat: Better error handling * fix: Unescape HTML characters after tags are striped * refactor: Simpify code * fix: Modify to work with #4091 * Sort strings alphabetically * i18n: Updated Polish translation it annoys me that it's not fully localized :P * refactor: Use current_session in PushSubscriptionController * fix: Rebase mistake * fix: Set cacheName to mastodon * refactor: Pull request feedback * refactor: Remove logging statements * chore(yarn): Fix conflicts with master * chore(yarn): Copy latest from master * chore(yarn): Readd offline-plugin * refactor: Use save! and update! * refactor: Send notifications async * fix: Allow retry when push fails * fix: Save track for failed pushes * fix: Minify sw.js * fix: Remove account_id from fabricator
6 years ago
8 years ago
8 years ago
8 years ago
Add WebAuthn as an alternative 2FA method (#14466) * feat: add possibility of adding WebAuthn security keys to use as 2FA This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor to the Settings page for editing the 2FA methods – now it will list the methods that are available to the user (TOTP and WebAuthn) and from there they'll be able to add or remove any of them. Also, it's worth mentioning that for enabling WebAuthn it's required to have TOTP enabled, so the first time that you go to the 2FA Settings page, you'll be asked to set it up. This work was inspired by the one donde by Github in their platform, and despite it could be approached in different ways, we decided to go with this one given that we feel that this gives a great UX. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add request for WebAuthn as second factor at login if enabled This commits adds the feature for using WebAuthn as a second factor for login when enabled. If users have WebAuthn enabled, now a page requesting for the use of a WebAuthn credential for log in will appear, although a link redirecting to the old page for logging in using a two-factor code will also be present. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add possibility of deleting WebAuthn Credentials Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: disable WebAuthn when an Admin disables 2FA for a user Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: remove ability to disable TOTP leaving only WebAuthn as 2FA Following examples form other platforms like Github, we decided to make Webauthn 2FA secondary to 2FA with TOTP, so that we removed the possibility of removing TOTP authentication only, leaving users with just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA' in order to remove second factor auth. The reason for WebAuthn being secondary to TOPT is that in that way, users will still be able to log in using their code from their phone's application if they don't have their security keys with them – or maybe even lost them. * We had to change a little the flow for setting up TOTP, given that now it's possible to setting up again if you already had TOTP, in order to let users modify their authenticator app – given that now it's not possible for them to disable TOTP and set it up again with another authenticator app. So, basically, now instead of storing the new `otp_secret` in the user, we store it in the session until the process of set up is finished. This was because, as it was before, when users clicked on 'Edit' in the new two-factor methods lists page, but then went back without finishing the flow, their `otp_secret` had been changed therefore invalidating their previous authenticator app, making them unable to log in again using TOTP. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * refactor: fix eslint errors The PR build was failing given that linting returning some errors. This commit attempts to fix them. * refactor: normalize i18n translations The build was failing given that i18n translations files were not normalized. This commits fixes that. * refactor: avoid having the webauthn gem locked to a specific version * refactor: use symbols for routes without '/' * refactor: avoid sending webauthn disabled email when 2FA is disabled When an admins disable 2FA for users, we were sending two mails to them, one notifying that 2FA was disabled and the other to notify that WebAuthn was disabled. As the second one is redundant since the first email includes it, we can remove it and send just one email to users. * refactor: avoid creating new env variable for webauthn_origin config * refactor: improve flash error messages for webauthn pages Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
3 years ago
Version bumps for ruby and misc gems (#1159) * Update rspec-rails to version 3.5.2 * Update addressable to version 2.5.1 * Update autoprefixer-rails to version 6.7.7.1 * Update bullet to version 5.5.1 * Update domain_name to version 0.5.20170404 * Update letter_opener_web to version 1.3.1 * Upate redis-rails to version 5.0.2 * Update active_record_query_trace to version 1.5.4 * Update capistrano-rails to version 1.2.3 * Update dotenv-rails to version 2.2.0 * Update pg to version 0.20.0 * Update tilt to version 2.0.7 * Update warden to version 1.2.7 * Update tins to version 1.13.2 * Update terminal-table to version 1.7.3 * Update oj to version 2.18.5 * Update simplecov to version 0.14.1 * Update uglifier to version 3.1.13 * Update hashdiff to version 0.3.2 * Update webmock to version 2.3.2 * Update devise to version 4.2.1 * Use ruby version 2.4.1 * Update sass to version 3.4.23 * Update puma to version 3.8.2 * Update will_paginate to version 3.1.5 * Update font-awesome-rails to version 4.7.0.1 * Update fuubar to version 2.2.0 * Update pry-rails to version 0.3.6 * Update simple-navigation to version 4.0.5 * Update rubocop to version 0.48.1 * Update doorkeeper to version 4.2.5 * Update faker to version 1.7.3 * Update aws-sdk to version 2.9.5 * Update fabrication to version 2.16.1 * Update hamlit-rails to version 0.2.0 * Update http to version 2.2.1 * Update httplog to version 0.99.2 * Update sidekiq to version 4.2.10 * Update rspec-sidekiq to version 3.0.0 * Update pghero to version 1.6.4 * Update rack-cors to version 0.4.1 * Update i18n-tasks to version 0.9.13 * Update ruby-oembed to version 0.12.0 * Update jquery-rails to version 4.3.1 * Update simple_form to version 3.4.0 * Update react-rails to version 1.11.0 * Update aws-sdk to version 2.9.6 * Update sidekiq-unique-jobs to version 5.0.0 * Update uglifier to version 3.2.0
7 years ago
Version bumps for ruby and misc gems (#1159) * Update rspec-rails to version 3.5.2 * Update addressable to version 2.5.1 * Update autoprefixer-rails to version 6.7.7.1 * Update bullet to version 5.5.1 * Update domain_name to version 0.5.20170404 * Update letter_opener_web to version 1.3.1 * Upate redis-rails to version 5.0.2 * Update active_record_query_trace to version 1.5.4 * Update capistrano-rails to version 1.2.3 * Update dotenv-rails to version 2.2.0 * Update pg to version 0.20.0 * Update tilt to version 2.0.7 * Update warden to version 1.2.7 * Update tins to version 1.13.2 * Update terminal-table to version 1.7.3 * Update oj to version 2.18.5 * Update simplecov to version 0.14.1 * Update uglifier to version 3.1.13 * Update hashdiff to version 0.3.2 * Update webmock to version 2.3.2 * Update devise to version 4.2.1 * Use ruby version 2.4.1 * Update sass to version 3.4.23 * Update puma to version 3.8.2 * Update will_paginate to version 3.1.5 * Update font-awesome-rails to version 4.7.0.1 * Update fuubar to version 2.2.0 * Update pry-rails to version 0.3.6 * Update simple-navigation to version 4.0.5 * Update rubocop to version 0.48.1 * Update doorkeeper to version 4.2.5 * Update faker to version 1.7.3 * Update aws-sdk to version 2.9.5 * Update fabrication to version 2.16.1 * Update hamlit-rails to version 0.2.0 * Update http to version 2.2.1 * Update httplog to version 0.99.2 * Update sidekiq to version 4.2.10 * Update rspec-sidekiq to version 3.0.0 * Update pghero to version 1.6.4 * Update rack-cors to version 0.4.1 * Update i18n-tasks to version 0.9.13 * Update ruby-oembed to version 0.12.0 * Update jquery-rails to version 4.3.1 * Update simple_form to version 3.4.0 * Update react-rails to version 1.11.0 * Update aws-sdk to version 2.9.6 * Update sidekiq-unique-jobs to version 5.0.0 * Update uglifier to version 3.2.0
7 years ago
8 years ago
8 years ago
Version bumps for ruby and misc gems (#1159) * Update rspec-rails to version 3.5.2 * Update addressable to version 2.5.1 * Update autoprefixer-rails to version 6.7.7.1 * Update bullet to version 5.5.1 * Update domain_name to version 0.5.20170404 * Update letter_opener_web to version 1.3.1 * Upate redis-rails to version 5.0.2 * Update active_record_query_trace to version 1.5.4 * Update capistrano-rails to version 1.2.3 * Update dotenv-rails to version 2.2.0 * Update pg to version 0.20.0 * Update tilt to version 2.0.7 * Update warden to version 1.2.7 * Update tins to version 1.13.2 * Update terminal-table to version 1.7.3 * Update oj to version 2.18.5 * Update simplecov to version 0.14.1 * Update uglifier to version 3.1.13 * Update hashdiff to version 0.3.2 * Update webmock to version 2.3.2 * Update devise to version 4.2.1 * Use ruby version 2.4.1 * Update sass to version 3.4.23 * Update puma to version 3.8.2 * Update will_paginate to version 3.1.5 * Update font-awesome-rails to version 4.7.0.1 * Update fuubar to version 2.2.0 * Update pry-rails to version 0.3.6 * Update simple-navigation to version 4.0.5 * Update rubocop to version 0.48.1 * Update doorkeeper to version 4.2.5 * Update faker to version 1.7.3 * Update aws-sdk to version 2.9.5 * Update fabrication to version 2.16.1 * Update hamlit-rails to version 0.2.0 * Update http to version 2.2.1 * Update httplog to version 0.99.2 * Update sidekiq to version 4.2.10 * Update rspec-sidekiq to version 3.0.0 * Update pghero to version 1.6.4 * Update rack-cors to version 0.4.1 * Update i18n-tasks to version 0.9.13 * Update ruby-oembed to version 0.12.0 * Update jquery-rails to version 4.3.1 * Update simple_form to version 3.4.0 * Update react-rails to version 1.11.0 * Update aws-sdk to version 2.9.6 * Update sidekiq-unique-jobs to version 5.0.0 * Update uglifier to version 3.2.0
7 years ago
8 years ago
Add WebAuthn as an alternative 2FA method (#14466) * feat: add possibility of adding WebAuthn security keys to use as 2FA This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor to the Settings page for editing the 2FA methods – now it will list the methods that are available to the user (TOTP and WebAuthn) and from there they'll be able to add or remove any of them. Also, it's worth mentioning that for enabling WebAuthn it's required to have TOTP enabled, so the first time that you go to the 2FA Settings page, you'll be asked to set it up. This work was inspired by the one donde by Github in their platform, and despite it could be approached in different ways, we decided to go with this one given that we feel that this gives a great UX. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add request for WebAuthn as second factor at login if enabled This commits adds the feature for using WebAuthn as a second factor for login when enabled. If users have WebAuthn enabled, now a page requesting for the use of a WebAuthn credential for log in will appear, although a link redirecting to the old page for logging in using a two-factor code will also be present. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add possibility of deleting WebAuthn Credentials Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: disable WebAuthn when an Admin disables 2FA for a user Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: remove ability to disable TOTP leaving only WebAuthn as 2FA Following examples form other platforms like Github, we decided to make Webauthn 2FA secondary to 2FA with TOTP, so that we removed the possibility of removing TOTP authentication only, leaving users with just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA' in order to remove second factor auth. The reason for WebAuthn being secondary to TOPT is that in that way, users will still be able to log in using their code from their phone's application if they don't have their security keys with them – or maybe even lost them. * We had to change a little the flow for setting up TOTP, given that now it's possible to setting up again if you already had TOTP, in order to let users modify their authenticator app – given that now it's not possible for them to disable TOTP and set it up again with another authenticator app. So, basically, now instead of storing the new `otp_secret` in the user, we store it in the session until the process of set up is finished. This was because, as it was before, when users clicked on 'Edit' in the new two-factor methods lists page, but then went back without finishing the flow, their `otp_secret` had been changed therefore invalidating their previous authenticator app, making them unable to log in again using TOTP. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * refactor: fix eslint errors The PR build was failing given that linting returning some errors. This commit attempts to fix them. * refactor: normalize i18n translations The build was failing given that i18n translations files were not normalized. This commits fixes that. * refactor: avoid having the webauthn gem locked to a specific version * refactor: use symbols for routes without '/' * refactor: avoid sending webauthn disabled email when 2FA is disabled When an admins disable 2FA for users, we were sending two mails to them, one notifying that 2FA was disabled and the other to notify that WebAuthn was disabled. As the second one is redundant since the first email includes it, we can remove it and send just one email to users. * refactor: avoid creating new env variable for webauthn_origin config * refactor: improve flash error messages for webauthn pages Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
3 years ago
Add WebAuthn as an alternative 2FA method (#14466) * feat: add possibility of adding WebAuthn security keys to use as 2FA This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor to the Settings page for editing the 2FA methods – now it will list the methods that are available to the user (TOTP and WebAuthn) and from there they'll be able to add or remove any of them. Also, it's worth mentioning that for enabling WebAuthn it's required to have TOTP enabled, so the first time that you go to the 2FA Settings page, you'll be asked to set it up. This work was inspired by the one donde by Github in their platform, and despite it could be approached in different ways, we decided to go with this one given that we feel that this gives a great UX. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add request for WebAuthn as second factor at login if enabled This commits adds the feature for using WebAuthn as a second factor for login when enabled. If users have WebAuthn enabled, now a page requesting for the use of a WebAuthn credential for log in will appear, although a link redirecting to the old page for logging in using a two-factor code will also be present. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add possibility of deleting WebAuthn Credentials Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: disable WebAuthn when an Admin disables 2FA for a user Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: remove ability to disable TOTP leaving only WebAuthn as 2FA Following examples form other platforms like Github, we decided to make Webauthn 2FA secondary to 2FA with TOTP, so that we removed the possibility of removing TOTP authentication only, leaving users with just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA' in order to remove second factor auth. The reason for WebAuthn being secondary to TOPT is that in that way, users will still be able to log in using their code from their phone's application if they don't have their security keys with them – or maybe even lost them. * We had to change a little the flow for setting up TOTP, given that now it's possible to setting up again if you already had TOTP, in order to let users modify their authenticator app – given that now it's not possible for them to disable TOTP and set it up again with another authenticator app. So, basically, now instead of storing the new `otp_secret` in the user, we store it in the session until the process of set up is finished. This was because, as it was before, when users clicked on 'Edit' in the new two-factor methods lists page, but then went back without finishing the flow, their `otp_secret` had been changed therefore invalidating their previous authenticator app, making them unable to log in again using TOTP. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * refactor: fix eslint errors The PR build was failing given that linting returning some errors. This commit attempts to fix them. * refactor: normalize i18n translations The build was failing given that i18n translations files were not normalized. This commits fixes that. * refactor: avoid having the webauthn gem locked to a specific version * refactor: use symbols for routes without '/' * refactor: avoid sending webauthn disabled email when 2FA is disabled When an admins disable 2FA for users, we were sending two mails to them, one notifying that 2FA was disabled and the other to notify that WebAuthn was disabled. As the second one is redundant since the first email includes it, we can remove it and send just one email to users. * refactor: avoid creating new env variable for webauthn_origin config * refactor: improve flash error messages for webauthn pages Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
3 years ago
8 years ago
8 years ago
Add WebAuthn as an alternative 2FA method (#14466) * feat: add possibility of adding WebAuthn security keys to use as 2FA This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor to the Settings page for editing the 2FA methods – now it will list the methods that are available to the user (TOTP and WebAuthn) and from there they'll be able to add or remove any of them. Also, it's worth mentioning that for enabling WebAuthn it's required to have TOTP enabled, so the first time that you go to the 2FA Settings page, you'll be asked to set it up. This work was inspired by the one donde by Github in their platform, and despite it could be approached in different ways, we decided to go with this one given that we feel that this gives a great UX. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add request for WebAuthn as second factor at login if enabled This commits adds the feature for using WebAuthn as a second factor for login when enabled. If users have WebAuthn enabled, now a page requesting for the use of a WebAuthn credential for log in will appear, although a link redirecting to the old page for logging in using a two-factor code will also be present. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add possibility of deleting WebAuthn Credentials Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: disable WebAuthn when an Admin disables 2FA for a user Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: remove ability to disable TOTP leaving only WebAuthn as 2FA Following examples form other platforms like Github, we decided to make Webauthn 2FA secondary to 2FA with TOTP, so that we removed the possibility of removing TOTP authentication only, leaving users with just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA' in order to remove second factor auth. The reason for WebAuthn being secondary to TOPT is that in that way, users will still be able to log in using their code from their phone's application if they don't have their security keys with them – or maybe even lost them. * We had to change a little the flow for setting up TOTP, given that now it's possible to setting up again if you already had TOTP, in order to let users modify their authenticator app – given that now it's not possible for them to disable TOTP and set it up again with another authenticator app. So, basically, now instead of storing the new `otp_secret` in the user, we store it in the session until the process of set up is finished. This was because, as it was before, when users clicked on 'Edit' in the new two-factor methods lists page, but then went back without finishing the flow, their `otp_secret` had been changed therefore invalidating their previous authenticator app, making them unable to log in again using TOTP. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * refactor: fix eslint errors The PR build was failing given that linting returning some errors. This commit attempts to fix them. * refactor: normalize i18n translations The build was failing given that i18n translations files were not normalized. This commits fixes that. * refactor: avoid having the webauthn gem locked to a specific version * refactor: use symbols for routes without '/' * refactor: avoid sending webauthn disabled email when 2FA is disabled When an admins disable 2FA for users, we were sending two mails to them, one notifying that 2FA was disabled and the other to notify that WebAuthn was disabled. As the second one is redundant since the first email includes it, we can remove it and send just one email to users. * refactor: avoid creating new env variable for webauthn_origin config * refactor: improve flash error messages for webauthn pages Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
3 years ago
8 years ago
8 years ago
Add WebAuthn as an alternative 2FA method (#14466) * feat: add possibility of adding WebAuthn security keys to use as 2FA This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor to the Settings page for editing the 2FA methods – now it will list the methods that are available to the user (TOTP and WebAuthn) and from there they'll be able to add or remove any of them. Also, it's worth mentioning that for enabling WebAuthn it's required to have TOTP enabled, so the first time that you go to the 2FA Settings page, you'll be asked to set it up. This work was inspired by the one donde by Github in their platform, and despite it could be approached in different ways, we decided to go with this one given that we feel that this gives a great UX. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add request for WebAuthn as second factor at login if enabled This commits adds the feature for using WebAuthn as a second factor for login when enabled. If users have WebAuthn enabled, now a page requesting for the use of a WebAuthn credential for log in will appear, although a link redirecting to the old page for logging in using a two-factor code will also be present. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add possibility of deleting WebAuthn Credentials Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: disable WebAuthn when an Admin disables 2FA for a user Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: remove ability to disable TOTP leaving only WebAuthn as 2FA Following examples form other platforms like Github, we decided to make Webauthn 2FA secondary to 2FA with TOTP, so that we removed the possibility of removing TOTP authentication only, leaving users with just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA' in order to remove second factor auth. The reason for WebAuthn being secondary to TOPT is that in that way, users will still be able to log in using their code from their phone's application if they don't have their security keys with them – or maybe even lost them. * We had to change a little the flow for setting up TOTP, given that now it's possible to setting up again if you already had TOTP, in order to let users modify their authenticator app – given that now it's not possible for them to disable TOTP and set it up again with another authenticator app. So, basically, now instead of storing the new `otp_secret` in the user, we store it in the session until the process of set up is finished. This was because, as it was before, when users clicked on 'Edit' in the new two-factor methods lists page, but then went back without finishing the flow, their `otp_secret` had been changed therefore invalidating their previous authenticator app, making them unable to log in again using TOTP. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * refactor: fix eslint errors The PR build was failing given that linting returning some errors. This commit attempts to fix them. * refactor: normalize i18n translations The build was failing given that i18n translations files were not normalized. This commits fixes that. * refactor: avoid having the webauthn gem locked to a specific version * refactor: use symbols for routes without '/' * refactor: avoid sending webauthn disabled email when 2FA is disabled When an admins disable 2FA for users, we were sending two mails to them, one notifying that 2FA was disabled and the other to notify that WebAuthn was disabled. As the second one is redundant since the first email includes it, we can remove it and send just one email to users. * refactor: avoid creating new env variable for webauthn_origin config * refactor: improve flash error messages for webauthn pages Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
3 years ago
Web Push Notifications (#3243) * feat: Register push subscription * feat: Notify when mentioned * feat: Boost, favourite, reply, follow, follow request * feat: Notification interaction * feat: Handle change of public key * feat: Unsubscribe if things go wrong * feat: Do not send normal notifications if push is enabled * feat: Focus client if open * refactor: Move push logic to WebPushSubscription * feat: Better title and body * feat: Localize messages * chore: Fix lint errors * feat: Settings * refactor: Lazy load * fix: Check if push settings exist * feat: Device-based preferences * refactor: Simplify logic * refactor: Pull request feedback * refactor: Pull request feedback * refactor: Create /api/web/push_subscriptions endpoint * feat: Spec PushSubscriptionController * refactor: WebPushSubscription => Web::PushSubscription * feat: Spec Web::PushSubscription * feat: Display first media attachment * feat: Support direction * fix: Stuff broken while rebasing * refactor: Integration with session activations * refactor: Cleanup * refactor: Simplify implementation * feat: Set VAPID keys via environment * chore: Comments * fix: Crash when no alerts * fix: Set VAPID keys in testing environment * fix: Follow link * feat: Notification actions * fix: Delete previous subscription * chore: Temporary logs * refactor: Move migration to a later date * fix: Fetch the correct session activation and misc bugs * refactor: Move migration to a later date * fix: Remove follow request (no notifications) * feat: Send administrator contact to push service * feat: Set time-to-live * fix: Do not show sensitive images * fix: Reducer crash in error handling * feat: Add badge * chore: Fix lint error * fix: Checkbox label overlap * fix: Check for payload support * fix: Rename action "type" (crash in latest Chrome) * feat: Action to expand notification * fix: Lint errors * fix: Unescape notification body * fix: Do not allow boosting if the status is hidden * feat: Add VAPID keys to the production sample environment * fix: Strip HTML tags from status * refactor: Better error messages * refactor: Handle browser not implementing the VAPID protocol (Samsung Internet) * fix: Error when target_status is nil * fix: Handle lack of image * fix: Delete reference to invalid subscriptions * feat: Better error handling * fix: Unescape HTML characters after tags are striped * refactor: Simpify code * fix: Modify to work with #4091 * Sort strings alphabetically * i18n: Updated Polish translation it annoys me that it's not fully localized :P * refactor: Use current_session in PushSubscriptionController * fix: Rebase mistake * fix: Set cacheName to mastodon * refactor: Pull request feedback * refactor: Remove logging statements * chore(yarn): Fix conflicts with master * chore(yarn): Copy latest from master * chore(yarn): Readd offline-plugin * refactor: Use save! and update! * refactor: Send notifications async * fix: Allow retry when push fails * fix: Save track for failed pushes * fix: Minify sw.js * fix: Remove account_id from fabricator
6 years ago
8 years ago
Add WebAuthn as an alternative 2FA method (#14466) * feat: add possibility of adding WebAuthn security keys to use as 2FA This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor to the Settings page for editing the 2FA methods – now it will list the methods that are available to the user (TOTP and WebAuthn) and from there they'll be able to add or remove any of them. Also, it's worth mentioning that for enabling WebAuthn it's required to have TOTP enabled, so the first time that you go to the 2FA Settings page, you'll be asked to set it up. This work was inspired by the one donde by Github in their platform, and despite it could be approached in different ways, we decided to go with this one given that we feel that this gives a great UX. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add request for WebAuthn as second factor at login if enabled This commits adds the feature for using WebAuthn as a second factor for login when enabled. If users have WebAuthn enabled, now a page requesting for the use of a WebAuthn credential for log in will appear, although a link redirecting to the old page for logging in using a two-factor code will also be present. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: add possibility of deleting WebAuthn Credentials Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: disable WebAuthn when an Admin disables 2FA for a user Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * feat: remove ability to disable TOTP leaving only WebAuthn as 2FA Following examples form other platforms like Github, we decided to make Webauthn 2FA secondary to 2FA with TOTP, so that we removed the possibility of removing TOTP authentication only, leaving users with just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA' in order to remove second factor auth. The reason for WebAuthn being secondary to TOPT is that in that way, users will still be able to log in using their code from their phone's application if they don't have their security keys with them – or maybe even lost them. * We had to change a little the flow for setting up TOTP, given that now it's possible to setting up again if you already had TOTP, in order to let users modify their authenticator app – given that now it's not possible for them to disable TOTP and set it up again with another authenticator app. So, basically, now instead of storing the new `otp_secret` in the user, we store it in the session until the process of set up is finished. This was because, as it was before, when users clicked on 'Edit' in the new two-factor methods lists page, but then went back without finishing the flow, their `otp_secret` had been changed therefore invalidating their previous authenticator app, making them unable to log in again using TOTP. Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> * refactor: fix eslint errors The PR build was failing given that linting returning some errors. This commit attempts to fix them. * refactor: normalize i18n translations The build was failing given that i18n translations files were not normalized. This commits fixes that. * refactor: avoid having the webauthn gem locked to a specific version * refactor: use symbols for routes without '/' * refactor: avoid sending webauthn disabled email when 2FA is disabled When an admins disable 2FA for users, we were sending two mails to them, one notifying that 2FA was disabled and the other to notify that WebAuthn was disabled. As the second one is redundant since the first email includes it, we can remove it and send just one email to users. * refactor: avoid creating new env variable for webauthn_origin config * refactor: improve flash error messages for webauthn pages Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
3 years ago
Web Push Notifications (#3243) * feat: Register push subscription * feat: Notify when mentioned * feat: Boost, favourite, reply, follow, follow request * feat: Notification interaction * feat: Handle change of public key * feat: Unsubscribe if things go wrong * feat: Do not send normal notifications if push is enabled * feat: Focus client if open * refactor: Move push logic to WebPushSubscription * feat: Better title and body * feat: Localize messages * chore: Fix lint errors * feat: Settings * refactor: Lazy load * fix: Check if push settings exist * feat: Device-based preferences * refactor: Simplify logic * refactor: Pull request feedback * refactor: Pull request feedback * refactor: Create /api/web/push_subscriptions endpoint * feat: Spec PushSubscriptionController * refactor: WebPushSubscription => Web::PushSubscription * feat: Spec Web::PushSubscription * feat: Display first media attachment * feat: Support direction * fix: Stuff broken while rebasing * refactor: Integration with session activations * refactor: Cleanup * refactor: Simplify implementation * feat: Set VAPID keys via environment * chore: Comments * fix: Crash when no alerts * fix: Set VAPID keys in testing environment * fix: Follow link * feat: Notification actions * fix: Delete previous subscription * chore: Temporary logs * refactor: Move migration to a later date * fix: Fetch the correct session activation and misc bugs * refactor: Move migration to a later date * fix: Remove follow request (no notifications) * feat: Send administrator contact to push service * feat: Set time-to-live * fix: Do not show sensitive images * fix: Reducer crash in error handling * feat: Add badge * chore: Fix lint error * fix: Checkbox label overlap * fix: Check for payload support * fix: Rename action "type" (crash in latest Chrome) * feat: Action to expand notification * fix: Lint errors * fix: Unescape notification body * fix: Do not allow boosting if the status is hidden * feat: Add VAPID keys to the production sample environment * fix: Strip HTML tags from status * refactor: Better error messages * refactor: Handle browser not implementing the VAPID protocol (Samsung Internet) * fix: Error when target_status is nil * fix: Handle lack of image * fix: Delete reference to invalid subscriptions * feat: Better error handling * fix: Unescape HTML characters after tags are striped * refactor: Simpify code * fix: Modify to work with #4091 * Sort strings alphabetically * i18n: Updated Polish translation it annoys me that it's not fully localized :P * refactor: Use current_session in PushSubscriptionController * fix: Rebase mistake * fix: Set cacheName to mastodon * refactor: Pull request feedback * refactor: Remove logging statements * chore(yarn): Fix conflicts with master * chore(yarn): Copy latest from master * chore(yarn): Readd offline-plugin * refactor: Use save! and update! * refactor: Send notifications async * fix: Allow retry when push fails * fix: Save track for failed pushes * fix: Minify sw.js * fix: Remove account_id from fabricator
6 years ago
  1. GIT
  2. remote: https://github.com/ianheggie/health_check
  3. revision: 0b799ead604f900ed50685e9b2d469cd2befba5b
  4. ref: 0b799ead604f900ed50685e9b2d469cd2befba5b
  5. specs:
  6. health_check (4.0.0.pre)
  7. rails (>= 4.0)
  8. GIT
  9. remote: https://github.com/witgo/nilsimsa
  10. revision: fd184883048b922b176939f851338d0a4971a532
  11. ref: fd184883048b922b176939f851338d0a4971a532
  12. specs:
  13. nilsimsa (1.1.2)
  14. GEM
  15. remote: https://rubygems.org/
  16. specs:
  17. actioncable (5.2.4.4)
  18. actionpack (= 5.2.4.4)
  19. nio4r (~> 2.0)
  20. websocket-driver (>= 0.6.1)
  21. actionmailer (5.2.4.4)
  22. actionpack (= 5.2.4.4)
  23. actionview (= 5.2.4.4)
  24. activejob (= 5.2.4.4)
  25. mail (~> 2.5, >= 2.5.4)
  26. rails-dom-testing (~> 2.0)
  27. actionpack (5.2.4.4)
  28. actionview (= 5.2.4.4)
  29. activesupport (= 5.2.4.4)
  30. rack (~> 2.0, >= 2.0.8)
  31. rack-test (>= 0.6.3)
  32. rails-dom-testing (~> 2.0)
  33. rails-html-sanitizer (~> 1.0, >= 1.0.2)
  34. actionview (5.2.4.4)
  35. activesupport (= 5.2.4.4)
  36. builder (~> 3.1)
  37. erubi (~> 1.4)
  38. rails-dom-testing (~> 2.0)
  39. rails-html-sanitizer (~> 1.0, >= 1.0.3)
  40. active_model_serializers (0.10.10)
  41. actionpack (>= 4.1, < 6.1)
  42. activemodel (>= 4.1, < 6.1)
  43. case_transform (>= 0.2)
  44. jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
  45. active_record_query_trace (1.7)
  46. activejob (5.2.4.4)
  47. activesupport (= 5.2.4.4)
  48. globalid (>= 0.3.6)
  49. activemodel (5.2.4.4)
  50. activesupport (= 5.2.4.4)
  51. activerecord (5.2.4.4)
  52. activemodel (= 5.2.4.4)
  53. activesupport (= 5.2.4.4)
  54. arel (>= 9.0)
  55. activestorage (5.2.4.4)
  56. actionpack (= 5.2.4.4)
  57. activerecord (= 5.2.4.4)
  58. marcel (~> 0.3.1)
  59. activesupport (5.2.4.4)
  60. concurrent-ruby (~> 1.0, >= 1.0.2)
  61. i18n (>= 0.7, < 2)
  62. minitest (~> 5.1)
  63. tzinfo (~> 1.1)
  64. addressable (2.7.0)
  65. public_suffix (>= 2.0.2, < 5.0)
  66. airbrussh (1.4.0)
  67. sshkit (>= 1.6.1, != 1.7.0)
  68. android_key_attestation (0.3.0)
  69. annotate (3.1.1)
  70. activerecord (>= 3.2, < 7.0)
  71. rake (>= 10.4, < 14.0)
  72. arel (9.0.0)
  73. ast (2.4.1)
  74. attr_encrypted (3.1.0)
  75. encryptor (~> 3.0.0)
  76. av (0.9.0)
  77. cocaine (~> 0.5.3)
  78. awrence (1.1.1)
  79. aws-eventstream (1.1.0)
  80. aws-partitions (1.373.0)
  81. aws-sdk-core (3.107.0)
  82. aws-eventstream (~> 1, >= 1.0.2)
  83. aws-partitions (~> 1, >= 1.239.0)
  84. aws-sigv4 (~> 1.1)
  85. jmespath (~> 1.0)
  86. aws-sdk-kms (1.38.0)
  87. aws-sdk-core (~> 3, >= 3.99.0)
  88. aws-sigv4 (~> 1.1)
  89. aws-sdk-s3 (1.81.0)
  90. aws-sdk-core (~> 3, >= 3.104.3)
  91. aws-sdk-kms (~> 1)
  92. aws-sigv4 (~> 1.1)
  93. aws-sigv4 (1.2.2)
  94. aws-eventstream (~> 1, >= 1.0.2)
  95. bcrypt (3.1.16)
  96. better_errors (2.8.1)
  97. coderay (>= 1.0.0)
  98. erubi (>= 1.0.0)
  99. rack (>= 0.9.0)
  100. bindata (2.4.8)
  101. binding_of_caller (0.8.0)
  102. debug_inspector (>= 0.0.1)
  103. blurhash (0.1.4)
  104. ffi (~> 1.10.0)
  105. bootsnap (1.4.8)
  106. msgpack (~> 1.0)
  107. brakeman (4.9.1)
  108. browser (4.2.0)
  109. builder (3.2.4)
  110. bullet (6.1.0)
  111. activesupport (>= 3.0.0)
  112. uniform_notifier (~> 1.11)
  113. bundler-audit (0.7.0.1)
  114. bundler (>= 1.2.0, < 3)
  115. thor (>= 0.18, < 2)
  116. byebug (11.1.3)
  117. capistrano (3.14.1)
  118. airbrussh (>= 1.0.0)
  119. i18n
  120. rake (>= 10.0.0)
  121. sshkit (>= 1.9.0)
  122. capistrano-bundler (2.0.1)
  123. capistrano (~> 3.1)
  124. capistrano-rails (1.6.1)
  125. capistrano (~> 3.1)
  126. capistrano-bundler (>= 1.1, < 3)
  127. capistrano-rbenv (2.2.0)
  128. capistrano (~> 3.1)
  129. sshkit (~> 1.3)
  130. capistrano-yarn (2.0.2)
  131. capistrano (~> 3.0)
  132. capybara (3.33.0)
  133. addressable
  134. mini_mime (>= 0.1.3)
  135. nokogiri (~> 1.8)
  136. rack (>= 1.6.0)
  137. rack-test (>= 0.6.3)
  138. regexp_parser (~> 1.5)
  139. xpath (~> 3.2)
  140. case_transform (0.2)
  141. activesupport
  142. cbor (0.5.9.6)
  143. charlock_holmes (0.7.7)
  144. chewy (5.1.0)
  145. activesupport (>= 4.0)
  146. elasticsearch (>= 2.0.0)
  147. elasticsearch-dsl
  148. chunky_png (1.3.12)
  149. cld3 (3.3.0)
  150. ffi (>= 1.1.0, < 1.12.0)
  151. climate_control (0.2.0)
  152. cocaine (0.5.8)
  153. climate_control (>= 0.0.3, < 1.0)
  154. coderay (1.1.3)
  155. color_diff (0.1)
  156. concurrent-ruby (1.1.7)
  157. connection_pool (2.2.3)
  158. cose (1.0.0)
  159. cbor (~> 0.5.9)
  160. openssl-signature_algorithm (~> 0.4.0)
  161. crack (0.4.4)
  162. crass (1.0.6)
  163. css_parser (1.7.1)
  164. addressable
  165. debug_inspector (0.0.3)
  166. devise (4.7.3)
  167. bcrypt (~> 3.0)
  168. orm_adapter (~> 0.1)
  169. railties (>= 4.1.0)
  170. responders
  171. warden (~> 1.2.3)
  172. devise-two-factor (3.1.0)
  173. activesupport (< 6.1)
  174. attr_encrypted (>= 1.3, < 4, != 2)
  175. devise (~> 4.0)
  176. railties (< 6.1)
  177. rotp (~> 2.0)
  178. devise_pam_authenticatable2 (9.2.0)
  179. devise (>= 4.0.0)
  180. rpam2 (~> 4.0)
  181. diff-lcs (1.4.4)
  182. discard (1.2.0)
  183. activerecord (>= 4.2, < 7)
  184. docile (1.3.2)
  185. domain_name (0.5.20190701)
  186. unf (>= 0.0.5, < 1.0.0)
  187. doorkeeper (5.4.0)
  188. railties (>= 5)
  189. dotenv (2.7.6)
  190. dotenv-rails (2.7.6)
  191. dotenv (= 2.7.6)
  192. railties (>= 3.2)
  193. e2mmap (0.1.0)
  194. ed25519 (1.2.4)
  195. elasticsearch (7.9.0)
  196. elasticsearch-api (= 7.9.0)
  197. elasticsearch-transport (= 7.9.0)
  198. elasticsearch-api (7.9.0)
  199. multi_json
  200. elasticsearch-dsl (0.1.9)
  201. elasticsearch-transport (7.9.0)
  202. faraday (~> 1)
  203. multi_json
  204. encryptor (3.0.0)
  205. erubi (1.9.0)
  206. et-orbi (1.2.4)
  207. tzinfo
  208. excon (0.76.0)
  209. fabrication (2.21.1)
  210. faker (2.14.0)
  211. i18n (>= 1.6, < 2)
  212. faraday (1.0.1)
  213. multipart-post (>= 1.2, < 3)
  214. fast_blank (1.0.0)
  215. fastimage (2.2.0)
  216. ffi (1.10.0)
  217. ffi-compiler (1.0.1)
  218. ffi (>= 1.0.0)
  219. rake
  220. fog-core (2.1.0)
  221. builder
  222. excon (~> 0.58)
  223. formatador (~> 0.2)
  224. mime-types
  225. fog-json (1.2.0)
  226. fog-core
  227. multi_json (~> 1.10)
  228. fog-openstack (0.3.10)
  229. fog-core (>= 1.45, <= 2.1.0)
  230. fog-json (>= 1.0)
  231. ipaddress (>= 0.8)
  232. formatador (0.2.5)
  233. fugit (1.3.9)
  234. et-orbi (~> 1.1, >= 1.1.8)
  235. raabro (~> 1.3)
  236. fuubar (2.5.0)
  237. rspec-core (~> 3.0)
  238. ruby-progressbar (~> 1.4)
  239. globalid (0.4.2)
  240. activesupport (>= 4.2.0)
  241. goldfinger (2.1.1)
  242. addressable (~> 2.5)
  243. http (~> 4.0)
  244. nokogiri (~> 1.8)
  245. oj (~> 3.0)
  246. hamlit (2.11.1)
  247. temple (>= 0.8.2)
  248. thor
  249. tilt
  250. hamlit-rails (0.2.3)
  251. actionpack (>= 4.0.1)
  252. activesupport (>= 4.0.1)
  253. hamlit (>= 1.2.0)
  254. railties (>= 4.0.1)
  255. hamster (3.0.0)
  256. concurrent-ruby (~> 1.0)
  257. hashdiff (1.0.1)
  258. hashie (4.1.0)
  259. highline (2.0.3)
  260. hiredis (0.6.3)
  261. hkdf (0.3.0)
  262. htmlentities (4.3.4)
  263. http (4.4.1)
  264. addressable (~> 2.3)
  265. http-cookie (~> 1.0)
  266. http-form_data (~> 2.2)
  267. http-parser (~> 1.2.0)
  268. http-cookie (1.0.3)
  269. domain_name (~> 0.5)
  270. http-form_data (2.3.0)
  271. http-parser (1.2.1)
  272. ffi-compiler (>= 1.0, < 2.0)
  273. http_accept_language (2.1.1)
  274. httplog (1.4.3)
  275. rack (>= 1.0)
  276. rainbow (>= 2.0.0)
  277. i18n (1.8.5)
  278. concurrent-ruby (~> 1.0)
  279. i18n-tasks (0.9.31)
  280. activesupport (>= 4.0.2)
  281. ast (>= 2.1.0)
  282. erubi
  283. highline (>= 2.0.0)
  284. i18n
  285. parser (>= 2.2.3.0)
  286. rails-i18n
  287. rainbow (>= 2.2.2, < 4.0)
  288. terminal-table (>= 1.5.1)
  289. idn-ruby (0.1.0)
  290. ipaddress (0.8.3)
  291. iso-639 (0.3.5)
  292. jmespath (1.4.0)
  293. json (2.3.1)
  294. json-canonicalization (0.2.0)
  295. json-ld (3.1.4)
  296. htmlentities (~> 4.3)
  297. json-canonicalization (~> 0.2)
  298. link_header (~> 0.0, >= 0.0.8)
  299. multi_json (~> 1.14)
  300. rack (~> 2.0)
  301. rdf (~> 3.1)
  302. json-ld-preloaded (3.1.3)
  303. json-ld (~> 3.1)
  304. rdf (~> 3.1)
  305. jsonapi-renderer (0.2.2)
  306. jwt (2.2.2)
  307. kaminari (1.2.1)
  308. activesupport (>= 4.1.0)
  309. kaminari-actionview (= 1.2.1)
  310. kaminari-activerecord (= 1.2.1)
  311. kaminari-core (= 1.2.1)
  312. kaminari-actionview (1.2.1)
  313. actionview
  314. kaminari-core (= 1.2.1)
  315. kaminari-activerecord (1.2.1)
  316. activerecord
  317. kaminari-core (= 1.2.1)
  318. kaminari-core (1.2.1)
  319. launchy (2.5.0)
  320. addressable (~> 2.7)
  321. letter_opener (1.7.0)
  322. launchy (~> 2.2)
  323. letter_opener_web (1.4.0)
  324. actionmailer (>= 3.2)
  325. letter_opener (~> 1.0)
  326. railties (>= 3.2)
  327. link_header (0.0.8)
  328. lograge (0.11.2)
  329. actionpack (>= 4)
  330. activesupport (>= 4)
  331. railties (>= 4)
  332. request_store (~> 1.0)
  333. loofah (2.7.0)
  334. crass (~> 1.0.2)
  335. nokogiri (>= 1.5.9)
  336. mail (2.7.1)
  337. mini_mime (>= 0.1.1)
  338. makara (0.4.1)
  339. activerecord (>= 3.0.0)
  340. marcel (0.3.3)
  341. mimemagic (~> 0.3.2)
  342. mario-redis-lock (1.2.1)
  343. redis (>= 3.0.5)
  344. memory_profiler (0.9.14)
  345. method_source (1.0.0)
  346. microformats (4.2.1)
  347. json (~> 2.2)
  348. nokogiri (~> 1.10)
  349. mime-types (3.3.1)
  350. mime-types-data (~> 3.2015)
  351. mime-types-data (3.2020.0512)
  352. mimemagic (0.3.5)
  353. mini_mime (1.0.2)
  354. mini_portile2 (2.4.0)
  355. minitest (5.14.2)
  356. msgpack (1.3.3)
  357. multi_json (1.15.0)
  358. multipart-post (2.1.1)
  359. net-ldap (0.16.3)
  360. net-scp (3.0.0)
  361. net-ssh (>= 2.6.5, < 7.0.0)
  362. net-ssh (6.1.0)
  363. nio4r (2.5.4)
  364. nokogiri (1.10.10)
  365. mini_portile2 (~> 2.4.0)
  366. nokogumbo (2.0.2)
  367. nokogiri (~> 1.8, >= 1.8.4)
  368. nsa (0.2.7)
  369. activesupport (>= 4.2, < 6)
  370. concurrent-ruby (~> 1.0, >= 1.0.2)
  371. sidekiq (>= 3.5)
  372. statsd-ruby (~> 1.4, >= 1.4.0)
  373. oj (3.10.14)
  374. omniauth (1.9.1)
  375. hashie (>= 3.4.6)
  376. rack (>= 1.6.2, < 3)
  377. omniauth-cas (1.1.1)
  378. addressable (~> 2.3)
  379. nokogiri (~> 1.5)
  380. omniauth (~> 1.2)
  381. omniauth-saml (1.10.2)
  382. omniauth (~> 1.3, >= 1.3.2)
  383. ruby-saml (~> 1.9)
  384. openssl (2.2.0)
  385. openssl-signature_algorithm (0.4.0)
  386. orm_adapter (0.5.0)
  387. ox (2.13.4)
  388. paperclip (6.0.0)
  389. activemodel (>= 4.2.0)
  390. activesupport (>= 4.2.0)
  391. mime-types
  392. mimemagic (~> 0.3.0)
  393. terrapin (~> 0.6.0)
  394. paperclip-av-transcoder (0.6.4)
  395. av (~> 0.9.0)
  396. paperclip (>= 2.5.2)
  397. parallel (1.19.2)
  398. parallel_tests (3.2.0)
  399. parallel
  400. parser (2.7.1.4)
  401. ast (~> 2.4.1)
  402. parslet (2.0.0)
  403. pastel (0.8.0)
  404. tty-color (~> 0.5)
  405. pg (1.2.3)
  406. pghero (2.7.2)
  407. activerecord (>= 5)
  408. pkg-config (1.4.3)
  409. posix-spawn (0.3.15)
  410. premailer (1.13.1)
  411. addressable
  412. css_parser (>= 1.6.0)
  413. htmlentities (>= 4.0.0)
  414. premailer-rails (1.11.1)
  415. actionmailer (>= 3)
  416. premailer (~> 1.7, >= 1.7.9)
  417. private_address_check (0.5.0)
  418. pry (0.13.1)
  419. coderay (~> 1.1)
  420. method_source (~> 1.0)
  421. pry-byebug (3.9.0)
  422. byebug (~> 11.0)
  423. pry (~> 0.13.0)
  424. pry-rails (0.3.9)
  425. pry (>= 0.10.4)
  426. public_suffix (4.0.6)
  427. puma (4.3.6)
  428. nio4r (~> 2.0)
  429. pundit (2.1.0)
  430. activesupport (>= 3.0.0)
  431. raabro (1.3.1)
  432. rack (2.2.3)
  433. rack-attack (6.3.1)
  434. rack (>= 1.0, < 3)
  435. rack-cors (1.1.1)
  436. rack (>= 2.0.0)
  437. rack-proxy (0.6.5)
  438. rack
  439. rack-test (1.1.0)
  440. rack (>= 1.0, < 3)
  441. rails (5.2.4.4)
  442. actioncable (= 5.2.4.4)
  443. actionmailer (= 5.2.4.4)
  444. actionpack (= 5.2.4.4)
  445. actionview (= 5.2.4.4)
  446. activejob (= 5.2.4.4)
  447. activemodel (= 5.2.4.4)
  448. activerecord (= 5.2.4.4)
  449. activestorage (= 5.2.4.4)
  450. activesupport (= 5.2.4.4)
  451. bundler (>= 1.3.0)
  452. railties (= 5.2.4.4)
  453. sprockets-rails (>= 2.0.0)
  454. rails-controller-testing (1.0.5)
  455. actionpack (>= 5.0.1.rc1)
  456. actionview (>= 5.0.1.rc1)
  457. activesupport (>= 5.0.1.rc1)
  458. rails-dom-testing (2.0.3)
  459. activesupport (>= 4.2.0)
  460. nokogiri (>= 1.6)
  461. rails-html-sanitizer (1.3.0)
  462. loofah (~> 2.3)
  463. rails-i18n (5.1.3)
  464. i18n (>= 0.7, < 2)
  465. railties (>= 5.0, < 6)
  466. rails-settings-cached (0.6.6)
  467. rails (>= 4.2.0)
  468. railties (5.2.4.4)
  469. actionpack (= 5.2.4.4)
  470. activesupport (= 5.2.4.4)
  471. method_source
  472. rake (>= 0.8.7)
  473. thor (>= 0.19.0, < 2.0)
  474. rainbow (3.0.0)
  475. rake (13.0.1)
  476. rdf (3.1.6)
  477. hamster (~> 3.0)
  478. link_header (~> 0.0, >= 0.0.8)
  479. rdf-normalize (0.4.0)
  480. rdf (~> 3.1)
  481. redis (4.2.2)
  482. redis-actionpack (5.2.0)
  483. actionpack (>= 5, < 7)
  484. redis-rack (>= 2.1.0, < 3)
  485. redis-store (>= 1.1.0, < 2)
  486. redis-activesupport (5.2.0)
  487. activesupport (>= 3, < 7)
  488. redis-store (>= 1.3, < 2)
  489. redis-namespace (1.8.0)
  490. redis (>= 3.0.4)
  491. redis-rack (2.1.3)
  492. rack (>= 2.0.8, < 3)
  493. redis-store (>= 1.2, < 2)
  494. redis-rails (5.0.2)
  495. redis-actionpack (>= 5.0, < 6)
  496. redis-activesupport (>= 5.0, < 6)
  497. redis-store (>= 1.2, < 2)
  498. redis-store (1.9.0)
  499. redis (>= 4, < 5)
  500. regexp_parser (1.8.0)
  501. request_store (1.5.0)
  502. rack (>= 1.4)
  503. responders (3.0.1)
  504. actionpack (>= 5.0)
  505. railties (>= 5.0)
  506. rexml (3.2.4)
  507. rotp (2.1.2)
  508. rpam2 (4.0.2)
  509. rqrcode (1.1.2)
  510. chunky_png (~> 1.0)
  511. rqrcode_core (~> 0.1)
  512. rqrcode_core (0.1.2)
  513. rspec-core (3.9.2)
  514. rspec-support (~> 3.9.3)
  515. rspec-expectations (3.9.2)
  516. diff-lcs (>= 1.2.0, < 2.0)
  517. rspec-support (~> 3.9.0)
  518. rspec-mocks (3.9.1)
  519. diff-lcs (>= 1.2.0, < 2.0)
  520. rspec-support (~> 3.9.0)
  521. rspec-rails (4.0.1)
  522. actionpack (>= 4.2)
  523. activesupport (>= 4.2)
  524. railties (>= 4.2)
  525. rspec-core (~> 3.9)
  526. rspec-expectations (~> 3.9)
  527. rspec-mocks (~> 3.9)
  528. rspec-support (~> 3.9)
  529. rspec-sidekiq (3.1.0)
  530. rspec-core (~> 3.0, >= 3.0.0)
  531. sidekiq (>= 2.4.0)
  532. rspec-support (3.9.3)
  533. rspec_junit_formatter (0.4.1)
  534. rspec-core (>= 2, < 4, != 2.12.0)
  535. rubocop (0.91.0)
  536. parallel (~> 1.10)
  537. parser (>= 2.7.1.1)
  538. rainbow (>= 2.2.2, < 4.0)
  539. regexp_parser (>= 1.7)
  540. rexml
  541. rubocop-ast (>= 0.4.0, < 1.0)
  542. ruby-progressbar (~> 1.7)
  543. unicode-display_width (>= 1.4.0, < 2.0)
  544. rubocop-ast (0.4.2)
  545. parser (>= 2.7.1.4)
  546. rubocop-rails (2.8.1)
  547. activesupport (>= 4.2.0)
  548. rack (>= 1.1)
  549. rubocop (>= 0.87.0)
  550. ruby-progressbar (1.10.1)
  551. ruby-saml (1.11.0)
  552. nokogiri (>= 1.5.10)
  553. rufus-scheduler (3.6.0)
  554. fugit (~> 1.1, >= 1.1.6)
  555. safety_net_attestation (0.4.0)
  556. jwt (~> 2.0)
  557. sanitize (5.2.1)
  558. crass (~> 1.0.2)
  559. nokogiri (>= 1.8.0)
  560. nokogumbo (~> 2.0)
  561. securecompare (1.0.0)
  562. semantic_range (2.3.0)
  563. sidekiq (6.1.2)
  564. connection_pool (>= 2.2.2)
  565. rack (~> 2.0)
  566. redis (>= 4.2.0)
  567. sidekiq-bulk (0.2.0)
  568. sidekiq
  569. sidekiq-scheduler (3.0.1)
  570. e2mmap
  571. redis (>= 3, < 5)
  572. rufus-scheduler (~> 3.2)
  573. sidekiq (>= 3)
  574. thwait
  575. tilt (>= 1.4.0)
  576. sidekiq-unique-jobs (6.0.23)
  577. concurrent-ruby (~> 1.0, >= 1.0.5)
  578. sidekiq (>= 4.0, < 7.0)
  579. thor (>= 0.20, < 2.0)
  580. simple-navigation (4.1.0)
  581. activesupport (>= 2.3.2)
  582. simple_form (5.0.2)
  583. actionpack (>= 5.0)
  584. activemodel (>= 5.0)
  585. simplecov (0.19.0)
  586. docile (~> 1.1)
  587. simplecov-html (~> 0.11)
  588. simplecov-html (0.12.2)
  589. sprockets (3.7.2)
  590. concurrent-ruby (~> 1.0)
  591. rack (> 1, < 3)
  592. sprockets-rails (3.2.2)
  593. actionpack (>= 4.0)
  594. activesupport (>= 4.0)
  595. sprockets (>= 3.0.0)
  596. sshkit (1.21.0)
  597. net-scp (>= 1.1.2)
  598. net-ssh (>= 2.8.0)
  599. stackprof (0.2.15)
  600. statsd-ruby (1.4.0)
  601. stoplight (2.2.1)
  602. streamio-ffmpeg (3.0.2)
  603. multi_json (~> 1.8)
  604. strong_migrations (0.7.1)
  605. activerecord (>= 5)
  606. temple (0.8.2)
  607. terminal-table (1.8.0)
  608. unicode-display_width (~> 1.1, >= 1.1.1)
  609. terrapin (0.6.0)
  610. climate_control (>= 0.0.3, < 1.0)
  611. thor (1.0.1)
  612. thread_safe (0.3.6)
  613. thwait (0.2.0)
  614. e2mmap
  615. tilt (2.0.10)
  616. tpm-key_attestation (0.9.0)
  617. bindata (~> 2.4)
  618. openssl-signature_algorithm (~> 0.4.0)
  619. tty-color (0.5.2)
  620. tty-cursor (0.7.1)
  621. tty-prompt (0.22.0)
  622. pastel (~> 0.8)
  623. tty-reader (~> 0.8)
  624. tty-reader (0.8.0)
  625. tty-cursor (~> 0.7)
  626. tty-screen (~> 0.8)
  627. wisper (~> 2.0)
  628. tty-screen (0.8.1)
  629. twitter-text (1.14.7)
  630. unf (~> 0.1.0)
  631. tzinfo (1.2.7)
  632. thread_safe (~> 0.1)
  633. tzinfo-data (1.2020.1)
  634. tzinfo (>= 1.0.0)
  635. unf (0.1.4)
  636. unf_ext
  637. unf_ext (0.0.7.7)
  638. unicode-display_width (1.7.0)
  639. uniform_notifier (1.13.0)
  640. warden (1.2.9)
  641. rack (>= 2.0.9)
  642. webauthn (3.0.0.alpha1)
  643. android_key_attestation (~> 0.3.0)
  644. awrence (~> 1.1)
  645. bindata (~> 2.4)
  646. cbor (~> 0.5.9)
  647. cose (~> 1.0)
  648. openssl (~> 2.0)
  649. safety_net_attestation (~> 0.4.0)
  650. securecompare (~> 1.0)
  651. tpm-key_attestation (~> 0.9.0)
  652. webmock (3.9.1)
  653. addressable (>= 2.3.6)
  654. crack (>= 0.3.2)
  655. hashdiff (>= 0.4.0, < 2.0.0)
  656. webpacker (5.2.1)
  657. activesupport (>= 5.2)
  658. rack-proxy (>= 0.6.1)
  659. railties (>= 5.2)
  660. semantic_range (>= 2.3.0)
  661. webpush (0.3.8)
  662. hkdf (~> 0.2)
  663. jwt (~> 2.0)
  664. websocket-driver (0.7.3)
  665. websocket-extensions (>= 0.1.0)
  666. websocket-extensions (0.1.5)
  667. wisper (2.0.1)
  668. xpath (3.2.0)
  669. nokogiri (~> 1.8)
  670. PLATFORMS
  671. ruby
  672. DEPENDENCIES
  673. active_model_serializers (~> 0.10)
  674. active_record_query_trace (~> 1.7)
  675. addressable (~> 2.7)
  676. annotate (~> 3.1)
  677. aws-sdk-s3 (~> 1.81)
  678. better_errors (~> 2.8)
  679. binding_of_caller (~> 0.7)
  680. blurhash (~> 0.1)
  681. bootsnap (~> 1.4)
  682. brakeman (~> 4.9)
  683. browser
  684. bullet (~> 6.1)
  685. bundler-audit (~> 0.7)
  686. capistrano (~> 3.14)
  687. capistrano-rails (~> 1.6)
  688. capistrano-rbenv (~> 2.2)
  689. capistrano-yarn (~> 2.0)
  690. capybara (~> 3.33)
  691. charlock_holmes (~> 0.7.7)
  692. chewy (~> 5.1)
  693. cld3 (~> 3.3.0)
  694. climate_control (~> 0.2)
  695. color_diff (~> 0.1)
  696. concurrent-ruby
  697. connection_pool
  698. devise (~> 4.7)
  699. devise-two-factor (~> 3.1)
  700. devise_pam_authenticatable2 (~> 9.2)
  701. discard (~> 1.2)
  702. doorkeeper (~> 5.4)
  703. dotenv-rails (~> 2.7)
  704. e2mmap (~> 0.1.0)
  705. ed25519 (~> 1.2)
  706. fabrication (~> 2.21)
  707. faker (~> 2.14)
  708. fast_blank (~> 1.0)
  709. fastimage
  710. fog-core (<= 2.1.0)
  711. fog-openstack (~> 0.3)
  712. fuubar (~> 2.5)
  713. goldfinger (~> 2.1)
  714. hamlit-rails (~> 0.2)
  715. health_check!
  716. hiredis (~> 0.6)
  717. htmlentities (~> 4.3)
  718. http (~> 4.4)
  719. http_accept_language (~> 2.1)
  720. httplog (~> 1.4.3)
  721. i18n-tasks (~> 0.9)
  722. idn-ruby
  723. iso-639
  724. json-ld
  725. json-ld-preloaded (~> 3.1)
  726. kaminari (~> 1.2)
  727. letter_opener (~> 1.7)
  728. letter_opener_web (~> 1.4)
  729. link_header (~> 0.0)
  730. lograge (~> 0.11)
  731. makara (~> 0.4)
  732. mario-redis-lock (~> 1.2)
  733. memory_profiler
  734. microformats (~> 4.2)
  735. mime-types (~> 3.3.1)
  736. net-ldap (~> 0.16)
  737. nilsimsa!
  738. nokogiri (~> 1.10)
  739. nsa (~> 0.2)
  740. oj (~> 3.10)
  741. omniauth (~> 1.9)
  742. omniauth-cas (~> 1.1)
  743. omniauth-saml (~> 1.10)
  744. ox (~> 2.13)
  745. paperclip (~> 6.0)
  746. paperclip-av-transcoder (~> 0.6)
  747. parallel (~> 1.19)
  748. parallel_tests (~> 3.2)
  749. parslet
  750. pg (~> 1.2)
  751. pghero (~> 2.7)
  752. pkg-config (~> 1.4)
  753. posix-spawn
  754. premailer-rails
  755. private_address_check (~> 0.5)
  756. pry-byebug (~> 3.9)
  757. pry-rails (~> 0.3)
  758. puma (~> 4.3)
  759. pundit (~> 2.1)
  760. rack (~> 2.2.3)
  761. rack-attack (~> 6.3)
  762. rack-cors (~> 1.1)
  763. rails (~> 5.2.4.4)
  764. rails-controller-testing (~> 1.0)
  765. rails-i18n (~> 5.1)
  766. rails-settings-cached (~> 0.6)
  767. rdf-normalize (~> 0.4)
  768. redis (~> 4.2)
  769. redis-namespace (~> 1.8)
  770. redis-rails (~> 5.0)
  771. rqrcode (~> 1.1)
  772. rspec-rails (~> 4.0)
  773. rspec-sidekiq (~> 3.1)
  774. rspec_junit_formatter (~> 0.4)
  775. rubocop (~> 0.91)
  776. rubocop-rails (~> 2.8)
  777. ruby-progressbar (~> 1.10)
  778. sanitize (~> 5.2)
  779. sidekiq (~> 6.1)
  780. sidekiq-bulk (~> 0.2.0)
  781. sidekiq-scheduler (~> 3.0)
  782. sidekiq-unique-jobs (~> 6.0)
  783. simple-navigation (~> 4.1)
  784. simple_form (~> 5.0)
  785. simplecov (~> 0.19)
  786. sprockets (~> 3.7.2)
  787. sprockets-rails (~> 3.2)
  788. stackprof
  789. stoplight (~> 2.2.1)
  790. streamio-ffmpeg (~> 3.0)
  791. strong_migrations (~> 0.7)
  792. thor (~> 1.0)
  793. thwait (~> 0.2.0)
  794. tty-prompt (~> 0.22)
  795. twitter-text (~> 1.14)
  796. tzinfo-data (~> 1.2020)
  797. webauthn (~> 3.0.0.alpha1)
  798. webmock (~> 3.9)
  799. webpacker (~> 5.2)
  800. webpush