Merge pull request #1733 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
This commit is contained in:
		@@ -79,6 +79,11 @@ module.exports = {
 | 
			
		||||
    'no-irregular-whitespace': 'error',
 | 
			
		||||
    'no-mixed-spaces-and-tabs': 'warn',
 | 
			
		||||
    'no-nested-ternary': 'warn',
 | 
			
		||||
    'no-restricted-properties': [
 | 
			
		||||
      'error',
 | 
			
		||||
      { property: 'substring', message: 'Use .slice instead of .substring.' },
 | 
			
		||||
      { property: 'substr', message: 'Use .slice instead of .substr.' },
 | 
			
		||||
    ],
 | 
			
		||||
    'no-trailing-spaces': 'warn',
 | 
			
		||||
    'no-undef': 'error',
 | 
			
		||||
    'no-unreachable': 'error',
 | 
			
		||||
 
 | 
			
		||||
@@ -432,14 +432,14 @@ GEM
 | 
			
		||||
    openssl (2.2.0)
 | 
			
		||||
    openssl-signature_algorithm (0.4.0)
 | 
			
		||||
    orm_adapter (0.5.0)
 | 
			
		||||
    ox (2.14.10)
 | 
			
		||||
    ox (2.14.11)
 | 
			
		||||
    parallel (1.22.1)
 | 
			
		||||
    parser (3.1.1.0)
 | 
			
		||||
      ast (~> 2.4.1)
 | 
			
		||||
    parslet (2.0.0)
 | 
			
		||||
    pastel (0.8.0)
 | 
			
		||||
      tty-color (~> 0.5)
 | 
			
		||||
    pg (1.3.4)
 | 
			
		||||
    pg (1.3.5)
 | 
			
		||||
    pghero (2.8.2)
 | 
			
		||||
      activerecord (>= 5)
 | 
			
		||||
    pkg-config (1.4.7)
 | 
			
		||||
@@ -607,7 +607,7 @@ GEM
 | 
			
		||||
      sidekiq (>= 3)
 | 
			
		||||
      thwait
 | 
			
		||||
      tilt (>= 1.4.0)
 | 
			
		||||
    sidekiq-unique-jobs (7.1.15)
 | 
			
		||||
    sidekiq-unique-jobs (7.1.16)
 | 
			
		||||
      brpoplpush-redis_script (> 0.1.1, <= 2.0.0)
 | 
			
		||||
      concurrent-ruby (~> 1.0, >= 1.0.5)
 | 
			
		||||
      sidekiq (>= 5.0, < 8.0)
 | 
			
		||||
 
 | 
			
		||||
@@ -24,7 +24,7 @@ const trim = (text, len) => {
 | 
			
		||||
    return text;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  return text.substring(0, cut) + (text.length > len ? '…' : '');
 | 
			
		||||
  return text.slice(0, cut) + (text.length > len ? '…' : '');
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const domParser = new DOMParser();
 | 
			
		||||
 
 | 
			
		||||
@@ -90,7 +90,7 @@ export const fileNameFromURL = str => {
 | 
			
		||||
  const pathname = url.pathname;
 | 
			
		||||
  const index    = pathname.lastIndexOf('/');
 | 
			
		||||
 | 
			
		||||
  return pathname.substring(index + 1);
 | 
			
		||||
  return pathname.slice(index + 1);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export default @injectIntl
 | 
			
		||||
 
 | 
			
		||||
@@ -124,7 +124,7 @@ function search(value, { emojisToShowFilter, maxResults, include, exclude, custo
 | 
			
		||||
          for (let id in aPool) {
 | 
			
		||||
            let emoji = aPool[id],
 | 
			
		||||
              { search } = emoji,
 | 
			
		||||
              sub = value.substr(0, length),
 | 
			
		||||
              sub = value.slice(0, length),
 | 
			
		||||
              subIndex = search.indexOf(sub);
 | 
			
		||||
 | 
			
		||||
            if (subIndex !== -1) {
 | 
			
		||||
 
 | 
			
		||||
@@ -124,7 +124,7 @@ function search(value, { emojisToShowFilter, maxResults, include, exclude, custo
 | 
			
		||||
          for (let id in aPool) {
 | 
			
		||||
            let emoji = aPool[id],
 | 
			
		||||
              { search } = emoji,
 | 
			
		||||
              sub = value.substr(0, length),
 | 
			
		||||
              sub = value.slice(0, length),
 | 
			
		||||
              subIndex = search.indexOf(sub);
 | 
			
		||||
 | 
			
		||||
            if (subIndex !== -1) {
 | 
			
		||||
 
 | 
			
		||||
@@ -32,7 +32,7 @@ const trim = (text, len) => {
 | 
			
		||||
    return text;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  return text.substring(0, cut) + (text.length > len ? '…' : '');
 | 
			
		||||
  return text.slice(0, cut) + (text.length > len ? '…' : '');
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const domParser = new DOMParser();
 | 
			
		||||
 
 | 
			
		||||
@@ -91,7 +91,7 @@ export const fileNameFromURL = str => {
 | 
			
		||||
  const pathname = url.pathname;
 | 
			
		||||
  const index    = pathname.lastIndexOf('/');
 | 
			
		||||
 | 
			
		||||
  return pathname.substring(index + 1);
 | 
			
		||||
  return pathname.slice(index + 1);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export default @injectIntl
 | 
			
		||||
 
 | 
			
		||||
@@ -139,6 +139,10 @@ class REST::StatusSerializer < ActiveModel::Serializer
 | 
			
		||||
 | 
			
		||||
  class ApplicationSerializer < ActiveModel::Serializer
 | 
			
		||||
    attributes :name, :website
 | 
			
		||||
 | 
			
		||||
    def website
 | 
			
		||||
      object.website.presence
 | 
			
		||||
    end
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  class MentionSerializer < ActiveModel::Serializer
 | 
			
		||||
 
 | 
			
		||||
@@ -139,7 +139,7 @@
 | 
			
		||||
    "react-motion": "^0.5.2",
 | 
			
		||||
    "react-notification": "^6.8.5",
 | 
			
		||||
    "react-overlays": "^0.9.3",
 | 
			
		||||
    "react-redux": "^7.2.6",
 | 
			
		||||
    "react-redux": "^7.2.8",
 | 
			
		||||
    "react-redux-loading-bar": "^4.0.8",
 | 
			
		||||
    "react-router-dom": "^4.1.1",
 | 
			
		||||
    "react-router-scroll-4": "^1.0.0-beta.1",
 | 
			
		||||
@@ -148,7 +148,7 @@
 | 
			
		||||
    "react-swipeable-views": "^0.14.0",
 | 
			
		||||
    "react-textarea-autosize": "^8.3.3",
 | 
			
		||||
    "react-toggle": "^4.1.2",
 | 
			
		||||
    "redis": "^4.0.4",
 | 
			
		||||
    "redis": "^4.0.6",
 | 
			
		||||
    "redux": "^4.1.2",
 | 
			
		||||
    "redux-immutable": "^4.0.0",
 | 
			
		||||
    "redux-thunk": "^2.4.1",
 | 
			
		||||
@@ -157,7 +157,7 @@
 | 
			
		||||
    "requestidlecallback": "^0.3.0",
 | 
			
		||||
    "reselect": "^4.1.5",
 | 
			
		||||
    "rimraf": "^3.0.2",
 | 
			
		||||
    "sass": "^1.49.9",
 | 
			
		||||
    "sass": "^1.49.11",
 | 
			
		||||
    "sass-loader": "^10.2.0",
 | 
			
		||||
    "stacktrace-js": "^2.0.2",
 | 
			
		||||
    "stringz": "^2.1.0",
 | 
			
		||||
@@ -187,7 +187,7 @@
 | 
			
		||||
    "eslint-plugin-promise": "~6.0.0",
 | 
			
		||||
    "eslint-plugin-react": "~7.29.4",
 | 
			
		||||
    "jest": "^27.5.1",
 | 
			
		||||
    "prettier": "^2.6.1",
 | 
			
		||||
    "prettier": "^2.6.2",
 | 
			
		||||
    "raf": "^3.4.1",
 | 
			
		||||
    "react-intl-translations-manager": "^5.0.3",
 | 
			
		||||
    "react-test-renderer": "^16.14.0",
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										52
									
								
								yarn.lock
									
									
									
									
									
								
							
							
						
						
									
										52
									
								
								yarn.lock
									
									
									
									
									
								
							@@ -1415,10 +1415,10 @@
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@node-redis/bloom/-/bloom-1.0.1.tgz#144474a0b7dc4a4b91badea2cfa9538ce0a1854e"
 | 
			
		||||
  integrity sha512-mXEBvEIgF4tUzdIN89LiYsbi6//EdpFA7L8M+DHCvePXg+bfHWi+ct5VI6nHUFQE5+ohm/9wmgihCH3HSkeKsw==
 | 
			
		||||
 | 
			
		||||
"@node-redis/client@1.0.4":
 | 
			
		||||
  version "1.0.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@node-redis/client/-/client-1.0.4.tgz#fe185750df3bcc07524f63fe8dbc8d14d22d6cbb"
 | 
			
		||||
  integrity sha512-IM/NRAqg7MvNC3bIRQipXGrEarunrdgvrbAzsd3ty93LSHi/M+ybQulOERQi8a3M+P5BL8HenwXjiIoKm6ml2g==
 | 
			
		||||
"@node-redis/client@1.0.5":
 | 
			
		||||
  version "1.0.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@node-redis/client/-/client-1.0.5.tgz#ebac5e2bbf12214042a37621604973a954ede755"
 | 
			
		||||
  integrity sha512-ESZ3bd1f+od62h4MaBLKum+klVJfA4wAeLHcVQBkoXa1l0viFesOWnakLQqKg+UyrlJhZmXJWtu0Y9v7iTMrig==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    cluster-key-slot "1.1.0"
 | 
			
		||||
    generic-pool "3.8.2"
 | 
			
		||||
@@ -1435,10 +1435,10 @@
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@node-redis/json/-/json-1.0.2.tgz#8ad2d0f026698dc1a4238cc3d1eb099a3bee5ab8"
 | 
			
		||||
  integrity sha512-qVRgn8WfG46QQ08CghSbY4VhHFgaTY71WjpwRBGEuqGPfWwfRcIf3OqSpR7Q/45X+v3xd8mvYjywqh0wqJ8T+g==
 | 
			
		||||
 | 
			
		||||
"@node-redis/search@1.0.3":
 | 
			
		||||
  version "1.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@node-redis/search/-/search-1.0.3.tgz#7c3d026bf994caf82019fd0c3924cfc09f041a29"
 | 
			
		||||
  integrity sha512-rsrzkGWI84di/uYtEctS/4qLusWt0DESx/psjfB0TFpORDhe7JfC0h8ary+eHulTksumor244bXLRSqQXbFJmw==
 | 
			
		||||
"@node-redis/search@1.0.5":
 | 
			
		||||
  version "1.0.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@node-redis/search/-/search-1.0.5.tgz#96050007eb7c50a7e47080320b4f12aca8cf94c4"
 | 
			
		||||
  integrity sha512-MCOL8iCKq4v+3HgEQv8zGlSkZyXSXtERgrAJ4TSryIG/eLFy84b57KmNNa/V7M1Q2Wd2hgn2nPCGNcQtk1R1OQ==
 | 
			
		||||
 | 
			
		||||
"@node-redis/time-series@1.0.2":
 | 
			
		||||
  version "1.0.2"
 | 
			
		||||
@@ -8661,10 +8661,10 @@ prelude-ls@~1.1.2:
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
 | 
			
		||||
  integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
 | 
			
		||||
 | 
			
		||||
prettier@^2.6.1:
 | 
			
		||||
  version "2.6.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.1.tgz#d472797e0d7461605c1609808e27b80c0f9cfe17"
 | 
			
		||||
  integrity sha512-8UVbTBYGwN37Bs9LERmxCPjdvPxlEowx2urIL6urHzdb3SDq4B/Z6xLFCblrSnE4iKWcS6ziJ3aOYrc1kz/E2A==
 | 
			
		||||
prettier@^2.6.2:
 | 
			
		||||
  version "2.6.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032"
 | 
			
		||||
  integrity sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==
 | 
			
		||||
 | 
			
		||||
pretty-format@^25.2.1, pretty-format@^25.5.0:
 | 
			
		||||
  version "25.5.0"
 | 
			
		||||
@@ -9021,10 +9021,10 @@ react-redux-loading-bar@^4.0.8:
 | 
			
		||||
    prop-types "^15.6.2"
 | 
			
		||||
    react-lifecycles-compat "^3.0.2"
 | 
			
		||||
 | 
			
		||||
react-redux@^7.2.6:
 | 
			
		||||
  version "7.2.6"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.6.tgz#49633a24fe552b5f9caf58feb8a138936ddfe9aa"
 | 
			
		||||
  integrity sha512-10RPdsz0UUrRL1NZE0ejTkucnclYSgXp5q+tB5SWx2qeG2ZJQJyymgAhwKy73yiL/13btfB6fPr+rgbMAaZIAQ==
 | 
			
		||||
react-redux@^7.2.8:
 | 
			
		||||
  version "7.2.8"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.8.tgz#a894068315e65de5b1b68899f9c6ee0923dd28de"
 | 
			
		||||
  integrity sha512-6+uDjhs3PSIclqoCk0kd6iX74gzrGc3W5zcAjbrFgEdIjRSQObdIwfx80unTkVUYvbQ95Y8Av3OvFHq1w5EOUw==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.15.4"
 | 
			
		||||
    "@types/react-redux" "^7.1.20"
 | 
			
		||||
@@ -9239,16 +9239,16 @@ redis-parser@3.0.0:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    redis-errors "^1.0.0"
 | 
			
		||||
 | 
			
		||||
redis@^4.0.4:
 | 
			
		||||
  version "4.0.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/redis/-/redis-4.0.4.tgz#b567f82f59086df38433982f7f424b48e924ec7a"
 | 
			
		||||
  integrity sha512-KaM1OAj/nGrSeybmmOWSMY0LXTGT6FVWgUZZrd2MYzXKJ+VGtqVaciGQeNMfZiQX+kDM8Ke4uttb54m2rm6V0A==
 | 
			
		||||
redis@^4.0.6:
 | 
			
		||||
  version "4.0.6"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/redis/-/redis-4.0.6.tgz#a2ded4d9f4f4bad148e54781051618fc684cd858"
 | 
			
		||||
  integrity sha512-IaPAxgF5dV0jx+A9l6yd6R9/PAChZIoAskDVRzUODeLDNhsMlq7OLLTmu0AwAr0xjrJ1bibW5xdpRwqIQ8Q0Xg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@node-redis/bloom" "1.0.1"
 | 
			
		||||
    "@node-redis/client" "1.0.4"
 | 
			
		||||
    "@node-redis/client" "1.0.5"
 | 
			
		||||
    "@node-redis/graph" "1.0.0"
 | 
			
		||||
    "@node-redis/json" "1.0.2"
 | 
			
		||||
    "@node-redis/search" "1.0.3"
 | 
			
		||||
    "@node-redis/search" "1.0.5"
 | 
			
		||||
    "@node-redis/time-series" "1.0.2"
 | 
			
		||||
 | 
			
		||||
redux-immutable@^4.0.0:
 | 
			
		||||
@@ -9626,10 +9626,10 @@ sass-loader@^10.2.0:
 | 
			
		||||
    schema-utils "^3.0.0"
 | 
			
		||||
    semver "^7.3.2"
 | 
			
		||||
 | 
			
		||||
sass@^1.49.9:
 | 
			
		||||
  version "1.49.9"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/sass/-/sass-1.49.9.tgz#b15a189ecb0ca9e24634bae5d1ebc191809712f9"
 | 
			
		||||
  integrity sha512-YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A==
 | 
			
		||||
sass@^1.49.11:
 | 
			
		||||
  version "1.49.11"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/sass/-/sass-1.49.11.tgz#1ffeb77faeed8b806a2a1e021d7c9fd3fc322cb7"
 | 
			
		||||
  integrity sha512-wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    chokidar ">=3.0.0 <4.0.0"
 | 
			
		||||
    immutable "^4.0.0"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user