chore(deps): snjs with synchronous crypto
This commit is contained in:
@@ -34,7 +34,7 @@ export function startErrorReporting(): void {
|
||||
const storedUserId = storage.get(StorageKey.AnonymousUserId);
|
||||
let anonymousUserId: string;
|
||||
if (storedUserId === null) {
|
||||
anonymousUserId = WebCrypto.generateUUIDSync();
|
||||
anonymousUserId = WebCrypto.generateUUID();
|
||||
storage.set(StorageKey.AnonymousUserId, anonymousUserId);
|
||||
} else {
|
||||
anonymousUserId = storedUserId;
|
||||
|
||||
10
package.json
10
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "standard-notes-web",
|
||||
"version": "3.10.0",
|
||||
"version": "3.11.0",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -82,11 +82,11 @@
|
||||
"@reach/dialog": "^0.16.2",
|
||||
"@reach/listbox": "^0.16.2",
|
||||
"@reach/tooltip": "^0.16.2",
|
||||
"@standardnotes/components": "1.7.2",
|
||||
"@standardnotes/features": "1.32.3",
|
||||
"@standardnotes/snjs": "2.59.7",
|
||||
"@standardnotes/components": "1.7.3",
|
||||
"@standardnotes/features": "1.32.4",
|
||||
"@standardnotes/snjs": "2.60.0",
|
||||
"@standardnotes/settings": "^1.11.3",
|
||||
"@standardnotes/sncrypto-web": "1.6.2",
|
||||
"@standardnotes/sncrypto-web": "1.7.0",
|
||||
"mobx": "^6.3.5",
|
||||
"mobx-react-lite": "^3.2.2",
|
||||
"preact": "^10.5.15",
|
||||
|
||||
@@ -40,9 +40,9 @@
|
||||
"binary": "4e08fb2de17ab480787a1e042b2d43106e2798093e760fc507ed773401d27c71"
|
||||
},
|
||||
"org.standardnotes.bold-editor": {
|
||||
"version": "1.3.2",
|
||||
"base64": "7a4fec03c556d17aa2f14a9157a20754c429a54843504211017fc21ca6d8b10e",
|
||||
"binary": "80ff2f747607b6668c5e9b439203d89740de21b822d01b6b4d2051bf232a80f3"
|
||||
"version": "1.3.3",
|
||||
"base64": "51a5d2e77aacbcfda21b4a3429e9fe3fb6b61175e5188b6ec26854432ac41fc2",
|
||||
"binary": "a30533208fbc33f115786ff912b6d605052adda03a62b47513ce390931fe11d1"
|
||||
},
|
||||
"org.standardnotes.plus-editor": {
|
||||
"version": "1.6.1",
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -12,6 +12,15 @@ object-assign
|
||||
* Build: `lodash include="includes,merge,filter,map,remove,find,omit,pull,cloneDeep,pick,uniq,sortedIndexBy,mergeWith"`
|
||||
*/
|
||||
|
||||
/** @license React v0.19.1
|
||||
* scheduler.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v0.20.2
|
||||
* scheduler.production.min.js
|
||||
*
|
||||
@@ -21,6 +30,24 @@ object-assign
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v16.13.1
|
||||
* react-dom.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v16.13.1
|
||||
* react.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v17.0.2
|
||||
* react-dom.production.min.js
|
||||
*
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "sn-bold-editor",
|
||||
"version": "1.3.2",
|
||||
"version": "1.3.3",
|
||||
"main": "dist/dist.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
@@ -17,7 +17,7 @@
|
||||
"@babel/eslint-parser": "^7.13.14",
|
||||
"@babel/preset-env": "^7.13.12",
|
||||
"@babel/preset-react": "^7.13.13",
|
||||
"@standardnotes/editor-kit": "2.2.1",
|
||||
"@standardnotes/editor-kit": "2.2.3",
|
||||
"@standardnotes/eslint-config-extensions": "^1.0.3",
|
||||
"babel-loader": "^8.2.2",
|
||||
"copy-webpack-plugin": "^8.1.1",
|
||||
@@ -25,7 +25,7 @@
|
||||
"dompurify": "^2.2.9",
|
||||
"eslint": "^7.23.0",
|
||||
"eslint-plugin-react": "^7.23.1",
|
||||
"filesafe-embed": "1.0.10",
|
||||
"filesafe-embed": "1.0.11",
|
||||
"filesafe-js": "1.0.4",
|
||||
"html-webpack-plugin": "^5.3.1",
|
||||
"mini-css-extract-plugin": "^1.4.0",
|
||||
|
||||
58
yarn.lock
58
yarn.lock
@@ -2835,23 +2835,23 @@
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/common/-/common-1.11.0.tgz#5ed4be817a1f448e6eeb700d141dbfd40193aabe"
|
||||
integrity sha512-8TKx7bCwIazhGD3wkWTV4rmwbERsyisPbVDn6UIm1lNktWjKDF5OL1D8omalpR5wdM5qmXX5njI1zll2cxlW7A==
|
||||
|
||||
"@standardnotes/components@1.7.2":
|
||||
version "1.7.2"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/components/-/components-1.7.2.tgz#33c2748955e1ebf2cd7af3b2bc9f60a0bc53d0c6"
|
||||
integrity sha512-ckCC5Ez/Ni6PZZenCBrNC1sELxir5F3Q0UVm8nDWSQmf9G8+JGQ44BO0lEoZW8X3OPZpdYSde5Z5ITyOOBTXrQ==
|
||||
"@standardnotes/components@1.7.3":
|
||||
version "1.7.3"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/components/-/components-1.7.3.tgz#544521a5f0c5955c384fa7878003f4fdfcda860c"
|
||||
integrity sha512-2AcxDdSFMK0G7h6R+EdMR2muzmFyqm0Qtl9znjQ3Bec4wGo9gpLpxlvotbihh230H+PTq4DJybX586bEs6HUKg==
|
||||
|
||||
"@standardnotes/domain-events@^2.23.4":
|
||||
version "2.23.4"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/domain-events/-/domain-events-2.23.4.tgz#ab78ac57b35b723cd2184900466f4933003f057f"
|
||||
integrity sha512-SvJzF6KugYruwPKGqEnB8hiBco+NqwGpqOZWiz03I8YozDeXoDhhRaKhBzCzXCRetLXf2YENppjPft+PkxkWVQ==
|
||||
"@standardnotes/domain-events@^2.23.5":
|
||||
version "2.23.5"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/domain-events/-/domain-events-2.23.5.tgz#ef5e1dc9aeefb096f7d8af46e39f2d7b611a1d32"
|
||||
integrity sha512-L9ONAtPvAHZ67mkS9yjAS9baA2Io6igUqmEucOEHPuu+Wb0zH6m6uQzIagyqaFCfy5EwZ4/228G1gaZukCWwJg==
|
||||
dependencies:
|
||||
"@standardnotes/auth" "^3.16.1"
|
||||
"@standardnotes/features" "^1.32.3"
|
||||
"@standardnotes/features" "^1.32.4"
|
||||
|
||||
"@standardnotes/features@1.32.3", "@standardnotes/features@^1.32.3":
|
||||
version "1.32.3"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/features/-/features-1.32.3.tgz#497d4c87f76293f0fabcaf20844f4bce048d5b47"
|
||||
integrity sha512-QlHCtfKEtWTd2X6n28aGPg8xw/hHKTOzdo4nBECclO3GdE31WdZ6RpVstH8k515z0s2Q3RORXRvl7Ncn24Zd8g==
|
||||
"@standardnotes/features@1.32.4", "@standardnotes/features@^1.32.4":
|
||||
version "1.32.4"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/features/-/features-1.32.4.tgz#0ac3d7c56eea130aa14f119bba01a3b0063463ec"
|
||||
integrity sha512-ecNfImvqGHZ064mfkaDUNhXf+pGzwm3ZPYpuQkvKCiZkKbIHN1ECwK9CGpg4BgL1uHdAU1KEGM0CZlh9Ik08Tg==
|
||||
dependencies:
|
||||
"@standardnotes/auth" "^3.16.1"
|
||||
"@standardnotes/common" "^1.11.0"
|
||||
@@ -2861,31 +2861,31 @@
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/settings/-/settings-1.11.3.tgz#f7735da40807dab6eaf81cc82d8d30f5461d26d5"
|
||||
integrity sha512-95nqPYIZt57HMrymf4FTMDHOibM13AmV/8JEj7mPbIqcNKvVD486BURsaqpoBgkqB4Q43LbT8dfTrBPDgmIdxg==
|
||||
|
||||
"@standardnotes/sncrypto-common@^1.6.0":
|
||||
version "1.6.0"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/sncrypto-common/-/sncrypto-common-1.6.0.tgz#c6174adf65c778c8d53e45ea4c68087786f86b67"
|
||||
integrity sha512-3gTTokb+DWxtBH72auVtoB76V9pCZWyQ7hmClgBuQF3i5j6HvuuBZGiicHmwAv1zJxMi/op3haE8lwzQc8NJ9g==
|
||||
"@standardnotes/sncrypto-common@^1.7.0":
|
||||
version "1.7.0"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/sncrypto-common/-/sncrypto-common-1.7.0.tgz#6ad96afeaa031c26e45cbaf527bb511b803f998d"
|
||||
integrity sha512-Dke13reJMLQFXa7y9EqZYEeZG5Ouy+32qWEsQISLjLRPrTuNwyNXee2mdPh6c9uNZxOQwrdHxVGfqzJ2iy3RpQ==
|
||||
|
||||
"@standardnotes/sncrypto-web@1.6.2":
|
||||
version "1.6.2"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/sncrypto-web/-/sncrypto-web-1.6.2.tgz#38bd2309a1c20eee95d97de90a4145c04e7d2e4f"
|
||||
integrity sha512-+EWT7VoZkVErdGkBhihoDr0cMDAaA9VT1EG0h8Agg3pd52pO0A4yu0Cx4kjfLuDR7OP3neJdSEBMjlC0xoxawg==
|
||||
"@standardnotes/sncrypto-web@1.7.0":
|
||||
version "1.7.0"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/sncrypto-web/-/sncrypto-web-1.7.0.tgz#e3a6e69019210f375ccf8b9abb789c7dd7147cf6"
|
||||
integrity sha512-7NM1QJjtdvmUlBeQLjZukg5LovKKhoM8oX/FLOnBgl04TqDSGtvx+HDncm+laCnHZkAJ6VCSmUUxgfs1sQzyPw==
|
||||
dependencies:
|
||||
"@standardnotes/sncrypto-common" "^1.6.0"
|
||||
"@standardnotes/sncrypto-common" "^1.7.0"
|
||||
buffer "^6.0.3"
|
||||
libsodium-wrappers "^0.7.9"
|
||||
|
||||
"@standardnotes/snjs@2.59.7":
|
||||
version "2.59.7"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/snjs/-/snjs-2.59.7.tgz#bf0949ee1b29909aeb6db198d27d556456cc3e58"
|
||||
integrity sha512-OBOaOzgnyilpBWuehbwF/6aiuxiuvBYaqaZPj1Xm2GdpneTCRE7elPtWB4UGAQV0xyK5d1b1ze7wnhC2xOVu4A==
|
||||
"@standardnotes/snjs@2.60.0":
|
||||
version "2.60.0"
|
||||
resolved "https://registry.yarnpkg.com/@standardnotes/snjs/-/snjs-2.60.0.tgz#17bda689eb5fc80eb68feceab6c137a4a63f06fe"
|
||||
integrity sha512-kXU637Rq32e0W3SIC6R+nZlhZuhzTqnZethsS3M9n7ThBwRodCJNHXoj6/DgV+CBUgJy7J/r4r8fjjKD7UUT5w==
|
||||
dependencies:
|
||||
"@standardnotes/auth" "^3.16.1"
|
||||
"@standardnotes/common" "^1.11.0"
|
||||
"@standardnotes/domain-events" "^2.23.4"
|
||||
"@standardnotes/features" "^1.32.3"
|
||||
"@standardnotes/domain-events" "^2.23.5"
|
||||
"@standardnotes/features" "^1.32.4"
|
||||
"@standardnotes/settings" "^1.11.3"
|
||||
"@standardnotes/sncrypto-common" "^1.6.0"
|
||||
"@standardnotes/sncrypto-common" "^1.7.0"
|
||||
|
||||
"@standardnotes/stylekit@5.6.0":
|
||||
version "5.6.0"
|
||||
|
||||
Reference in New Issue
Block a user