소스 검색

Allow same public key for multiple recipients

Will Browning 5 년 전
부모
커밋
1099b3c43c
5개의 변경된 파일105개의 추가작업 그리고 66개의 파일을 삭제
  1. 11 1
      README.md
  2. 1 1
      app/Http/Controllers/Api/RecipientKeyController.php
  3. 53 49
      composer.lock
  4. 38 13
      package-lock.json
  5. 2 2
      package.json

+ 11 - 1
README.md

@@ -4,6 +4,12 @@ This is the source code for self-hosting AnonAddy.
 
 
 ## FAQ
 ## FAQ
 
 
+#### **Why is it called AnonAddy?**
+
+AnonAddy is short for "Anonymous Email Address". The word "Addy" is internet slang for email address, e.g.
+
+> "My email addy is being spammed. I should've kept it private."
+
 #### **Why did you make this site?**
 #### **Why did you make this site?**
 
 
 I made this service after trying a few other options that do a similar thing. I was really interested in how they worked and loved the thought of protecting my real email addresses from spam.
 I made this service after trying a few other options that do a similar thing. I was really interested in how they worked and loved the thought of protecting my real email addresses from spam.
@@ -166,6 +172,10 @@ I don't use rolling 30 day total as the only way to do this would be to log the
 
 
 Blocked emails do not count towards your bandwidth (e.g. an alias is inactive or deleted).
 Blocked emails do not count towards your bandwidth (e.g. an alias is inactive or deleted).
 
 
+#### **How many emails can I receive before I go over my bandwidth limit?**
+
+The average email is about 76800 bytes (75KB), this is roughly equivalent to 7,000 words in plain text. So the 10MB monthly allowance would be around 140 emails and the Pro plan's 500MB would be almost 7,000 emails.
+
 #### **What happens if I go over my bandwidth limit in a given month?**
 #### **What happens if I go over my bandwidth limit in a given month?**
 
 
 If you get close to your limit you'll be sent an email letting you know. If you continue and go over your limit the server will start discarding emails until your bandwidth resets the next month.
 If you get close to your limit you'll be sent an email letting you know. If you continue and go over your limit the server will start discarding emails until your bandwidth resets the next month.
@@ -204,7 +214,7 @@ My name is Will Browning, I'm a web developer from the UK and an advocate for on
 
 
 #### **I couldn't find an answer to my question, how can I contact you?**
 #### **I couldn't find an answer to my question, how can I contact you?**
 
 
