Takeshi Umeda 
								
							 
						 
						
							
							
							
							
								
							
							
								f5606cdab4 
								
							 
						 
						
							
							
								
								Add local only to hashtag timeline ( #13502 )  
							
							
							
						 
						
							2020-04-18 21:52:39 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									ThibG 
								
							 
						 
						
							
							
							
							
								
							
							
								2444658e4b 
								
							 
						 
						
							
							
								
								Fix uploaded image orientation in some browsers ( #13493 )  
							
							... 
							
							
							
							Some browsers (at least recent Chrome versions) automatically take
image metadata into account when drawing images into a canvas.
There seem to be no way to prevent that behavior, and the only
way to detect it seems to compare with a known image.
See: https://github.com/w3c/csswg-drafts/issues/4666 
Solution adapted from: 1e4df70782 
							
						 
						
							2020-04-18 15:37:03 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									ThibG 
								
							 
						 
						
							
							
							
							
								
							
							
								0f3317fbe2 
								
							 
						 
						
							
							
								
								Fix not being able to vote ( #13490 )  
							
							... 
							
							
							
							Fix regression introduced by 53f9f8a4ce 
							
						 
						
							2020-04-17 21:54:25 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									ThibG 
								
							 
						 
						
							
							
							
							
								
							
							
								a93fc74d31 
								
							 
						 
						
							
							
								
								Fix admin actions log crash when displaying updates of deleted announcements ( #13489 )  
							
							... 
							
							
							
							Fixes  #13487  
						
							2020-04-17 19:54:58 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eugen Rochko 
								
							 
						 
						
							
							
							
							
								
							
							
								efd5db8f21 
								
							 
						 
						
							
							
								
								Fix search not working due to proxy settings when using hidden services ( #13488 )  
							
							... 
							
							
							
							Fix  #13484  
						
							2020-04-17 15:14:24 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gurgen Hayrapetyan 
								
							 
						 
						
							
							
							
							
								
							
							
								53f9f8a4ce 
								
							 
						 
						
							
							
								
								Fix Poll fetchPoll action not being debounced. ( #13485 )  
							
							... 
							
							
							
							* Fix Poll fetchPoll action not being debounced.
* Fix unused import in the Poll component 
							
						 
						
							2020-04-16 20:16:20 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Takeshi Umeda 
								
							 
						 
						
							
							
							
							
								
							
							
								8eca96eb77 
								
							 
						 
						
							
							
								
								Fix DeliveryWorker not to call failure_tracker when inbox_url is unavailable ( #13482 )  
							
							
							
						 
						
							2020-04-16 08:04:10 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Takeshi Umeda 
								
							 
						 
						
							
							
							
							
								
							
							
								1eb59ace5c 
								
							 
						 
						
							
							
								
								Fix migration 20200407202420_migrate_unavailable_inboxes ( #13481 )  
							
							
							
						 
						
							2020-04-16 08:03:24 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									ThibG 
								
							 
						 
						
							
							
							
							
								
							
							
								c162748a14 
								
							 
						 
						
							
							
								
								Fix confusing error when failing to add an alias to an unknown account ( #13480 )  
							
							... 
							
							
							
							Follow-up to #13452 , fixing broken `uri.nil?` test.
Also remove the separate check for `uri` presence, as that would result
in a “Please review 2 errors below” while only one would be listed. 
							
						 
						
							2020-04-15 20:33:53 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eugen Rochko 
								
							 
						 
						
							
							
							
							
								
							
							
								2d3219549b 
								
							 
						 
						
							
							
								
								Change delivery failure tracking to work with hostnames instead of URLs ( #13437 )  
							
							
							
						 
						
							2020-04-15 20:33:24 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									ThibG 
								
							 
						 
						
							
							
							
							
								
							
							
								add34dd132 
								
							 
						 
						
							
							
								
								Fix “Email changed” notification sometimes having wrong e-mail ( #13475 )  
							
							... 
							
							
							
							* Fix “Email changed” notification sometimes having wrong e-mail
Fixes  #6778 
The root of the issue is that `send_devise_notification` was called before
the changes were properly commited to the database, causing the mailer to
pick previous values if running too early.
Devise's documentation provides guidance on how to handle that[1][2], however,
I have found it to not be working, as the following happens, in that order:
- `send_devise_notification` is called for the `email_changed` notification.
  In that case, `changed?` is false and `saved_changes?` is true, so
  if we use the former, we have the same issue.
- the `after_commit` hook is called
- `send_devise_notification` is called for the `confirmation_instructions`
  notification.
  In that case, `changed?` is still false, and `saved_changes?` still true,
  so if we use the latter, that second notification email is simply not
  going to be sent (as we would be queuing the notification *after*
  executing the after_commit hook).
This is because it may be called from either an `after_update` or
`after_commit` hook, the difference not being a call to `save` but the
transaction actually being committed to the database. This may arguably
be a bug in Devise, or Devise's notification.
The proposed workaround is inspired by Devise's documentation but checks
whether a transaction is open to make the call whether to immediately
send the notification or defer it to the `after_commit` hook.
[1]: https://www.rubydoc.info/github/plataformatec/devise/Devise%2FModels%2FAuthenticatable:send_devise_notification 
[2]: 406915cb78/lib/devise/models/authenticatable.rb (L133-L194) 
							
						 
						
							2020-04-15 16:13:44 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								7ebaef064e 
								
							 
						 
						
							
							
								
								Bump watchpack from 1.6.0 to 1.6.1 ( #13462 )  
							
							... 
							
							
							
							Bumps [watchpack](https://github.com/webpack/watchpack ) from 1.6.0 to 1.6.1.
- [Release notes](https://github.com/webpack/watchpack/releases )
- [Commits](https://github.com/webpack/watchpack/compare/v1.6.0...v1.6.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-14 00:35:20 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								54fb8967cd 
								
							 
						 
						
							
							
								
								Bump regexp_parser from 1.6.0 to 1.7.0 ( #13460 )  
							
							... 
							
							
							
							Bumps [regexp_parser](https://github.com/ammar/regexp_parser ) from 1.6.0 to 1.7.0.
- [Release notes](https://github.com/ammar/regexp_parser/releases )
- [Changelog](https://github.com/ammar/regexp_parser/blob/master/CHANGELOG.md )
- [Commits](https://github.com/ammar/regexp_parser/compare/v1.6.0...v1.7.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:40:22 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								34d4ff13a6 
								
							 
						 
						
							
							
								
								Bump rubocop-rails from 2.4.2 to 2.5.2 ( #13459 )  
							
							... 
							
							
							
							Bumps [rubocop-rails](https://github.com/rubocop-hq/rubocop-rails ) from 2.4.2 to 2.5.2.
- [Release notes](https://github.com/rubocop-hq/rubocop-rails/releases )
- [Changelog](https://github.com/rubocop-hq/rubocop-rails/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop-hq/rubocop-rails/compare/v2.4.2...v2.5.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:36:57 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								d5002774dd 
								
							 
						 
						
							
							
								
								Bump capistrano from 3.12.1 to 3.13.0 ( #13455 )  
							
							... 
							
							
							
							Bumps [capistrano](https://github.com/capistrano/capistrano ) from 3.12.1 to 3.13.0.
- [Release notes](https://github.com/capistrano/capistrano/releases )
- [Commits](https://github.com/capistrano/capistrano/compare/v3.12.1...v3.13.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:33:53 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								1698ba611e 
								
							 
						 
						
							
							
								
								Bump elasticsearch from 7.5.0 to 7.6.0 ( #13458 )  
							
							... 
							
							
							
							Bumps [elasticsearch](https://github.com/elasticsearch/elasticsearch-ruby ) from 7.5.0 to 7.6.0.
- [Release notes](https://github.com/elasticsearch/elasticsearch-ruby/releases )
- [Changelog](https://github.com/elastic/elasticsearch-ruby/blob/v7.6.0/CHANGELOG.md )
- [Commits](https://github.com/elasticsearch/elasticsearch-ruby/compare/v7.5.0...v7.6.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:21:31 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								d5a9ea4f45 
								
							 
						 
						
							
							
								
								Bump cssom from 0.3.4 to 0.3.8 ( #13461 )  
							
							... 
							
							
							
							Bumps [cssom](https://github.com/NV/CSSOM ) from 0.3.4 to 0.3.8.
- [Release notes](https://github.com/NV/CSSOM/releases )
- [Commits](https://github.com/NV/CSSOM/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:20:30 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								9f535dd5d0 
								
							 
						 
						
							
							
								
								Bump regexp.prototype.flags from 1.2.0 to 1.3.0 ( #13468 )  
							
							... 
							
							
							
							Bumps [regexp.prototype.flags](https://github.com/es-shims/RegExp.prototype.flags ) from 1.2.0 to 1.3.0.
- [Release notes](https://github.com/es-shims/RegExp.prototype.flags/releases )
- [Changelog](https://github.com/es-shims/RegExp.prototype.flags/blob/master/CHANGELOG.md )
- [Commits](https://github.com/es-shims/RegExp.prototype.flags/compare/v1.2.0...v1.3.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:18:01 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								82d4934e21 
								
							 
						 
						
							
							
								
								Bump fabrication from 2.21.0 to 2.21.1 ( #13453 )  
							
							... 
							
							
							
							Bumps [fabrication](https://github.com/paulelliott/fabrication ) from 2.21.0 to 2.21.1.
- [Release notes](https://github.com/paulelliott/fabrication/releases )
- [Changelog](https://github.com/paulelliott/fabrication/blob/master/Changelog.markdown )
- [Commits](https://github.com/paulelliott/fabrication/compare/2.21.0...2.21.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:16:40 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								abc78ebcea 
								
							 
						 
						
							
							
								
								Bump aws-sdk-s3 from 1.61.1 to 1.61.2 ( #13456 )  
							
							... 
							
							
							
							Bumps [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby ) from 1.61.1 to 1.61.2.
- [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-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:16:12 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								9f43a52a80 
								
							 
						 
						
							
							
								
								Bump mousetrap from 1.6.2 to 1.6.5 ( #13466 )  
							
							... 
							
							
							
							Bumps [mousetrap](https://github.com/ccampbell/mousetrap ) from 1.6.2 to 1.6.5.
- [Release notes](https://github.com/ccampbell/mousetrap/releases )
- [Commits](https://github.com/ccampbell/mousetrap/compare/1.6.2...1.6.5 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:14:37 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								c734222726 
								
							 
						 
						
							
							
								
								Bump mkdirp from 1.0.3 to 1.0.4 ( #13463 )  
							
							... 
							
							
							
							Bumps [mkdirp](https://github.com/isaacs/node-mkdirp ) from 1.0.3 to 1.0.4.
- [Release notes](https://github.com/isaacs/node-mkdirp/releases )
- [Changelog](https://github.com/isaacs/node-mkdirp/blob/master/CHANGELOG.md )
- [Commits](https://github.com/isaacs/node-mkdirp/compare/v1.0.3...v1.0.4 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:11:52 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								55a6141d74 
								
							 
						 
						
							
							
								
								Bump unicode-match-property-value-ecmascript from 1.1.0 to 1.2.0 ( #13464 )  
							
							... 
							
							
							
							Bumps [unicode-match-property-value-ecmascript](https://github.com/mathiasbynens/unicode-match-property-value-ecmascript ) from 1.1.0 to 1.2.0.
- [Release notes](https://github.com/mathiasbynens/unicode-match-property-value-ecmascript/releases )
- [Commits](https://github.com/mathiasbynens/unicode-match-property-value-ecmascript/compare/v1.1.0...v1.2.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:09:23 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								ec9eefe6b1 
								
							 
						 
						
							
							
								
								Bump picomatch from 2.0.7 to 2.2.2 ( #13465 )  
							
							... 
							
							
							
							Bumps [picomatch](https://github.com/micromatch/picomatch ) from 2.0.7 to 2.2.2.
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.0.7...2.2.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:08:13 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								c10c518e04 
								
							 
						 
						
							
							
								
								Bump autoprefixer from 9.7.5 to 9.7.6 ( #13467 )  
							
							... 
							
							
							
							Bumps [autoprefixer](https://github.com/postcss/autoprefixer ) from 9.7.5 to 9.7.6.
- [Release notes](https://github.com/postcss/autoprefixer/releases )
- [Changelog](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md )
- [Commits](https://github.com/postcss/autoprefixer/compare/9.7.5...9.7.6 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:06:14 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								3e99d1db11 
								
							 
						 
						
							
							
								
								Bump htmlparser2 from 3.10.0 to 3.10.1 ( #13469 )  
							
							... 
							
							
							
							Bumps [htmlparser2](https://github.com/fb55/htmlparser2 ) from 3.10.0 to 3.10.1.
- [Release notes](https://github.com/fb55/htmlparser2/releases )
- [Commits](https://github.com/fb55/htmlparser2/compare/v3.10.0...v3.10.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-13 23:04:15 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									ThibG 
								
							 
						 
						
							
							
							
							
								
							
							
								dedac235bc 
								
							 
						 
						
							
							
								
								Fix account aliases page ( #13452 )  
							
							... 
							
							
							
							* Fix error not being displayed when adding an account alias, add error for self-references
Co-Authored-By: Mélanie Chauvel (ariasuni) <perso@hack-libre.org>
* Add “You have no aliases.” note in confusing empty aliases table
Co-Authored-By: Mélanie Chauvel (ariasuni) <perso@hack-libre.org>
Co-authored-by: Mélanie Chauvel (ariasuni) <perso@hack-libre.org> 
							
						 
						
							2020-04-13 06:41:43 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Matej Ľach 
								
							 
						 
						
							
							
							
							
								
							
							
								78a70bac7b 
								
							 
						 
						
							
							
								
								increase the postgres container shm_size from 64mb to 256mb ( #13451 )  
							
							
							
						 
						
							2020-04-12 16:41:54 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Leonie 
								
							 
						 
						
							
							
							
							
								
							
							
								a1cc7b361c 
								
							 
						 
						
							
							
								
								Fix API footer link in Web UI ( #13441 )  
							
							... 
							
							
							
							Co-authored-by: koyu <me@koyu.spac> 
							
						 
						
							2020-04-12 13:38:14 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									ThibG 
								
							 
						 
						
							
							
							
							
								
							
							
								9d57af78d2 
								
							 
						 
						
							
							
								
								Fix WebUI pagination of following, followers, follow requests, blocks and mutes lists ( #13445 )  
							
							... 
							
							
							
							* Fix following, followers and follow requests pagination
* Fix pagination of blocks and mutes 
							
						 
						
							2020-04-12 13:38:00 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									fuyu 
								
							 
						 
						
							
							
							
							
								
							
							
								c4b73628e8 
								
							 
						 
						
							
							
								
								Add new vagrant log files to .gitignore ( #13442 )  
							
							... 
							
							
							
							* Update .gitignore
* Update .gitignore
Co-Authored-By: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> 
							
						 
						
							2020-04-12 13:37:34 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Yamagishi Kazutoshi 
								
							 
						 
						
							
							
							
							
								
							
							
								145a043dbe 
								
							 
						 
						
							
							
								
								Fix translation platform to Crowdin ( #13443 )  
							
							
							
						 
						
							2020-04-10 08:24:23 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								c6fed2d4d5 
								
							 
						 
						
							
							
								
								Bump capistrano-bundler from 1.3.0 to 1.6.0 ( #13416 )  
							
							... 
							
							
							
							Bumps [capistrano-bundler](https://github.com/capistrano/bundler ) from 1.3.0 to 1.6.0.
- [Release notes](https://github.com/capistrano/bundler/releases )
- [Changelog](https://github.com/capistrano/bundler/blob/master/CHANGELOG.md )
- [Commits](https://github.com/capistrano/bundler/compare/v1.3.0...v1.6.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-10 03:34:54 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								ea695d95cd 
								
							 
						 
						
							
							
								
								Bump elasticsearch-dsl from 0.1.8 to 0.1.9 ( #13419 )  
							
							... 
							
							
							
							Bumps [elasticsearch-dsl](https://github.com/elasticsearch/elasticsearch-ruby ) from 0.1.8 to 0.1.9.
- [Release notes](https://github.com/elasticsearch/elasticsearch-ruby/releases )
- [Changelog](https://github.com/elastic/elasticsearch-ruby/blob/master/CHANGELOG.md )
- [Commits](https://github.com/elasticsearch/elasticsearch-ruby/compare/v0.1.8...v0.1.9 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-10 03:33:12 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								fe3d5bfc43 
								
							 
						 
						
							
							
								
								Bump annotate from 3.0.3 to 3.1.1 ( #13417 )  
							
							... 
							
							
							
							Bumps [annotate](https://github.com/ctran/annotate_models ) from 3.0.3 to 3.1.1.
- [Release notes](https://github.com/ctran/annotate_models/releases )
- [Changelog](https://github.com/ctran/annotate_models/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ctran/annotate_models/compare/v3.0.3...v3.1.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-10 03:32:39 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								8d4ba29c29 
								
							 
						 
						
							
							
								
								Bump babel-plugin-emotion from 10.0.19 to 10.0.33 ( #13409 )  
							
							... 
							
							
							
							Bumps [babel-plugin-emotion](https://github.com/emotion-js/emotion ) from 10.0.19 to 10.0.33.
- [Release notes](https://github.com/emotion-js/emotion/releases )
- [Changelog](https://github.com/emotion-js/emotion/blob/master/CHANGELOG.md )
- [Commits](https://github.com/emotion-js/emotion/compare/babel-plugin-emotion@10.0.19...babel-plugin-emotion@10.0.33 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 03:22:50 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								3380fa86d4 
								
							 
						 
						
							
							
								
								Bump abab from 2.0.0 to 2.0.3 ( #13408 )  
							
							... 
							
							
							
							Bumps [abab](https://github.com/jsdom/abab ) from 2.0.0 to 2.0.3.
- [Release notes](https://github.com/jsdom/abab/releases )
- [Changelog](https://github.com/jsdom/abab/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jsdom/abab/compare/v2.0.0...2.0.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 03:17:48 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								34adfb99b9 
								
							 
						 
						
							
							
								
								Bump es-abstract from 1.17.0 to 1.17.5 ( #13410 )  
							
							... 
							
							
							
							Bumps [es-abstract](https://github.com/ljharb/es-abstract ) from 1.17.0 to 1.17.5.
- [Release notes](https://github.com/ljharb/es-abstract/releases )
- [Changelog](https://github.com/ljharb/es-abstract/blob/master/CHANGELOG.md )
- [Commits](https://github.com/ljharb/es-abstract/compare/v1.17.0...v1.17.5 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 03:16:14 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								2834f18072 
								
							 
						 
						
							
							
								
								Bump sshpk from 1.16.0 to 1.16.1 ( #13412 )  
							
							... 
							
							
							
							Bumps [sshpk](https://github.com/joyent/node-sshpk ) from 1.16.0 to 1.16.1.
- [Release notes](https://github.com/joyent/node-sshpk/releases )
- [Commits](https://github.com/joyent/node-sshpk/compare/v1.16.0...v1.16.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 03:15:10 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								f836c4485f 
								
							 
						 
						
							
							
								
								Bump thunky from 1.0.3 to 1.1.0 ( #13411 )  
							
							... 
							
							
							
							Bumps [thunky](https://github.com/mafintosh/thunky ) from 1.0.3 to 1.1.0.
- [Release notes](https://github.com/mafintosh/thunky/releases )
- [Commits](https://github.com/mafintosh/thunky/compare/v1.0.3...v1.1.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 03:13:11 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								8adf219922 
								
							 
						 
						
							
							
								
								Bump intl-format-cache from 2.1.0 to 2.2.9 ( #13413 )  
							
							... 
							
							
							
							Bumps [intl-format-cache](https://github.com/formatjs/formatjs ) from 2.1.0 to 2.2.9.
- [Release notes](https://github.com/formatjs/formatjs/releases )
- [Commits](https://github.com/formatjs/formatjs/compare/@formatjs/intl-utils@2.1.0...intl-format-cache@2.2.9 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 03:12:30 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								f95052a42b 
								
							 
						 
						
							
							
								
								Bump escodegen from 1.11.0 to 1.14.1 ( #13414 )  
							
							... 
							
							
							
							Bumps [escodegen](https://github.com/estools/escodegen ) from 1.11.0 to 1.14.1.
- [Release notes](https://github.com/estools/escodegen/releases )
- [Commits](https://github.com/estools/escodegen/compare/v1.11.0...v1.14.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 03:10:41 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								c074e26aab 
								
							 
						 
						
							
							
								
								Bump istanbul-lib-instrument from 3.1.0 to 3.3.0 ( #13415 )  
							
							... 
							
							
							
							Bumps [istanbul-lib-instrument](https://github.com/istanbuljs/istanbuljs/tree/HEAD/packages/istanbul-lib-instrument ) from 3.1.0 to 3.3.0.
- [Release notes](https://github.com/istanbuljs/istanbuljs/releases )
- [Changelog](https://github.com/istanbuljs/istanbuljs/blob/master/packages/istanbul-lib-instrument/CHANGELOG.md )
- [Commits](https://github.com/istanbuljs/istanbuljs/commits/istanbul-lib-instrument@3.3.0/packages/istanbul-lib-instrument )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 03:08:52 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								c349f2b273 
								
							 
						 
						
							
							
								
								Bump prop-types-extra from 1.1.0 to 1.1.1 ( #13407 )  
							
							... 
							
							
							
							Bumps [prop-types-extra](https://github.com/react-bootstrap/prop-types-extra ) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/react-bootstrap/prop-types-extra/releases )
- [Changelog](https://github.com/react-bootstrap/prop-types-extra/blob/master/CHANGELOG.md )
- [Commits](https://github.com/react-bootstrap/prop-types-extra/compare/v1.1.0...v1.1.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 03:07:55 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								d92f88398d 
								
							 
						 
						
							
							
								
								Bump public_suffix from 4.0.3 to 4.0.4 ( #13418 )  
							
							... 
							
							
							
							Bumps [public_suffix](https://github.com/weppos/publicsuffix-ruby ) from 4.0.3 to 4.0.4.
- [Release notes](https://github.com/weppos/publicsuffix-ruby/releases )
- [Changelog](https://github.com/weppos/publicsuffix-ruby/blob/master/CHANGELOG.md )
- [Commits](https://github.com/weppos/publicsuffix-ruby/compare/4.0.3...v4.0.4 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 03:01:54 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								23285456fb 
								
							 
						 
						
							
							
								
								Bump bcrypt from 3.1.12 to 3.1.13 ( #13420 )  
							
							... 
							
							
							
							Bumps [bcrypt](https://github.com/codahale/bcrypt-ruby ) from 3.1.12 to 3.1.13.
- [Release notes](https://github.com/codahale/bcrypt-ruby/releases )
- [Changelog](https://github.com/codahale/bcrypt-ruby/blob/master/CHANGELOG )
- [Commits](https://github.com/codahale/bcrypt-ruby/compare/v3.1.12...v3.1.13 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 02:59:21 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									dependabot-preview[bot] 
								
							 
						 
						
							
							
							
							
								
							
							
								6986543aca 
								
							 
						 
						
							
							
								
								Bump loofah from 2.4.0 to 2.5.0 ( #13422 )  
							
							... 
							
							
							
							Bumps [loofah](https://github.com/flavorjones/loofah ) from 2.4.0 to 2.5.0.
- [Release notes](https://github.com/flavorjones/loofah/releases )
- [Changelog](https://github.com/flavorjones/loofah/blob/master/CHANGELOG.md )
- [Commits](https://github.com/flavorjones/loofah/compare/v2.4.0...v2.5.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> 
							
						 
						
							2020-04-09 02:58:12 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									ThibG 
								
							 
						 
						
							
							
							
							
								
							
							
								b746bda60e 
								
							 
						 
						
							
							
								
								Fix styling of polls in JS-less fallback on public pages ( #13436 )  
							
							
							
						 
						
							2020-04-07 18:21:58 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eugen Rochko 
								
							 
						 
						
							
							
							
							
								
							
							
								ccee0578a4 
								
							 
						 
						
							
							
								
								Fix regression in tootctl media remove-orphans ( #13405 )  
							
							... 
							
							
							
							Fix  #13401  
						
							2020-04-06 14:11:47 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eugen Rochko 
								
							 
						 
						
							
							
							
							
								
							
							
								331bc98f25 
								
							 
						 
						
							
							
								
								Fix trying to delete already deleted file when post-processing ( #13406 )  
							
							... 
							
							
							
							Fix  #13403  
						
							2020-04-06 14:11:22 +02:00