Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								225c6582d1 
								
							 
						 
						
							
							
								
								Add tests for BootstrapTimelineService ( #16476 )  
							
							 
							
							
							
						 
						
							2021-07-07 21:12:43 +02:00  
						
					 
				
					
						
							
							
								 
								Akihiko Odaki
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								8af7f3b063 
								
							 
						 
						
							
							
								
								Preload libjemalloc.so for long-running Ruby ( #16462 )  
							
							 
							
							... 
							
							
							
							Always mark jemalloc needed if jemalloc is enabled by akihikodaki · Pull Request #4627  · ruby/ruby
https://github.com/ruby/ruby/pull/4627 
> Symbols exported by jemalloc is referred by the shared library but not
> by the executables when building Ruby as a shared library with
> jemalloc. It causes shared libraries such as the GNU C++ library
> occasionally rely on the memory allocator provided by the standard C
> library. Worse, the resolved symbols can later be replaced with
> jemalloc, and jemalloc may see pointers from the standard C library,
> which results in various failures.
> e.g. https://github.com/tootsuite/mastodon/issues/15751 
As a workaround, do not rely on jemalloc enablement of Ruby, and
preload libjemalloc.so instead. 
							
						 
						
							2021-07-05 19:16:35 +02:00  
						
					 
				
					
						
							
							
								 
								Ikko Ashimine
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								67226acf7e 
								
							 
						 
						
							
							
								
								Fix typo in tag_feed_spec.rb ( #16466 )  
							
							 
							
							... 
							
							
							
							existant -> existent 
							
						 
						
							2021-07-05 19:16:21 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								1381e0e1d9 
								
							 
						 
						
							
							
								
								Fix pop-in player display when poster has long username or handle ( #16468 )  
							
							 
							
							
							
						 
						
							2021-07-05 19:16:06 +02:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								9f76be5e7d 
								
							 
						 
						
							
							
								
								Bump eslint from 7.29.0 to 7.30.0 ( #16461 )  
							
							 
							
							... 
							
							
							
							Bumps [eslint](https://github.com/eslint/eslint ) from 7.29.0 to 7.30.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v7.29.0...v7.30.0 )
---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-07-04 11:59:37 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								23c180b02b 
								
							 
						 
						
							
							
								
								Bump @rails/ujs from 6.1.3 to 6.1.4 ( #16442 )  
							
							 
							
							... 
							
							
							
							Bumps [@rails/ujs](https://github.com/rails/rails ) from 6.1.3 to 6.1.4.
- [Release notes](https://github.com/rails/rails/releases )
- [Commits](https://github.com/rails/rails/compare/v6.1.3...v6.1.4 )
---
updated-dependencies:
- dependency-name: "@rails/ujs"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-07-04 05:07:46 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								7b14b8074d 
								
							 
						 
						
							
							
								
								Bump rails from 6.1.3.2 to 6.1.4 ( #16436 )  
							
							 
							
							... 
							
							
							
							Bumps [rails](https://github.com/rails/rails ) from 6.1.3.2 to 6.1.4.
- [Release notes](https://github.com/rails/rails/releases )
- [Commits](https://github.com/rails/rails/compare/v6.1.3.2...v6.1.4 )
---
updated-dependencies:
- dependency-name: rails
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-07-04 05:07:32 +09:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								49219508bc 
								
							 
						 
						
							
							
								
								Fix anonymous access to outbox not being cached by the reverse proxy ( #16458 )  
							
							 
							
							... 
							
							
							
							* Fix anonymous access to outbox not being cached by the reverse proxy
Up until now, anonymous access to outbox was marked as public, but with a
0 duration for caching, which means remote proxies would only serve from cache
when the server was completely overwhelmed.
Changed that cache duration to one minute, so that repeated anonymous access
to one account's outbox can be appropriately cached.
Also added `Signature` to the `Vary` header in case a page is requested, so
that authenticated fetches are never served from cache (which only contains
public toots).
* Remove Vary: Accept header from webfinger controller
Indeed, we have stopped returning xrd, and only ever return jrd, so the
Accept request header does not matter anymore.
* Cache negative webfinger hits for 3 minutes 
							
						 
						
							2021-07-03 21:13:47 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								0c2eb949fc 
								
							 
						 
						
							
							
								
								Merge pull request  #1560  from ClearlyClaire/glitch-soc/merge-upstream  
							
							 
							
							... 
							
							
							
							Merge upstream changes 
							
						 
						
							2021-07-02 16:57:28 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
							
							
								
							
							
								1e2097afd4 
								
							 
						 
						
							
							
								
								Merge branch 'main' into glitch-soc/merge-upstream  
							
							 
							
							
							
						 
						
							2021-07-02 16:12:11 +02:00  
						
					 
				
					
						
							
							
								 
								Eugen Rochko
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								38b3419950 
								
							 
						 
						
							
							
								
								Fix not being able to suspend accounts that already have a canonical e-mail block ( #16455 )  
							
							 
							
							
							
						 
						
							2021-07-02 12:03:15 +02:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								92c8c30e17 
								
							 
						 
						
							
							
								
								Bump ws from 7.5.0 to 7.5.1 ( #16452 )  
							
							 
							
							... 
							
							
							
							Bumps [ws](https://github.com/websockets/ws ) from 7.5.0 to 7.5.1.
- [Release notes](https://github.com/websockets/ws/releases )
- [Commits](https://github.com/websockets/ws/compare/7.5.0...7.5.1 )
---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-07-01 02:19:30 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								01de07c91a 
								
							 
						 
						
							
							
								
								Bump rubocop from 1.17.0 to 1.18.1 ( #16451 )  
							
							 
							
							... 
							
							
							
							Bumps [rubocop](https://github.com/rubocop/rubocop ) from 1.17.0 to 1.18.1.
- [Release notes](https://github.com/rubocop/rubocop/releases )
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop/compare/v1.17.0...v1.18.1 )
---
updated-dependencies:
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-07-01 01:59:58 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								3460df6fe3 
								
							 
						 
						
							
							
								
								Bump sidekiq-unique-jobs from 7.0.12 to 7.1.1 ( #16450 )  
							
							 
							
							... 
							
							
							
							Bumps [sidekiq-unique-jobs](https://github.com/mhenrixon/sidekiq-unique-jobs ) from 7.0.12 to 7.1.1.
- [Release notes](https://github.com/mhenrixon/sidekiq-unique-jobs/releases )
- [Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.0.12...v7.1.1 )
---
updated-dependencies:
- dependency-name: sidekiq-unique-jobs
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-07-01 00:45:49 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								78acea283d 
								
							 
						 
						
							
							
								
								Bump babel-jest from 27.0.2 to 27.0.6 ( #16441 )  
							
							 
							
							... 
							
							
							
							Bumps [babel-jest](https://github.com/facebook/jest/tree/HEAD/packages/babel-jest ) from 27.0.2 to 27.0.6.
- [Release notes](https://github.com/facebook/jest/releases )
- [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md )
- [Commits](https://github.com/facebook/jest/commits/v27.0.6/packages/babel-jest )
---
updated-dependencies:
- dependency-name: babel-jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-30 23:41:10 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								6f533710e0 
								
							 
						 
						
							
							
								
								Bump rubocop-rails from 2.11.0 to 2.11.1 ( #16439 )  
							
							 
							
							... 
							
							
							
							Bumps [rubocop-rails](https://github.com/rubocop/rubocop-rails ) from 2.11.0 to 2.11.1.
- [Release notes](https://github.com/rubocop/rubocop-rails/releases )
- [Changelog](https://github.com/rubocop/rubocop-rails/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop-rails/compare/v2.11.0...v2.11.1 )
---
updated-dependencies:
- dependency-name: rubocop-rails
  dependency-type: direct:development
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-30 23:40:07 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								90413598a3 
								
							 
						 
						
							
							
								
								Bump @babel/preset-env from 7.14.5 to 7.14.7 ( #16443 )  
							
							 
							
							... 
							
							
							
							Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.14.5 to 7.14.7.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.14.7/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-30 23:37:32 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								c5f8c78a07 
								
							 
						 
						
							
							
								
								Bump mini-css-extract-plugin from 1.6.0 to 1.6.2 ( #16444 )  
							
							 
							
							... 
							
							
							
							Bumps [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin ) from 1.6.0 to 1.6.2.
- [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases )
- [Changelog](https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/CHANGELOG.md )
- [Commits](https://github.com/webpack-contrib/mini-css-extract-plugin/compare/v1.6.0...v1.6.2 )
---
updated-dependencies:
- dependency-name: mini-css-extract-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-30 23:37:01 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								b983fdca54 
								
							 
						 
						
							
							
								
								Bump oj from 3.11.6 to 3.11.7 ( #16437 )  
							
							 
							
							... 
							
							
							
							Bumps [oj](https://github.com/ohler55/oj ) from 3.11.6 to 3.11.7.
- [Release notes](https://github.com/ohler55/oj/releases )
- [Changelog](https://github.com/ohler55/oj/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ohler55/oj/compare/v3.11.6...v3.11.7 )
---
updated-dependencies:
- dependency-name: oj
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-30 23:36:36 +09:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								f4b9d94ce7 
								
							 
						 
						
							
							
								
								Merge pull request  #1559  from ClearlyClaire/glitch-soc/merge-upstream  
							
							 
							
							... 
							
							
							
							Merge upstream changes 
							
						 
						
							2021-06-30 11:13:38 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
							
							
								
							
							
								81d8a20a88 
								
							 
						 
						
							
							
								
								Merge branch 'main' into glitch-soc/merge-upstream  
							
							 
							
							
							
						 
						
							2021-06-30 09:43:18 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								653c925beb 
								
							 
						 
						
							
							
								
								Fix missing on_delete: :cascade for canonical_email_blocks foreign key ( #16448 )  
							
							 
							
							
							
						 
						
							2021-06-30 06:13:55 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								a4c828f8e7 
								
							 
						 
						
							
							
								
								Merge pull request  #1558  from ClearlyClaire/glitch-soc/merge-upstream  
							
							 
							
							... 
							
							
							
							Merge upstream changes 
							
						 
						
							2021-06-30 01:01:43 +02:00  
						
					 
				
					
						
							
							
								 
								David Sterry
							
						 
						
							 
							
							
							
							
								
							
							
								ba8f4535e3 
								
							 
						 
						
							
							
								
								[Glitch] Hide /about/more footer link in limited federation mode  
							
							 
							
							... 
							
							
							
							Port 7c27ccb8d8  to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com> 
							
						 
						
							2021-06-30 00:45:00 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
							
							
								
							
							
								d1780fb9a4 
								
							 
						 
						
							
							
								
								Merge branch 'main' into glitch-soc/merge-upstream  
							
							 
							
							... 
							
							
							
							Conflicts:
- `.github/ISSUE_TEMPLATE/bug_report.md`:
  Removed upstream, while we had a checkbox telling people to check if the
  issue was present upstream. Removed the file as well. 
							
						 
						
							2021-06-30 00:42:52 +02:00  
						
					 
				
					
						
							
							
								 
								David Sterry
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								7c27ccb8d8 
								
							 
						 
						
							
							
								
								Fix   #16407  ( #16432 )  
							
							 
							
							
							
						 
						
							2021-06-27 22:31:28 +02:00  
						
					 
				
					
						
							
							
								 
								Yamagishi Kazutoshi
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								04a552f076 
								
							 
						 
						
							
							
								
								Replace to issue form ( #16429 )  
							
							 
							
							
							
						 
						
							2021-06-25 15:01:52 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								ff3626269e 
								
							 
						 
						
							
							
								
								Merge pull request  #1557  from ClearlyClaire/glitch-soc/merge-upstream  
							
							 
							
							... 
							
							
							
							Merge upstream changes 
							
						 
						
							2021-06-25 12:20:46 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
							
							
								
							
							
								a993ff6e2f 
								
							 
						 
						
							
							
								
								Merge branch 'main' into glitch-soc/merge-upstream  
							
							 
							
							
							
						 
						
							2021-06-25 10:44:06 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								9e5a1daa9b 
								
							 
						 
						
							
							
								
								Fix styling of boost button in media modal not reflecting ability to boost ( #16387 )  
							
							 
							
							
							
						 
						
							2021-06-25 04:45:30 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								e592e47e19 
								
							 
						 
						
							
							
								
								Fix WebUI crash when a toot with a playing video gets deleted ( #16384 )  
							
							 
							
							... 
							
							
							
							* Fix WebUI crash when a toot with a playing video gets deleted
* Fix pop-up player not closing the moment a status is deleted 
							
						 
						
							2021-06-25 04:45:17 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								07ff8cb019 
								
							 
						 
						
							
							
								
								Fix compression-webpack-plugin configuration ( #16356 )  
							
							 
							
							... 
							
							
							
							compression-webpack-plugin 6.0.0 has changed how filenames were generated,
so from #14892  onward (Mastodon v3.3.0 and later), compressed files were
output to a file named `.gz` instead of the correct filenames. 
							
						 
						
							2021-06-25 04:45:04 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								0eebade48c 
								
							 
						 
						
							
							
								
								Merge pull request  #1556  from ClearlyClaire/glitch-soc/merge-upstream  
							
							 
							
							... 
							
							
							
							Merge upstream changes 
							
						 
						
							2021-06-24 19:22:13 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
							
							
								
							
							
								83b4e8584b 
								
							 
						 
						
							
							
								
								Merge branch 'main' into glitch-soc/merge-upstream  
							
							 
							
							
							
						 
						
							2021-06-24 18:59:19 +02:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								9cd724a3b4 
								
							 
						 
						
							
							
								
								Bump rubocop from 1.16.1 to 1.17.0 ( #16424 )  
							
							 
							
							... 
							
							
							
							Bumps [rubocop](https://github.com/rubocop/rubocop ) from 1.16.1 to 1.17.0.
- [Release notes](https://github.com/rubocop/rubocop/releases )
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop/compare/v1.16.1...v1.17.0 )
---
updated-dependencies:
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-25 00:55:34 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								afc170a231 
								
							 
						 
						
							
							
								
								Bump rubocop-rails from 2.10.1 to 2.11.0 ( #16419 )  
							
							 
							
							... 
							
							
							
							Bumps [rubocop-rails](https://github.com/rubocop/rubocop-rails ) from 2.10.1 to 2.11.0.
- [Release notes](https://github.com/rubocop/rubocop-rails/releases )
- [Changelog](https://github.com/rubocop/rubocop-rails/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop-rails/compare/v2.10.1...v2.11.0 )
---
updated-dependencies:
- dependency-name: rubocop-rails
  dependency-type: direct:development
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-24 23:57:03 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								05a62819c7 
								
							 
						 
						
							
							
								
								Bump bindata from 2.4.8 to 2.4.10 ( #16430 )  
							
							 
							
							... 
							
							
							
							Bumps [bindata](https://github.com/dmendel/bindata ) from 2.4.8 to 2.4.10.
- [Release notes](https://github.com/dmendel/bindata/releases )
- [Changelog](https://github.com/dmendel/bindata/blob/master/ChangeLog.rdoc )
- [Commits](https://github.com/dmendel/bindata/compare/v2.4.8...v2.4.10 )
---
updated-dependencies:
- dependency-name: bindata
  dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-24 23:56:43 +09:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								62bf929684 
								
							 
						 
						
							
							
								
								Merge pull request  #1555  from ClearlyClaire/glitch-soc/fixes/video-player-crash  
							
							 
							
							... 
							
							
							
							[Glitch] Fix WebUI crash when a toot with a playing video gets deleted 
							
						 
						
							2021-06-24 16:00:26 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
							
							
								
							
							
								b6f952ec5b 
								
							 
						 
						
							
							
								
								[Glitch] Fix styling of boost button in media modal not reflecting ability to boost  
							
							 
							
							... 
							
							
							
							Port tootsuite#16387 to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com> 
							
						 
						
							2021-06-24 15:43:04 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
							
							
								
							
							
								f024f523b2 
								
							 
						 
						
							
							
								
								Fix pop-up player not closing the moment a status is deleted  
							
							 
							
							... 
							
							
							
							Signed-off-by: Claire <claire.github-309c@sitedethib.com> 
							
						 
						
							2021-06-24 15:19:18 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
							
							
								
							
							
								036ec18fb3 
								
							 
						 
						
							
							
								
								Fix WebUI crash when a toot with a playing video gets deleted  
							
							 
							
							... 
							
							
							
							Signed-off-by: Claire <claire.github-309c@sitedethib.com> 
							
						 
						
							2021-06-24 15:19:12 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								2a4e44a725 
								
							 
						 
						
							
							
								
								Merge pull request  #1553  from ClearlyClaire/glitch-soc/merge-upstream  
							
							 
							
							... 
							
							
							
							Merge upstream changes 
							
						 
						
							2021-06-24 15:16:38 +02:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
							
							
								
							
							
								86aca08ec6 
								
							 
						 
						
							
							
								
								Merge branch 'main' into glitch-soc/merge-upstream  
							
							 
							
							
							
						 
						
							2021-06-24 08:08:02 +02:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								a6f03e179a 
								
							 
						 
						
							
							
								
								Bump @babel/runtime from 7.14.5 to 7.14.6 ( #16423 )  
							
							 
							
							... 
							
							
							
							Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime ) from 7.14.5 to 7.14.6.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.14.6/packages/babel-runtime )
---
updated-dependencies:
- dependency-name: "@babel/runtime"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-24 07:50:13 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								e724a3ea64 
								
							 
						 
						
							
							
								
								Bump eslint from 7.28.0 to 7.29.0 ( #16422 )  
							
							 
							
							... 
							
							
							
							Bumps [eslint](https://github.com/eslint/eslint ) from 7.28.0 to 7.29.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v7.28.0...v7.29.0 )
---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-24 07:49:56 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								aab731e926 
								
							 
						 
						
							
							
								
								Bump oj from 3.11.5 to 3.11.6 ( #16421 )  
							
							 
							
							... 
							
							
							
							Bumps [oj](https://github.com/ohler55/oj ) from 3.11.5 to 3.11.6.
- [Release notes](https://github.com/ohler55/oj/releases )
- [Changelog](https://github.com/ohler55/oj/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ohler55/oj/compare/v3.11.5...v3.11.6 )
---
updated-dependencies:
- dependency-name: oj
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-24 07:49:40 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								f2a1cf7af9 
								
							 
						 
						
							
							
								
								Bump sass from 1.34.1 to 1.35.1 ( #16420 )  
							
							 
							
							... 
							
							
							
							Bumps [sass](https://github.com/sass/dart-sass ) from 1.34.1 to 1.35.1.
- [Release notes](https://github.com/sass/dart-sass/releases )
- [Changelog](https://github.com/sass/dart-sass/blob/master/CHANGELOG.md )
- [Commits](https://github.com/sass/dart-sass/compare/1.34.1...1.35.1 )
---
updated-dependencies:
- dependency-name: sass
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-24 07:49:29 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								31ec06bcf9 
								
							 
						 
						
							
							
								
								Bump @babel/core from 7.14.5 to 7.14.6 ( #16425 )  
							
							 
							
							... 
							
							
							
							Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.14.5 to 7.14.6.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.14.6/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-24 07:48:37 +09:00  
						
					 
				
					
						
							
							
								 
								dependabot[bot]
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								50ce660277 
								
							 
						 
						
							
							
								
								Bump ws from 7.4.6 to 7.5.0 ( #16426 )  
							
							 
							
							... 
							
							
							
							Bumps [ws](https://github.com/websockets/ws ) from 7.4.6 to 7.5.0.
- [Release notes](https://github.com/websockets/ws/releases )
- [Commits](https://github.com/websockets/ws/compare/7.4.6...7.5.0 )
---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2021-06-24 07:47:47 +09:00  
						
					 
				
					
						
							
							
								 
								Claire
							
						 
						
							 
							
							
								
								
							
							
							
								
							
							
								1c21dcfa35 
								
							 
						 
						
							
							
								
								Fix newlines in accout notes added by the Move handler ( #16415 )  
							
							 
							
							... 
							
							
							
							* Fix newlines in account notes added by the move handler
* Make MoveWorker more robust 
							
						 
						
							2021-06-23 23:55:47 +02:00