Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-15 | Fix leaking private statuses the admin account follows (#11300) | ThibG | |
Now that the request is signed, it can return private toots. Do not leak them. | |||
2019-07-15 | Change the retry limit in error of web push notification (#11292) | han@highemelry | |
- Change the maximum count of retry for web push notification (Default -> 5). - In case of high load of subscribe server, the retries will be repeated many times. - Because the retries occupy the default queue, maximum retry count should be reduced. | |||
2019-07-15 | Fix BlockService trying to reject incorrect follow request (#11288) | ThibG | |
Fixes #11148 | |||
2019-07-15 | Fix Status.remote scope matching *all* statuses (#11265) | ThibG | |
2019-07-15 | Fix BackupService crashing when an attachment is missing (#11241) | ThibG | |
* Fix BackupService crashing when an attachment is missing For various reasons such as admin error or out-of-sync media and database backups, it might be possible for local attachments to be lost. This commit allows the BackupService to continue its work even if some media file is missing. * Change error message | |||
2019-07-15 | Add link to edit each listed filter | Thibaut Girka | |
2019-07-15 | Make some strings translatable | Thibaut Girka | |
2019-07-15 | Minor refactoring | Thibaut Girka | |
2019-07-15 | Move the “Show why” button inline | Thibaut Girka | |
2019-07-15 | Implement feature to add filtered phrases to content warnings | Thibaut Girka | |
2019-07-15 | Implement option to completely hide filtered toots | Thibaut Girka | |
2019-07-15 | Add options to configure filtering behavior | Thibaut Girka | |
2019-07-15 | Add a way to know why a status has been filtered, and show it anyway | Thibaut Girka | |
2019-07-15 | Do not keep polls pre-filled in thread mode | Thibaut Girka | |
2019-07-15 | Fix error boundary CSS | Thibaut Girka | |
2019-07-13 | Add a spam check (#11217) | Eugen Rochko | |
* Add a spam check * Use Nilsimsa to generate locality-sensitive hashes and compare using Levenshtein distance * Add more tests * Add exemption when the message is a reply to something that mentions the sender * Use Nilsimsa Compare Value instead of Levenshtein distance * Use MD5 for messages shorter than 10 characters * Add message to automated report, do not add non-public statuses to automated report, add trust level to accounts and make unsilencing raise the trust level to prevent repeated spam checks on that account * Expire spam check data after 3 months * Add support for local statuses, reduce expiration to 1 week, always create a report * Add content warnings to the spam check and exempt empty statuses * Change Nilsimsa threshold to 95 and make sure removed statuses are removed from the spam check * Add all matched statuses into automatic report | |||
2019-07-12 | Change the retry limit in error of web push notification (#11292) | han@highemelry | |
- Change the maximum count of retry for web push notification (Default -> 5). - In case of high load of subscribe server, the retries will be repeated many times. - Because the retries occupy the default queue, maximum retry count should be reduced. | |||
2019-07-11 | Add ActivityPub secure mode (#11269) | Eugen Rochko | |
* Add HTTP signature requirement for served ActivityPub resources * Change `SECURE_MODE` to `AUTHORIZED_FETCH` * Add 'Signature' to 'Vary' header and improve code style * Improve code style by adding `public_fetch_mode?` method | |||
2019-07-11 | Fix BlockService trying to reject incorrect follow request (#11288) | ThibG | |
Fixes #11148 | |||
2019-07-11 | Add HTTP signatures to all outgoing ActivityPub GET requests (#11284) | Eugen Rochko | |
2019-07-10 | Fix report dialog crashing when a toot gets deleted | Thibaut Girka | |
Fixes #1155 | |||
2019-07-10 | Refactor fetching of remote resources (#11251) | Eugen Rochko | |
2019-07-10 | Drop magic-public-key from webfinger replies as it's only used for OStatus ↵ | ThibG | |
(#11280) | |||
2019-07-10 | Fix handling of webfinger redirects in ResolveAccountService (#11279) | ThibG | |
2019-07-10 | Fix activity being rendered within activity due to caching (#11271) | Eugen Rochko | |
Fix #11270 | |||
2019-07-09 | Refactor domain block checks (#11268) | Eugen Rochko | |
2019-07-08 | Fix Status.remote scope matching *all* statuses (#11265) | ThibG | |
2019-07-08 | Remove unused remote unfollow controller (#11250) | Eugen Rochko | |
2019-07-08 | Refactor controllers for statuses, accounts, and more (#11249) | Eugen Rochko | |
2019-07-08 | Fix BackupService crashing when an attachment is missing (#11241) | ThibG | |
* Fix BackupService crashing when an attachment is missing For various reasons such as admin error or out-of-sync media and database backups, it might be possible for local attachments to be lost. This commit allows the BackupService to continue its work even if some media file is missing. * Change error message | |||
2019-07-07 | Merge pull request #1152 from ThibG/glitch-soc/merge-upstream | ThibG | |
Merge upstream changes | |||
2019-07-07 | Remove Atom feeds and old URLs in the form of `GET /:username/updates/:id` ↵ | Eugen Rochko | |
(#11247) | |||
2019-07-07 | [Glitch] Only scroll to the compose form if it's not horizontally in the ↵ | ThibG | |
viewport Port c07cca4727041ea5a5721acbc603d4bfb45a15a6 to glitch-soc | |||
2019-07-07 | Fix support for HTTP proxies (#11245) | ThibG | |
* Disable incorrect check for hidden services in Socket Hidden services can only be accessed with an HTTP proxy, in which case the host seen by the Socket class will be the proxy, not the target host. Hidden services are already filtered in `Request#initialize`. * Use our Socket class to connect to HTTP proxies Avoid the timeout logic being bypassed * Add support for IP addresses in Request::Socket * Refactor a bit, no need to keep the DNS resolver around | |||
2019-07-07 | Merge commit 'c07cca4727041ea5a5721acbc603d4bfb45a15a6' into ↵ | Thibaut Girka | |
glitch-soc/merge-upstream Unlike upstream, kept the direct timeline endpoint, as it is still of use in glitch-soc. | |||
2019-07-07 | Fix URLs appearing twice in errors of ActivityPub::DeliveryWorker (#11231) | Eugen Rochko | |
2019-07-07 | Fix support for HTTP proxies (#11245) | ThibG | |
* Disable incorrect check for hidden services in Socket Hidden services can only be accessed with an HTTP proxy, in which case the host seen by the Socket class will be the proxy, not the target host. Hidden services are already filtered in `Request#initialize`. * Use our Socket class to connect to HTTP proxies Avoid the timeout logic being bypassed * Add support for IP addresses in Request::Socket * Refactor a bit, no need to keep the DNS resolver around | |||
2019-07-06 | Remove Salmon and PubSubHubbub (#11205) | Eugen Rochko | |
* Remove Salmon and PubSubHubbub endpoints * Add error when trying to follow OStatus accounts * Fix new accounts not being created in ResolveAccountService | |||
2019-07-06 | Only scroll to the compose form if it's not horizontally in the viewport ↵ | ThibG | |
(#11246) Avoids jumping the scroll around vertically when giving it focus and editing long toots. | |||
2019-07-06 | Fix option to send e-mail notification about account action always being ↵ | Eugen Rochko | |
true (#11242) | |||
2019-07-05 | Fix HTTP requests to IPv6 hosts (#11240) | ThibG | |
2019-07-05 | Allow serializing local-only toots in backup service | Thibaut Girka | |
Fixes #1153 | |||
2019-07-05 | Remove deprecated REST API `GET /api/v1/statuses/:id/card` (#11213) | Eugen Rochko | |
2019-07-05 | Remove deprecated REST API `GET /api/v1/timelines/direct` (#11212) | Eugen Rochko | |
2019-07-04 | [Glitch] Memoize ancestorIds and descendantIds in detailed status view | ThibG | |
Port 99924f282f53593e670c70a38450a1c0e2d24c20 to glitch-soc | |||
2019-07-04 | [Glitch] When deleting & redrafting a poll, fill in closest expires_in | ThibG | |
Port dc88d226e1fdb20499d6e81838b81894b2d0be2d to glitch-soc | |||
2019-07-04 | Merge branch 'master' into glitch-soc/merge-upstream | Thibaut Girka | |
2019-07-02 | Memoize ancestorIds and descendantIds in detailed status view (#11234) | ThibG | |
2019-07-02 | Fix statsd UDP sockets not being cleaned up in Sidekiq (#11230) | Eugen Rochko | |
2019-07-02 | Change ActivityPub::DeliveryWorker to not retry HTTP 501 errors (#11233) | Eugen Rochko | |