-For any other questions just send an email to - [contact@anonaddy.com](mailto:contact@anonaddy.com) ([70E400B5064061EB84181DABEDADE14D67325B36](https://keys.openpgp.org/search?q=70E400B5064061EB84181DABEDADE14D67325B36))
+For any other questions just send an email to - [contact@anonaddy.com](mailto:contact@anonaddy.com) ([5FCAFD8A67D2A783CFF4D0E31AC6D923E6FB4EF7](https://keys.openpgp.org/search?q=5FCAFD8A67D2A783CFF4D0E31AC6D923E6FB4EF7))
 
 
 ## Self Hosting
 ## Self Hosting
 
 

+ 1 - 1
app/Http/Controllers/Api/RecipientKeyController.php

@@ -21,7 +21,7 @@ class RecipientKeyController extends Controller
 
 
         $info = $this->gnupg->import($request->key_data);
         $info = $this->gnupg->import($request->key_data);
 
 
-        if (!$info || !$info['imported']) {
+        if (!$info || !$info['fingerprint']) {
             return response('Key could not be imported', 404);
             return response('Key could not be imported', 404);
         }
         }
 
 

+ 53 - 49
composer.lock

@@ -195,16 +195,16 @@
         },
         },
         {
         {
             "name": "doctrine/cache",
             "name": "doctrine/cache",
-            "version": "v1.8.0",
+            "version": "v1.8.1",
             "source": {
             "source": {
                 "type": "git",
                 "type": "git",
                 "url": "https://github.com/doctrine/cache.git",
                 "url": "https://github.com/doctrine/cache.git",
-                "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
+                "reference": "d4374ae95b36062d02ef310100ed33d78738d76c"
             },
             },
             "dist": {
             "dist": {
                 "type": "zip",
                 "type": "zip",
-                "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
-                "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
+                "url": "https://api.github.com/repos/doctrine/cache/zipball/d4374ae95b36062d02ef310100ed33d78738d76c",
+                "reference": "d4374ae95b36062d02ef310100ed33d78738d76c",
                 "shasum": ""
                 "shasum": ""
             },
             },
             "require": {
             "require": {
@@ -239,6 +239,10 @@
                 "MIT"
                 "MIT"
             ],
             ],
             "authors": [
             "authors": [
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
                 {
                 {
                     "name": "Roman Borschel",
                     "name": "Roman Borschel",
                     "email": "roman@code-factory.org"
                     "email": "roman@code-factory.org"
@@ -247,10 +251,6 @@
                     "name": "Benjamin Eberlei",
                     "name": "Benjamin Eberlei",
                     "email": "kontakt@beberlei.de"
                     "email": "kontakt@beberlei.de"
                 },
                 },
-                {
-                    "name": "Guilherme Blanco",
-                    "email": "guilhermeblanco@gmail.com"
-                },
                 {
                 {
                     "name": "Jonathan Wage",
                     "name": "Jonathan Wage",
                     "email": "jonwage@gmail.com"
                     "email": "jonwage@gmail.com"
@@ -266,7 +266,7 @@
                 "cache",
                 "cache",
                 "caching"
                 "caching"
             ],
             ],
-            "time": "2018-08-21T18:01:43+00:00"
+            "time": "2019-10-28T09:31:32+00:00"
         },
         },
         {
         {
             "name": "doctrine/dbal",
             "name": "doctrine/dbal",
@@ -813,27 +813,28 @@
         },
         },
         {
         {
             "name": "guzzlehttp/guzzle",
             "name": "guzzlehttp/guzzle",
-            "version": "6.3.3",
+            "version": "6.4.1",
             "source": {
             "source": {
                 "type": "git",
                 "type": "git",
                 "url": "https://github.com/guzzle/guzzle.git",
                 "url": "https://github.com/guzzle/guzzle.git",
-                "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
+                "reference": "0895c932405407fd3a7368b6910c09a24d26db11"
             },
             },
             "dist": {
             "dist": {
                 "type": "zip",
                 "type": "zip",
-                "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
-                "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
+                "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0895c932405407fd3a7368b6910c09a24d26db11",
+                "reference": "0895c932405407fd3a7368b6910c09a24d26db11",
                 "shasum": ""
                 "shasum": ""
             },
             },
             "require": {
             "require": {
+                "ext-json": "*",
                 "guzzlehttp/promises": "^1.0",
                 "guzzlehttp/promises": "^1.0",
-                "guzzlehttp/psr7": "^1.4",
+                "guzzlehttp/psr7": "^1.6.1",
                 "php": ">=5.5"
                 "php": ">=5.5"
             },
             },
             "require-dev": {
             "require-dev": {
                 "ext-curl": "*",
                 "ext-curl": "*",
                 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
                 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
-                "psr/log": "^1.0"
+                "psr/log": "^1.1"
             },
             },
             "suggest": {
             "suggest": {
                 "psr/log": "Required for using the Log middleware"
                 "psr/log": "Required for using the Log middleware"
@@ -845,12 +846,12 @@
                 }
                 }
             },
             },
             "autoload": {
             "autoload": {
-                "files": [
-                    "src/functions_include.php"
-                ],
                 "psr-4": {
                 "psr-4": {
                     "GuzzleHttp\\": "src/"
                     "GuzzleHttp\\": "src/"
-                }
+                },
+                "files": [
+                    "src/functions_include.php"
+                ]
             },
             },
             "notification-url": "https://packagist.org/downloads/",
             "notification-url": "https://packagist.org/downloads/",
             "license": [
             "license": [
@@ -874,7 +875,7 @@
                 "rest",
                 "rest",
                 "web service"
                 "web service"
             ],
             ],
-            "time": "2018-04-22T15:46:56+00:00"
+            "time": "2019-10-23T15:58:00+00:00"
         },
         },
         {
         {
             "name": "guzzlehttp/promises",
             "name": "guzzlehttp/promises",
@@ -1158,16 +1159,16 @@
         },
         },
         {
         {
             "name": "laravel/framework",
             "name": "laravel/framework",
-            "version": "v6.3.0",
+            "version": "v6.4.0",
             "source": {
             "source": {
                 "type": "git",
                 "type": "git",
                 "url": "https://github.com/laravel/framework.git",
                 "url": "https://github.com/laravel/framework.git",
-                "reference": "80914c430fb5e49f492812d704ba6aeec03d80a2"
+                "reference": "bbaf5e956cb24512c48fc31129a5e357a09a8ea1"
             },
             },
             "dist": {
             "dist": {
                 "type": "zip",
                 "type": "zip",
-                "url": "https://api.github.com/repos/laravel/framework/zipball/80914c430fb5e49f492812d704ba6aeec03d80a2",
-                "reference": "80914c430fb5e49f492812d704ba6aeec03d80a2",
+                "url": "https://api.github.com/repos/laravel/framework/zipball/bbaf5e956cb24512c48fc31129a5e357a09a8ea1",
+                "reference": "bbaf5e956cb24512c48fc31129a5e357a09a8ea1",
                 "shasum": ""
                 "shasum": ""
             },
             },
             "require": {
             "require": {
@@ -1300,7 +1301,7 @@
                 "framework",
                 "framework",
                 "laravel"
                 "laravel"
             ],
             ],
-            "time": "2019-10-15T13:38:24+00:00"
+            "time": "2019-10-23T13:29:43+00:00"
         },
         },
         {
         {
             "name": "laravel/passport",
             "name": "laravel/passport",
@@ -1921,16 +1922,16 @@
         },
         },
         {
         {
             "name": "nikic/php-parser",
             "name": "nikic/php-parser",
-            "version": "v4.2.4",
+            "version": "v4.2.5",
             "source": {
             "source": {
                 "type": "git",
                 "type": "git",
                 "url": "https://github.com/nikic/PHP-Parser.git",
                 "url": "https://github.com/nikic/PHP-Parser.git",
-                "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4"
+                "reference": "b76bbc3c51f22c570648de48e8c2d941ed5e2cf2"
             },
             },
             "dist": {
             "dist": {
                 "type": "zip",
                 "type": "zip",
-                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/97e59c7a16464196a8b9c77c47df68e4a39a45c4",
-                "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4",
+                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/b76bbc3c51f22c570648de48e8c2d941ed5e2cf2",
+                "reference": "b76bbc3c51f22c570648de48e8c2d941ed5e2cf2",
                 "shasum": ""
                 "shasum": ""
             },
             },
             "require": {
             "require": {
@@ -1938,6 +1939,7 @@
                 "php": ">=7.0"
                 "php": ">=7.0"
             },
             },
             "require-dev": {
             "require-dev": {
+                "ircmaxell/php-yacc": "0.0.4",
                 "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
                 "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
             },
             },
             "bin": [
             "bin": [
@@ -1968,7 +1970,7 @@
                 "parser",
                 "parser",
                 "php"
                 "php"
             ],
             ],
-            "time": "2019-09-01T07:51:21+00:00"
+            "time": "2019-10-25T18:33:07+00:00"
         },
         },
         {
         {
             "name": "opis/closure",
             "name": "opis/closure",
@@ -2750,16 +2752,16 @@
         },
         },
         {
         {
             "name": "psr/log",
             "name": "psr/log",
-            "version": "1.1.0",
+            "version": "1.1.1",
             "source": {
             "source": {
                 "type": "git",
                 "type": "git",
                 "url": "https://github.com/php-fig/log.git",
                 "url": "https://github.com/php-fig/log.git",
-                "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
+                "reference": "bf73deb2b3b896a9d9c75f3f0d88185d2faa27e2"
             },
             },
             "dist": {
             "dist": {
                 "type": "zip",
                 "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
-                "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
+                "url": "https://api.github.com/repos/php-fig/log/zipball/bf73deb2b3b896a9d9c75f3f0d88185d2faa27e2",
+                "reference": "bf73deb2b3b896a9d9c75f3f0d88185d2faa27e2",
                 "shasum": ""
                 "shasum": ""
             },
             },
             "require": {
             "require": {
@@ -2768,7 +2770,7 @@
             "type": "library",
             "type": "library",
             "extra": {
             "extra": {
                 "branch-alias": {
                 "branch-alias": {
-                    "dev-master": "1.0.x-dev"
+                    "dev-master": "1.1.x-dev"
                 }
                 }
             },
             },
             "autoload": {
             "autoload": {
@@ -2793,7 +2795,7 @@
                 "psr",
                 "psr",
                 "psr-3"
                 "psr-3"
             ],
             ],
-            "time": "2018-11-20T15:27:04+00:00"
+            "time": "2019-10-25T08:06:51+00:00"
         },
         },
         {
         {
             "name": "psr/simple-cache",
             "name": "psr/simple-cache",
@@ -4639,21 +4641,23 @@
         },
         },
         {
         {
             "name": "tijsverkoyen/css-to-inline-styles",
             "name": "tijsverkoyen/css-to-inline-styles",
-            "version": "2.2.1",
+            "version": "2.2.2",
             "source": {
             "source": {
                 "type": "git",
                 "type": "git",
                 "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
                 "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
-                "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
+                "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15"
             },
             },
             "dist": {
             "dist": {
                 "type": "zip",
                 "type": "zip",
-                "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
-                "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
+                "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
+                "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
                 "shasum": ""
                 "shasum": ""
             },
             },
             "require": {
             "require": {
+                "ext-dom": "*",
+                "ext-libxml": "*",
                 "php": "^5.5 || ^7.0",
                 "php": "^5.5 || ^7.0",
-                "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
+                "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
             },
             },
             "require-dev": {
             "require-dev": {
                 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
                 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
@@ -4676,13 +4680,13 @@
             "authors": [
             "authors": [
                 {
                 {
                     "name": "Tijs Verkoyen",
                     "name": "Tijs Verkoyen",
-                    "role": "Developer",
-                    "email": "css_to_inline_styles@verkoyen.eu"
+                    "email": "css_to_inline_styles@verkoyen.eu",
+                    "role": "Developer"
                 }
                 }
             ],
             ],
             "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
             "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
             "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
             "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
-            "time": "2017-11-27T11:13:29+00:00"
+            "time": "2019-10-24T08:53:34+00:00"
         },
         },
         {
         {
             "name": "vlucas/phpdotenv",
             "name": "vlucas/phpdotenv",
@@ -6315,16 +6319,16 @@
         },
         },
         {
         {
             "name": "phpunit/phpunit",
             "name": "phpunit/phpunit",
-            "version": "8.4.1",
+            "version": "8.4.2",
             "source": {
             "source": {
                 "type": "git",
                 "type": "git",
                 "url": "https://github.com/sebastianbergmann/phpunit.git",
                 "url": "https://github.com/sebastianbergmann/phpunit.git",
-                "reference": "366a4a0f2b971fd43b7c351d621e8dd7d7131869"
+                "reference": "a142a7e66c0ea7b5b6c04ee27f08d10d1137cd9b"
             },
             },
             "dist": {
             "dist": {
                 "type": "zip",
                 "type": "zip",
-                "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/366a4a0f2b971fd43b7c351d621e8dd7d7131869",
-                "reference": "366a4a0f2b971fd43b7c351d621e8dd7d7131869",
+                "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a142a7e66c0ea7b5b6c04ee27f08d10d1137cd9b",
+                "reference": "a142a7e66c0ea7b5b6c04ee27f08d10d1137cd9b",
                 "shasum": ""
                 "shasum": ""
             },
             },
             "require": {
             "require": {
@@ -6394,7 +6398,7 @@
                 "testing",
                 "testing",
                 "xunit"
                 "xunit"
             ],
             ],
-            "time": "2019-10-07T12:57:41+00:00"
+            "time": "2019-10-28T10:39:51+00:00"
         },
         },
         {
         {
             "name": "scrivo/highlight.php",
             "name": "scrivo/highlight.php",

+ 38 - 13
package-lock.json

@@ -6616,12 +6616,37 @@
             }
             }
         },
         },
         "postcss-js": {
         "postcss-js": {
-            "version": "2.0.2",
-            "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-2.0.2.tgz",
-            "integrity": "sha512-HxXLw1lrczsbVXxyC+t/VIfje9ZeZhkkXE8KpFa3MEKfp2FyHDv29JShYY9eLhYrhLyWWHNIuwkktTfLXu2otw==",
+            "version": "2.0.3",
+            "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-2.0.3.tgz",
+            "integrity": "sha512-zS59pAk3deu6dVHyrGqmC3oDXBdNdajk4k1RyxeVXCrcEDBUBHoIhE4QTsmhxgzXxsaqFDAkUZfmMa5f/N/79w==",
             "requires": {
             "requires": {
                 "camelcase-css": "^2.0.1",
                 "camelcase-css": "^2.0.1",
-                "postcss": "^7.0.17"
+                "postcss": "^7.0.18"
+            },
+            "dependencies": {
+                "postcss": {
+                    "version": "7.0.20",
+                    "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.20.tgz",
+                    "integrity": "sha512-VOdO3a5nHVftPSEbG1zaG320b4mH5KAflH+pIeVAF5/hlw6YumELSgHZQBekjg29Oj4qw7XAyp9tIEBpeNWcyg==",
+                    "requires": {
+                        "chalk": "^2.4.2",
+                        "source-map": "^0.6.1",
+                        "supports-color": "^6.1.0"
+                    }
+                },
+                "source-map": {
+                    "version": "0.6.1",
+                    "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+                    "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+                },
+                "supports-color": {
+                    "version": "6.1.0",
+                    "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
+                    "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
+                    "requires": {
+                        "has-flag": "^3.0.0"
+                    }
+                }
             }
             }
         },
         },
         "postcss-load-config": {
         "postcss-load-config": {
@@ -7479,9 +7504,9 @@
             }
             }
         },
         },
         "reduce-css-calc": {
         "reduce-css-calc": {
-            "version": "2.1.6",
-            "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.6.tgz",
-            "integrity": "sha512-+l5/qlQmdsbM9h6JerJ/y5vR5Ci0k93aszLNpCmbadC3nBcbRGmIBm0s9Nj59i22LvCjTGftWzdQRwdknayxhw==",
+            "version": "2.1.7",
+            "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.7.tgz",
+            "integrity": "sha512-fDnlZ+AybAS3C7Q9xDq5y8A2z+lT63zLbynew/lur/IR24OQF5x98tfNwf79mzEdfywZ0a2wpM860FhFfMxZlA==",
             "requires": {
             "requires": {
                 "css-unit-converter": "^1.1.1",
                 "css-unit-converter": "^1.1.1",
                 "postcss-value-parser": "^3.3.0"
                 "postcss-value-parser": "^3.3.0"
@@ -8625,9 +8650,9 @@
             "dev": true
             "dev": true
         },
         },
         "tailwindcss": {
         "tailwindcss": {
-            "version": "1.1.2",
-            "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-1.1.2.tgz",
-            "integrity": "sha512-mcTzZHXMipnQY9haB17baNJmBTkYYcC8ljfMdB9/97FfhKJIzlglJcyGythuQTOu7r/QIbLfZYYWZhAvaGj95A==",
+            "version": "1.1.3",
+            "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-1.1.3.tgz",
+            "integrity": "sha512-8sa/QO+blnu3WXUylsgvYZlUbBpVH36QeGuZxgSGqp1dF3g4AGe1azt8FsO8i8Hfe9Oyvwhx3iSjRDak3nngeQ==",
             "requires": {
             "requires": {
                 "autoprefixer": "^9.4.5",
                 "autoprefixer": "^9.4.5",
                 "bytes": "^3.0.0",
                 "bytes": "^3.0.0",
@@ -9202,9 +9227,9 @@
             "integrity": "sha512-s7jmZPlm9FeueJg1RwJtnE9KNPtME/7C8uRWSfp9/yEN4M8XcS/d+bddoyVwVnvFyRh9msFo0HWeW0vTL8Qv+w=="
             "integrity": "sha512-s7jmZPlm9FeueJg1RwJtnE9KNPtME/7C8uRWSfp9/yEN4M8XcS/d+bddoyVwVnvFyRh9msFo0HWeW0vTL8Qv+w=="
         },
         },
         "vue-notification": {
         "vue-notification": {
-            "version": "1.3.16",
-            "resolved": "https://registry.npmjs.org/vue-notification/-/vue-notification-1.3.16.tgz",
-            "integrity": "sha512-ZL57GcyeAnJK5ItWWkZ3+wcf3OlLFs9WIukxXwJBSIzIXUlXXxXzeVkZrhUf3Q/FkbWWAYRmzKXXP742ZiyxOw=="
+            "version": "1.3.19",
+            "resolved": "https://registry.npmjs.org/vue-notification/-/vue-notification-1.3.19.tgz",
+            "integrity": "sha512-iksi/PyJRVkCNu4p+iMWI/dDlfGKcQJG+7jAimm420dBilrG+XPKf7GhDsNK36lxZ0whQGxydmhINUhF1Ans3w=="
         },
         },
         "vue-style-loader": {
         "vue-style-loader": {
             "version": "4.1.2",
             "version": "4.1.2",

+ 2 - 2
package.json

@@ -21,13 +21,13 @@
         "postcss-import": "^11.1.0",
         "postcss-import": "^11.1.0",
         "postcss-nesting": "^5.0.0",
         "postcss-nesting": "^5.0.0",
         "resolve-url-loader": "^2.3.2",
         "resolve-url-loader": "^2.3.2",
-        "tailwindcss": "^1.1.2",
+        "tailwindcss": "^1.1.3",
         "tippy.js": "^4.3.5",
         "tippy.js": "^4.3.5",
         "v-clipboard": "^2.2.2",
         "v-clipboard": "^2.2.2",
         "vue": "^2.6.10",
         "vue": "^2.6.10",
         "vue-good-table": "^2.18.0",
         "vue-good-table": "^2.18.0",
         "vue-multiselect": "^2.1.6",
         "vue-multiselect": "^2.1.6",
-        "vue-notification": "^1.3.16",
+        "vue-notification": "^1.3.19",
         "vue-template-compiler": "^2.6.10"
         "vue-template-compiler": "^2.6.10"
     },
     },
     "devDependencies": {
     "devDependencies": {