浏览代码

Added version to anonaddy.php config for Docker

Will Browning 2 年之前
父节点
当前提交
1c00d056f1
共有 6 个文件被更改,包括 172 次插入145 次删除
  1. 1 1
      app/Helpers/GitVersionHelper.php
  2. 7 7
      composer.lock
  3. 11 0
      config/anonaddy.php
  4. 3 2
      config/sanctum.php
  5. 149 134
      package-lock.json
  6. 1 1
      resources/js/pages/Recipients.vue

+ 1 - 1
app/Helpers/GitVersionHelper.php

@@ -61,7 +61,7 @@ class GitVersionHelper
         }
 
         if (! $output) {
-            return str(getenv('ANONADDY_VERSION', true));
+            return str(config('anonaddy.version'));
         }
 
         return Str::of($output)->after('v')->trim();

+ 7 - 7
composer.lock

@@ -3264,16 +3264,16 @@
         },
         {
             "name": "nunomaduro/termwind",
-            "version": "v1.13.0",
+            "version": "v1.14.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/nunomaduro/termwind.git",
-                "reference": "132a24bd3e8c559e7f14fa14ba1b83772a0f97f8"
+                "reference": "10065367baccf13b6e30f5e9246fa4f63a79eb1d"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/132a24bd3e8c559e7f14fa14ba1b83772a0f97f8",
-                "reference": "132a24bd3e8c559e7f14fa14ba1b83772a0f97f8",
+                "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/10065367baccf13b6e30f5e9246fa4f63a79eb1d",
+                "reference": "10065367baccf13b6e30f5e9246fa4f63a79eb1d",
                 "shasum": ""
             },
             "require": {
@@ -3285,7 +3285,7 @@
                 "ergebnis/phpstan-rules": "^1.0.",
                 "illuminate/console": "^8.0|^9.0",
                 "illuminate/support": "^8.0|^9.0",
-                "laravel/pint": "^0.2.0",
+                "laravel/pint": "^1.0.0",
                 "pestphp/pest": "^1.21.0",
                 "pestphp/pest-plugin-mock": "^1.0",
                 "phpstan/phpstan": "^1.4.6",
@@ -3330,7 +3330,7 @@
             ],
             "support": {
                 "issues": "https://github.com/nunomaduro/termwind/issues",
-                "source": "https://github.com/nunomaduro/termwind/tree/v1.13.0"
+                "source": "https://github.com/nunomaduro/termwind/tree/v1.14.0"
             },
             "funding": [
                 {
@@ -3346,7 +3346,7 @@
                     "type": "github"
                 }
             ],
-            "time": "2022-07-01T15:06:55+00:00"
+            "time": "2022-08-01T11:03:24+00:00"
         },
         {
             "name": "paragonie/constant_time_encoding",

+ 11 - 0
config/anonaddy.php

@@ -2,6 +2,17 @@
 
 return [
 
+    /*
+    |--------------------------------------------------------------------------
+    | Version
+    |--------------------------------------------------------------------------
+    |
+    | Returns the app version if set as an environment variable
+    |
+    */
+
+    'version' => env('ANONADDY_VERSION'),
+
     /*
     |--------------------------------------------------------------------------
     | Return Path

+ 3 - 2
config/sanctum.php

@@ -16,9 +16,10 @@ return [
     */
 
     'stateful' => explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf(
-        '%s%s',
+        '%s%s%s',
         'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1',
-        Sanctum::currentApplicationUrlWithPort()
+        Sanctum::currentApplicationUrlWithPort(),
+        ','.parse_url(config('app.url'), PHP_URL_HOST).':8000'
     ))),
 
     /*

+ 149 - 134
package-lock.json

@@ -65,20 +65,20 @@
             }
         },
         "node_modules/@babel/core": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.9.tgz",
-            "integrity": "sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.10.tgz",
+            "integrity": "sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==",
             "dependencies": {
                 "@ampproject/remapping": "^2.1.0",
                 "@babel/code-frame": "^7.18.6",
-                "@babel/generator": "^7.18.9",
+                "@babel/generator": "^7.18.10",
                 "@babel/helper-compilation-targets": "^7.18.9",
                 "@babel/helper-module-transforms": "^7.18.9",
                 "@babel/helpers": "^7.18.9",
-                "@babel/parser": "^7.18.9",
-                "@babel/template": "^7.18.6",
-                "@babel/traverse": "^7.18.9",
-                "@babel/types": "^7.18.9",
+                "@babel/parser": "^7.18.10",
+                "@babel/template": "^7.18.10",
+                "@babel/traverse": "^7.18.10",
+                "@babel/types": "^7.18.10",
                 "convert-source-map": "^1.7.0",
                 "debug": "^4.1.0",
                 "gensync": "^1.0.0-beta.2",
@@ -102,11 +102,11 @@
             }
         },
         "node_modules/@babel/generator": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz",
-            "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.10.tgz",
+            "integrity": "sha512-0+sW7e3HjQbiHbj1NeU/vN8ornohYlacAfZIaXhdoGweQqgcNy69COVciYYqEXJ/v+9OBA7Frxm4CVAuNqKeNA==",
             "dependencies": {
-                "@babel/types": "^7.18.9",
+                "@babel/types": "^7.18.10",
                 "@jridgewell/gen-mapping": "^0.3.2",
                 "jsesc": "^2.5.1"
             },
@@ -400,6 +400,14 @@
                 "node": ">=6.9.0"
             }
         },
+        "node_modules/@babel/helper-string-parser": {
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz",
+            "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==",
+            "engines": {
+                "node": ">=6.9.0"
+            }
+        },
         "node_modules/@babel/helper-validator-identifier": {
             "version": "7.18.6",
             "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz",
@@ -417,14 +425,14 @@
             }
         },
         "node_modules/@babel/helper-wrap-function": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.9.tgz",
-            "integrity": "sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.10.tgz",
+            "integrity": "sha512-95NLBP59VWdfK2lyLKe6eTMq9xg+yWKzxzxbJ1wcYNi1Auz200+83fMDADjRxBvc2QQor5zja2yTQzXGhk2GtQ==",
             "dependencies": {
                 "@babel/helper-function-name": "^7.18.9",
-                "@babel/template": "^7.18.6",
-                "@babel/traverse": "^7.18.9",
-                "@babel/types": "^7.18.9"
+                "@babel/template": "^7.18.10",
+                "@babel/traverse": "^7.18.10",
+                "@babel/types": "^7.18.10"
             },
             "engines": {
                 "node": ">=6.9.0"
@@ -513,9 +521,9 @@
             }
         },
         "node_modules/@babel/parser": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz",
-            "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.10.tgz",
+            "integrity": "sha512-TYk3OA0HKL6qNryUayb5UUEhM/rkOQozIBEA5ITXh5DWrSp0TlUQXMyZmnWxG/DizSWBeeQ0Zbc5z8UGaaqoeg==",
             "bin": {
                 "parser": "bin/babel-parser.js"
             },
@@ -554,13 +562,13 @@
             }
         },
         "node_modules/@babel/plugin-proposal-async-generator-functions": {
-            "version": "7.18.6",
-            "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.6.tgz",
-            "integrity": "sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.10.tgz",
+            "integrity": "sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==",
             "dependencies": {
-                "@babel/helper-environment-visitor": "^7.18.6",
-                "@babel/helper-plugin-utils": "^7.18.6",
-                "@babel/helper-remap-async-to-generator": "^7.18.6",
+                "@babel/helper-environment-visitor": "^7.18.9",
+                "@babel/helper-plugin-utils": "^7.18.9",
+                "@babel/helper-remap-async-to-generator": "^7.18.9",
                 "@babel/plugin-syntax-async-generators": "^7.8.4"
             },
             "engines": {
@@ -1341,15 +1349,15 @@
             }
         },
         "node_modules/@babel/plugin-transform-runtime": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz",
-            "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.10.tgz",
+            "integrity": "sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==",
             "dependencies": {
                 "@babel/helper-module-imports": "^7.18.6",
                 "@babel/helper-plugin-utils": "^7.18.9",
-                "babel-plugin-polyfill-corejs2": "^0.3.1",
-                "babel-plugin-polyfill-corejs3": "^0.5.2",
-                "babel-plugin-polyfill-regenerator": "^0.3.1",
+                "babel-plugin-polyfill-corejs2": "^0.3.2",
+                "babel-plugin-polyfill-corejs3": "^0.5.3",
+                "babel-plugin-polyfill-regenerator": "^0.4.0",
                 "semver": "^6.3.0"
             },
             "engines": {
@@ -1439,11 +1447,11 @@
             }
         },
         "node_modules/@babel/plugin-transform-unicode-escapes": {
-            "version": "7.18.6",
-            "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.6.tgz",
-            "integrity": "sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz",
+            "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==",
             "dependencies": {
-                "@babel/helper-plugin-utils": "^7.18.6"
+                "@babel/helper-plugin-utils": "^7.18.9"
             },
             "engines": {
                 "node": ">=6.9.0"
@@ -1468,9 +1476,9 @@
             }
         },
         "node_modules/@babel/preset-env": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.9.tgz",
-            "integrity": "sha512-75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.10.tgz",
+            "integrity": "sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==",
             "dependencies": {
                 "@babel/compat-data": "^7.18.8",
                 "@babel/helper-compilation-targets": "^7.18.9",
@@ -1478,7 +1486,7 @@
                 "@babel/helper-validator-option": "^7.18.6",
                 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
                 "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9",
-                "@babel/plugin-proposal-async-generator-functions": "^7.18.6",
+                "@babel/plugin-proposal-async-generator-functions": "^7.18.10",
                 "@babel/plugin-proposal-class-properties": "^7.18.6",
                 "@babel/plugin-proposal-class-static-block": "^7.18.6",
                 "@babel/plugin-proposal-dynamic-import": "^7.18.6",
@@ -1538,13 +1546,13 @@
                 "@babel/plugin-transform-sticky-regex": "^7.18.6",
                 "@babel/plugin-transform-template-literals": "^7.18.9",
                 "@babel/plugin-transform-typeof-symbol": "^7.18.9",
-                "@babel/plugin-transform-unicode-escapes": "^7.18.6",
+                "@babel/plugin-transform-unicode-escapes": "^7.18.10",
                 "@babel/plugin-transform-unicode-regex": "^7.18.6",
                 "@babel/preset-modules": "^0.1.5",
-                "@babel/types": "^7.18.9",
-                "babel-plugin-polyfill-corejs2": "^0.3.1",
-                "babel-plugin-polyfill-corejs3": "^0.5.2",
-                "babel-plugin-polyfill-regenerator": "^0.3.1",
+                "@babel/types": "^7.18.10",
+                "babel-plugin-polyfill-corejs2": "^0.3.2",
+                "babel-plugin-polyfill-corejs3": "^0.5.3",
+                "babel-plugin-polyfill-regenerator": "^0.4.0",
                 "core-js-compat": "^3.22.1",
                 "semver": "^6.3.0"
             },
@@ -1590,31 +1598,31 @@
             }
         },
         "node_modules/@babel/template": {
-            "version": "7.18.6",
-            "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz",
-            "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz",
+            "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
             "dependencies": {
                 "@babel/code-frame": "^7.18.6",
-                "@babel/parser": "^7.18.6",
-                "@babel/types": "^7.18.6"
+                "@babel/parser": "^7.18.10",
+                "@babel/types": "^7.18.10"
             },
             "engines": {
                 "node": ">=6.9.0"
             }
         },
         "node_modules/@babel/traverse": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz",
-            "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.10.tgz",
+            "integrity": "sha512-J7ycxg0/K9XCtLyHf0cz2DqDihonJeIo+z+HEdRe9YuT8TY4A66i+Ab2/xZCEW7Ro60bPCBBfqqboHSamoV3+g==",
             "dependencies": {
                 "@babel/code-frame": "^7.18.6",
-                "@babel/generator": "^7.18.9",
+                "@babel/generator": "^7.18.10",
                 "@babel/helper-environment-visitor": "^7.18.9",
                 "@babel/helper-function-name": "^7.18.9",
                 "@babel/helper-hoist-variables": "^7.18.6",
                 "@babel/helper-split-export-declaration": "^7.18.6",
-                "@babel/parser": "^7.18.9",
-                "@babel/types": "^7.18.9",
+                "@babel/parser": "^7.18.10",
+                "@babel/types": "^7.18.10",
                 "debug": "^4.1.0",
                 "globals": "^11.1.0"
             },
@@ -1623,10 +1631,11 @@
             }
         },
         "node_modules/@babel/types": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz",
-            "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.10.tgz",
+            "integrity": "sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==",
             "dependencies": {
+                "@babel/helper-string-parser": "^7.18.10",
                 "@babel/helper-validator-identifier": "^7.18.6",
                 "to-fast-properties": "^2.0.0"
             },
@@ -2616,11 +2625,11 @@
             }
         },
         "node_modules/babel-plugin-polyfill-regenerator": {
-            "version": "0.3.1",
-            "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz",
-            "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==",
+            "version": "0.4.0",
+            "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.0.tgz",
+            "integrity": "sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==",
             "dependencies": {
-                "@babel/helper-define-polyfill-provider": "^0.3.1"
+                "@babel/helper-define-polyfill-provider": "^0.3.2"
             },
             "peerDependencies": {
                 "@babel/core": "^7.0.0-0"
@@ -4016,9 +4025,9 @@
             "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
         },
         "node_modules/electron-to-chromium": {
-            "version": "1.4.206",
-            "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.206.tgz",
-            "integrity": "sha512-h+Fadt1gIaQ06JaIiyqPsBjJ08fV5Q7md+V8bUvQW/9OvXfL2LRICTz2EcnnCP7QzrFTS6/27MRV6Bl9Yn97zA=="
+            "version": "1.4.208",
+            "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.208.tgz",
+            "integrity": "sha512-diMr4t69FigAGUk2KovP0bygEtN/9AkqEVkzjEp0cu+zFFbZMVvwACpTTfuj1mAmFR5kNoSW8wGKDFWIvmThiQ=="
         },
         "node_modules/elliptic": {
             "version": "6.5.4",
@@ -9334,20 +9343,20 @@
             "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ=="
         },
         "@babel/core": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.9.tgz",
-            "integrity": "sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.10.tgz",
+            "integrity": "sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==",
             "requires": {
                 "@ampproject/remapping": "^2.1.0",
                 "@babel/code-frame": "^7.18.6",
-                "@babel/generator": "^7.18.9",
+                "@babel/generator": "^7.18.10",
                 "@babel/helper-compilation-targets": "^7.18.9",
                 "@babel/helper-module-transforms": "^7.18.9",
                 "@babel/helpers": "^7.18.9",
-                "@babel/parser": "^7.18.9",
-                "@babel/template": "^7.18.6",
-                "@babel/traverse": "^7.18.9",
-                "@babel/types": "^7.18.9",
+                "@babel/parser": "^7.18.10",
+                "@babel/template": "^7.18.10",
+                "@babel/traverse": "^7.18.10",
+                "@babel/types": "^7.18.10",
                 "convert-source-map": "^1.7.0",
                 "debug": "^4.1.0",
                 "gensync": "^1.0.0-beta.2",
@@ -9363,11 +9372,11 @@
             }
         },
         "@babel/generator": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz",
-            "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.10.tgz",
+            "integrity": "sha512-0+sW7e3HjQbiHbj1NeU/vN8ornohYlacAfZIaXhdoGweQqgcNy69COVciYYqEXJ/v+9OBA7Frxm4CVAuNqKeNA==",
             "requires": {
-                "@babel/types": "^7.18.9",
+                "@babel/types": "^7.18.10",
                 "@jridgewell/gen-mapping": "^0.3.2",
                 "jsesc": "^2.5.1"
             },
@@ -9583,6 +9592,11 @@
                 "@babel/types": "^7.18.6"
             }
         },
+        "@babel/helper-string-parser": {
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz",
+            "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="
+        },
         "@babel/helper-validator-identifier": {
             "version": "7.18.6",
             "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz",
@@ -9594,14 +9608,14 @@
             "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="
         },
         "@babel/helper-wrap-function": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.9.tgz",
-            "integrity": "sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.10.tgz",
+            "integrity": "sha512-95NLBP59VWdfK2lyLKe6eTMq9xg+yWKzxzxbJ1wcYNi1Auz200+83fMDADjRxBvc2QQor5zja2yTQzXGhk2GtQ==",
             "requires": {
                 "@babel/helper-function-name": "^7.18.9",
-                "@babel/template": "^7.18.6",
-                "@babel/traverse": "^7.18.9",
-                "@babel/types": "^7.18.9"
+                "@babel/template": "^7.18.10",
+                "@babel/traverse": "^7.18.10",
+                "@babel/types": "^7.18.10"
             }
         },
         "@babel/helpers": {
@@ -9671,9 +9685,9 @@
             }
         },
         "@babel/parser": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz",
-            "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg=="
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.10.tgz",
+            "integrity": "sha512-TYk3OA0HKL6qNryUayb5UUEhM/rkOQozIBEA5ITXh5DWrSp0TlUQXMyZmnWxG/DizSWBeeQ0Zbc5z8UGaaqoeg=="
         },
         "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
             "version": "7.18.6",
@@ -9694,13 +9708,13 @@
             }
         },
         "@babel/plugin-proposal-async-generator-functions": {
-            "version": "7.18.6",
-            "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.6.tgz",
-            "integrity": "sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.10.tgz",
+            "integrity": "sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==",
             "requires": {
-                "@babel/helper-environment-visitor": "^7.18.6",
-                "@babel/helper-plugin-utils": "^7.18.6",
-                "@babel/helper-remap-async-to-generator": "^7.18.6",
+                "@babel/helper-environment-visitor": "^7.18.9",
+                "@babel/helper-plugin-utils": "^7.18.9",
+                "@babel/helper-remap-async-to-generator": "^7.18.9",
                 "@babel/plugin-syntax-async-generators": "^7.8.4"
             }
         },
@@ -10184,15 +10198,15 @@
             }
         },
         "@babel/plugin-transform-runtime": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz",
-            "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.10.tgz",
+            "integrity": "sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==",
             "requires": {
                 "@babel/helper-module-imports": "^7.18.6",
                 "@babel/helper-plugin-utils": "^7.18.9",
-                "babel-plugin-polyfill-corejs2": "^0.3.1",
-                "babel-plugin-polyfill-corejs3": "^0.5.2",
-                "babel-plugin-polyfill-regenerator": "^0.3.1",
+                "babel-plugin-polyfill-corejs2": "^0.3.2",
+                "babel-plugin-polyfill-corejs3": "^0.5.3",
+                "babel-plugin-polyfill-regenerator": "^0.4.0",
                 "semver": "^6.3.0"
             },
             "dependencies": {
@@ -10245,11 +10259,11 @@
             }
         },
         "@babel/plugin-transform-unicode-escapes": {
-            "version": "7.18.6",
-            "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.6.tgz",
-            "integrity": "sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz",
+            "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==",
             "requires": {
-                "@babel/helper-plugin-utils": "^7.18.6"
+                "@babel/helper-plugin-utils": "^7.18.9"
             }
         },
         "@babel/plugin-transform-unicode-regex": {
@@ -10262,9 +10276,9 @@
             }
         },
         "@babel/preset-env": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.9.tgz",
-            "integrity": "sha512-75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.10.tgz",
+            "integrity": "sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==",
             "requires": {
                 "@babel/compat-data": "^7.18.8",
                 "@babel/helper-compilation-targets": "^7.18.9",
@@ -10272,7 +10286,7 @@
                 "@babel/helper-validator-option": "^7.18.6",
                 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
                 "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9",
-                "@babel/plugin-proposal-async-generator-functions": "^7.18.6",
+                "@babel/plugin-proposal-async-generator-functions": "^7.18.10",
                 "@babel/plugin-proposal-class-properties": "^7.18.6",
                 "@babel/plugin-proposal-class-static-block": "^7.18.6",
                 "@babel/plugin-proposal-dynamic-import": "^7.18.6",
@@ -10332,13 +10346,13 @@
                 "@babel/plugin-transform-sticky-regex": "^7.18.6",
                 "@babel/plugin-transform-template-literals": "^7.18.9",
                 "@babel/plugin-transform-typeof-symbol": "^7.18.9",
-                "@babel/plugin-transform-unicode-escapes": "^7.18.6",
+                "@babel/plugin-transform-unicode-escapes": "^7.18.10",
                 "@babel/plugin-transform-unicode-regex": "^7.18.6",
                 "@babel/preset-modules": "^0.1.5",
-                "@babel/types": "^7.18.9",
-                "babel-plugin-polyfill-corejs2": "^0.3.1",
-                "babel-plugin-polyfill-corejs3": "^0.5.2",
-                "babel-plugin-polyfill-regenerator": "^0.3.1",
+                "@babel/types": "^7.18.10",
+                "babel-plugin-polyfill-corejs2": "^0.3.2",
+                "babel-plugin-polyfill-corejs3": "^0.5.3",
+                "babel-plugin-polyfill-regenerator": "^0.4.0",
                 "core-js-compat": "^3.22.1",
                 "semver": "^6.3.0"
             },
@@ -10371,37 +10385,38 @@
             }
         },
         "@babel/template": {
-            "version": "7.18.6",
-            "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz",
-            "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz",
+            "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
             "requires": {
                 "@babel/code-frame": "^7.18.6",
-                "@babel/parser": "^7.18.6",
-                "@babel/types": "^7.18.6"
+                "@babel/parser": "^7.18.10",
+                "@babel/types": "^7.18.10"
             }
         },
         "@babel/traverse": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz",
-            "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.10.tgz",
+            "integrity": "sha512-J7ycxg0/K9XCtLyHf0cz2DqDihonJeIo+z+HEdRe9YuT8TY4A66i+Ab2/xZCEW7Ro60bPCBBfqqboHSamoV3+g==",
             "requires": {
                 "@babel/code-frame": "^7.18.6",
-                "@babel/generator": "^7.18.9",
+                "@babel/generator": "^7.18.10",
                 "@babel/helper-environment-visitor": "^7.18.9",
                 "@babel/helper-function-name": "^7.18.9",
                 "@babel/helper-hoist-variables": "^7.18.6",
                 "@babel/helper-split-export-declaration": "^7.18.6",
-                "@babel/parser": "^7.18.9",
-                "@babel/types": "^7.18.9",
+                "@babel/parser": "^7.18.10",
+                "@babel/types": "^7.18.10",
                 "debug": "^4.1.0",
                 "globals": "^11.1.0"
             }
         },
         "@babel/types": {
-            "version": "7.18.9",
-            "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz",
-            "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==",
+            "version": "7.18.10",
+            "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.10.tgz",
+            "integrity": "sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==",
             "requires": {
+                "@babel/helper-string-parser": "^7.18.10",
                 "@babel/helper-validator-identifier": "^7.18.6",
                 "to-fast-properties": "^2.0.0"
             }
@@ -11243,11 +11258,11 @@
             }
         },
         "babel-plugin-polyfill-regenerator": {
-            "version": "0.3.1",
-            "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz",
-            "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==",
+            "version": "0.4.0",
+            "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.0.tgz",
+            "integrity": "sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==",
             "requires": {
-                "@babel/helper-define-polyfill-provider": "^0.3.1"
+                "@babel/helper-define-polyfill-provider": "^0.3.2"
             }
         },
         "balanced-match": {
@@ -12294,9 +12309,9 @@
             "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
         },
         "electron-to-chromium": {
-            "version": "1.4.206",
-            "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.206.tgz",
-            "integrity": "sha512-h+Fadt1gIaQ06JaIiyqPsBjJ08fV5Q7md+V8bUvQW/9OvXfL2LRICTz2EcnnCP7QzrFTS6/27MRV6Bl9Yn97zA=="
+            "version": "1.4.208",
+            "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.208.tgz",
+            "integrity": "sha512-diMr4t69FigAGUk2KovP0bygEtN/9AkqEVkzjEp0cu+zFFbZMVvwACpTTfuj1mAmFR5kNoSW8wGKDFWIvmThiQ=="
         },
         "elliptic": {
             "version": "6.5.4",

+ 1 - 1
resources/js/pages/Recipients.vue

@@ -55,7 +55,7 @@
           Key
           <span
             class="tooltip outline-none"
-            :data-tippy-content="`Use this to attach recipients to new aliases as they are created e.g. alias+key@${user.default_username.username}.anonaddy.com. You can attach multiple recipients by doing alias+2.3.4@${user.default_username.username}.anonaddy.com. Separating each key by a full stop.`"
+            :data-tippy-content="`Use this to attach recipients to new aliases as they are created e.g. alias+key@${domain}. You can attach multiple recipients by doing alias+2.3.4@${domain}. Separating each key by a full stop.`"
           >
             <icon name="info" class="inline-block w-4 h-4 text-grey-300 fill-current" />
           </span>