Skip to content
This repository was archived by the owner on Jun 15, 2022. It is now read-only.

Commit 5433fc0

Browse files
authored
chore: upgrade deps (#633)
* chore: upgrade deps * fix: ts error
1 parent a707297 commit 5433fc0

File tree

3 files changed

+97
-38
lines changed

3 files changed

+97
-38
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"@standardnotes/react-native-textview": "1.0.2",
4242
"@standardnotes/react-native-utils": "1.0.1",
4343
"@standardnotes/sncrypto-common": "1.9.0",
44-
"@standardnotes/snjs": "2.114.12",
44+
"@standardnotes/snjs": "2.115.6",
4545
"@standardnotes/stylekit": "5.29.3",
4646
"@types/styled-components-react-native": "5.1.3",
4747
"js-base64": "^3.7.2",

src/Screens/Settings/Sections/AuthSection.tsx

+5-4
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,11 @@ export const AuthSection = (props: Props) => {
106106
'OK'
107107
)
108108
} else {
109-
Keyboard.dismiss()
110-
const result = await application!.register(email, password, undefined, true)
111-
if (result?.error) {
112-
void application?.alertService?.alert(result.error.message)
109+
try {
110+
Keyboard.dismiss()
111+
await application!.register(email, password, undefined, true)
112+
} catch (error) {
113+
void application?.alertService?.alert((error as Error).message)
113114
}
114115
}
115116
setRegistering(false)

yarn.lock

+91-33
Original file line numberDiff line numberDiff line change
@@ -1638,6 +1638,17 @@
16381638
dependencies:
16391639
"@sinonjs/commons" "^1.7.0"
16401640

1641+
"@standardnotes/api@^1.1.4":
1642+
version "1.1.4"
1643+
resolved "https://registry.yarnpkg.com/@standardnotes/api/-/api-1.1.4.tgz#07720923d268fb11e4d053aba6448310d85c35b1"
1644+
integrity sha512-enhLB9sWlqJnqKEAjkHCrhcAo4TvAn4SsEhRAtxpoQTQr3tyU0SjvrZKES+3r8Cqzr19QfjHgvUNscdF0hPBUQ==
1645+
dependencies:
1646+
"@standardnotes/auth" "^3.19.2"
1647+
"@standardnotes/common" "^1.22.0"
1648+
"@standardnotes/encryption" "^1.8.11"
1649+
"@standardnotes/responses" "^1.6.30"
1650+
"@standardnotes/utils" "^1.6.10"
1651+
16411652
"@standardnotes/auth@^3.19.2":
16421653
version "3.19.2"
16431654
resolved "https://registry.yarnpkg.com/@standardnotes/auth/-/auth-3.19.2.tgz#a2758cdde588190eebd30e567fe7756c6823adcd"
@@ -1667,22 +1678,22 @@
16671678
eslint-plugin-prettier "^4.0.0"
16681679
prettier "^2.6.2"
16691680

1670-
"@standardnotes/domain-events@^2.29.0":
1671-
version "2.29.0"
1672-
resolved "https://registry.yarnpkg.com/@standardnotes/domain-events/-/domain-events-2.29.0.tgz#75acb29533d21086daaa4a8cc0ad40072bd4e57e"
1673-
integrity sha512-KOXvFDlUwybiOA8E5/1HAUFOV+s68mcRF7vd6sQH6dxkeRm6vCjXAufduh4DboyZHaLeYJeZLsw5ssO43IpFoQ==
1681+
"@standardnotes/domain-events@^2.29.1":
1682+
version "2.29.1"
1683+
resolved "https://registry.yarnpkg.com/@standardnotes/domain-events/-/domain-events-2.29.1.tgz#f986cac824524c6b94d96525367aaa8cd5dacd99"
1684+
integrity sha512-XiQWYCcY9DNzCkc9NNg3bnp7y+GoV0HeUQITjcKiZw23C+9IMd/a6Sgdm+0dhKj4IKJ7210dYmS/g/Wfnfxk/g==
16741685
dependencies:
16751686
"@standardnotes/auth" "^3.19.2"
1676-
"@standardnotes/features" "^1.44.6"
1687+
"@standardnotes/features" "^1.44.7"
16771688

1678-
"@standardnotes/encryption@^1.8.9":
1679-
version "1.8.9"
1680-
resolved "https://registry.yarnpkg.com/@standardnotes/encryption/-/encryption-1.8.9.tgz#2f1114590f27ea1df758eff3cebae8695abac3bf"
1681-
integrity sha512-XDousGfN6NWTPHNoS+go917nzFh3GHgKz6Ox+t7fiy10OKCwEuE7B9tzhUoaanQYCHrXIahGjlzX+zJ3Eell4w==
1689+
"@standardnotes/encryption@^1.8.11":
1690+
version "1.8.11"
1691+
resolved "https://registry.yarnpkg.com/@standardnotes/encryption/-/encryption-1.8.11.tgz#06e908370e3db3ec40c689c2e46b3c2a455a1ab4"
1692+
integrity sha512-D1i3ISYRRKNEyo0qDU0znga1W431w4ENt3t5Ds2v8W/qs7LzhtCMqzRlDDph7h2AK6IhGxPEWjP9VQSfQg2TPA==
16821693
dependencies:
1683-
"@standardnotes/models" "^1.11.2"
1684-
"@standardnotes/responses" "^1.6.29"
1685-
"@standardnotes/services" "^1.13.9"
1694+
"@standardnotes/models" "^1.11.4"
1695+
"@standardnotes/responses" "^1.6.30"
1696+
"@standardnotes/services" "^1.13.11"
16861697

16871698
"@standardnotes/features@^1.44.6":
16881699
version "1.44.6"
@@ -1692,6 +1703,23 @@
16921703
"@standardnotes/auth" "^3.19.2"
16931704
"@standardnotes/common" "^1.22.0"
16941705

1706+
"@standardnotes/features@^1.44.7":
1707+
version "1.44.7"
1708+
resolved "https://registry.yarnpkg.com/@standardnotes/features/-/features-1.44.7.tgz#0db96414046dd985980345eea6eaa0e684cad6ce"
1709+
integrity sha512-t3fXpfbQKbzZ/49VFzAOzRTD8s6WXBgomz2Goti9sHQbU9keoOXkubA4BS0Z20zZYGOxaNA5EJ4oMgs4GPlDIw==
1710+
dependencies:
1711+
"@standardnotes/auth" "^3.19.2"
1712+
"@standardnotes/common" "^1.22.0"
1713+
1714+
"@standardnotes/filepicker@^1.16.11":
1715+
version "1.16.11"
1716+
resolved "https://registry.yarnpkg.com/@standardnotes/filepicker/-/filepicker-1.16.11.tgz#b4210a68e6e1d96990d12d257d0f684724ea1809"
1717+
integrity sha512-pyDzUtfCNqM+GCcnVNoX6c3iyKJJIGpbRMxOvvngFjFpbwu4wtNFYoTGvHuTXKWfJ4lWxeYlRUdx9zlBEZ+idg==
1718+
dependencies:
1719+
"@standardnotes/common" "^1.22.0"
1720+
"@standardnotes/services" "^1.13.11"
1721+
"@standardnotes/utils" "^1.6.10"
1722+
16951723
"@standardnotes/filepicker@^1.16.9":
16961724
version "1.16.9"
16971725
resolved "https://registry.yarnpkg.com/@standardnotes/filepicker/-/filepicker-1.16.9.tgz#32d1e43f10888c8516e05191a4aab06529c6d5b0"
@@ -1701,16 +1729,16 @@
17011729
"@standardnotes/services" "^1.13.9"
17021730
"@standardnotes/utils" "^1.6.10"
17031731

1704-
"@standardnotes/files@^1.3.9":
1705-
version "1.3.9"
1706-
resolved "https://registry.yarnpkg.com/@standardnotes/files/-/files-1.3.9.tgz#349bc061eb2669073a998c5526ff678e1e6c941a"
1707-
integrity sha512-fyC3ynYOD2nndVp+xwjE0byUoMS7M2F934qVfwheDk3gVA2y0ZmScD0Fs9Lbwr0gaSM697Hf2bdNDH7oxc+VHQ==
1732+
"@standardnotes/files@^1.3.11":
1733+
version "1.3.11"
1734+
resolved "https://registry.yarnpkg.com/@standardnotes/files/-/files-1.3.11.tgz#4649f285cee5af44821dc0940b4b7aa6e2f85b4c"
1735+
integrity sha512-cKeYH2BgSzhxGU7nQkzAxB0NXYOujGqBsDyNSeZpFmykcOTl9FQUR6MwDdSybe69QPQ8eP43AfT/1JwewsPOVw==
17081736
dependencies:
1709-
"@standardnotes/encryption" "^1.8.9"
1710-
"@standardnotes/filepicker" "^1.16.9"
1711-
"@standardnotes/models" "^1.11.2"
1712-
"@standardnotes/responses" "^1.6.29"
1713-
"@standardnotes/services" "^1.13.9"
1737+
"@standardnotes/encryption" "^1.8.11"
1738+
"@standardnotes/filepicker" "^1.16.11"
1739+
"@standardnotes/models" "^1.11.4"
1740+
"@standardnotes/responses" "^1.6.30"
1741+
"@standardnotes/services" "^1.13.11"
17141742
"@standardnotes/utils" "^1.6.10"
17151743

17161744
"@standardnotes/icons@^1.1.8":
@@ -1727,6 +1755,15 @@
17271755
"@standardnotes/responses" "^1.6.29"
17281756
"@standardnotes/utils" "^1.6.10"
17291757

1758+
"@standardnotes/models@^1.11.4":
1759+
version "1.11.4"
1760+
resolved "https://registry.yarnpkg.com/@standardnotes/models/-/models-1.11.4.tgz#fb0387071f17d2bba5e93626f90f561977d16d3e"
1761+
integrity sha512-1stQxyNyazYcVr6w2uuz8CMqvVSaTWX4QItg7Hp4G2VDGa79K5lOcXFzu2vXcSk6cHYLKNMUp31/+SdGYRAbwA==
1762+
dependencies:
1763+
"@standardnotes/features" "^1.44.7"
1764+
"@standardnotes/responses" "^1.6.30"
1765+
"@standardnotes/utils" "^1.6.10"
1766+
17301767
"@standardnotes/react-native-aes@^1.4.3":
17311768
version "1.4.3"
17321769
resolved "https://registry.yarnpkg.com/@standardnotes/react-native-aes/-/react-native-aes-1.4.3.tgz#e8e9aa7d3fce8622ab520002b2260bee03a23b8b"
@@ -1751,6 +1788,26 @@
17511788
"@standardnotes/common" "^1.22.0"
17521789
"@standardnotes/features" "^1.44.6"
17531790

1791+
"@standardnotes/responses@^1.6.30":
1792+
version "1.6.30"
1793+
resolved "https://registry.yarnpkg.com/@standardnotes/responses/-/responses-1.6.30.tgz#f0edf523060a3af09d087e93231d41245654039c"
1794+
integrity sha512-r7dNBvLJzn2K0aLbLuOOItwg7iibOgHoZXKZkftvX4tYxv2VstHHt732kUGn5hn9MD78fxaLYP+YAgh9OBtacg==
1795+
dependencies:
1796+
"@standardnotes/auth" "^3.19.2"
1797+
"@standardnotes/common" "^1.22.0"
1798+
"@standardnotes/features" "^1.44.7"
1799+
1800+
"@standardnotes/services@^1.13.11":
1801+
version "1.13.11"
1802+
resolved "https://registry.yarnpkg.com/@standardnotes/services/-/services-1.13.11.tgz#0e7082c1daf61c60e918740a87c59310e639847d"
1803+
integrity sha512-LaE6IDa4DivKE5b0hHg6JWi3IJKFuL3qpY6T8F+XkBW9nEfAtZ8igZnyce5b01l+62Q9Ei8znhfEsGh5BRcCwA==
1804+
dependencies:
1805+
"@standardnotes/auth" "^3.19.2"
1806+
"@standardnotes/common" "^1.22.0"
1807+
"@standardnotes/models" "^1.11.4"
1808+
"@standardnotes/responses" "^1.6.30"
1809+
"@standardnotes/utils" "^1.6.10"
1810+
17541811
"@standardnotes/services@^1.13.9":
17551812
version "1.13.9"
17561813
resolved "https://registry.yarnpkg.com/@standardnotes/services/-/services-1.13.9.tgz#add529866797bd610d94ba2d0cd6b56479685362"
@@ -1777,21 +1834,22 @@
17771834
resolved "https://registry.yarnpkg.com/@standardnotes/sncrypto-common/-/sncrypto-common-1.7.3.tgz#1e62a14800393be44cdb376d1d72fbc064334fc1"
17781835
integrity sha512-twwYeBL+COkNF9IUM5bWrLZ4gXjg41tRxBMR3r3JcbrkyYjcNqVHf9L+YdBcndjSV3/9xwWl2pYWK1RB3UR2Xg==
17791836

1780-
"@standardnotes/snjs@2.114.12":
1781-
version "2.114.12"
1782-
resolved "https://registry.yarnpkg.com/@standardnotes/snjs/-/snjs-2.114.12.tgz#0eba281ec18113eada49386284cc4ea6934f2d97"
1783-
integrity sha512-NdJRIGvgFBBmOUmOgN3rvz++PVrzHr8IZpkPseI8/X79cf9T3wpJMe6CHhRYwamHMhlgAVFj4678SCkTlUtrnA==
1837+
"@standardnotes/snjs@2.115.6":
1838+
version "2.115.6"
1839+
resolved "https://registry.yarnpkg.com/@standardnotes/snjs/-/snjs-2.115.6.tgz#c9cd5ea432d3cbdbd7c70242de1dd8c3ab5e673d"
1840+
integrity sha512-r63idXBZUdlQnEzFPSjVT22BrIZ3Vaa1eyWqFA8MUz5NOAv80hC7BTSiEqTRQEudnVauqpM9NB31A1xOZTAZeg==
17841841
dependencies:
1842+
"@standardnotes/api" "^1.1.4"
17851843
"@standardnotes/auth" "^3.19.2"
17861844
"@standardnotes/common" "^1.22.0"
1787-
"@standardnotes/domain-events" "^2.29.0"
1788-
"@standardnotes/encryption" "^1.8.9"
1789-
"@standardnotes/features" "^1.44.6"
1790-
"@standardnotes/filepicker" "^1.16.9"
1791-
"@standardnotes/files" "^1.3.9"
1792-
"@standardnotes/models" "^1.11.2"
1793-
"@standardnotes/responses" "^1.6.29"
1794-
"@standardnotes/services" "^1.13.9"
1845+
"@standardnotes/domain-events" "^2.29.1"
1846+
"@standardnotes/encryption" "^1.8.11"
1847+
"@standardnotes/features" "^1.44.7"
1848+
"@standardnotes/filepicker" "^1.16.11"
1849+
"@standardnotes/files" "^1.3.11"
1850+
"@standardnotes/models" "^1.11.4"
1851+
"@standardnotes/responses" "^1.6.30"
1852+
"@standardnotes/services" "^1.13.11"
17951853
"@standardnotes/settings" "^1.14.3"
17961854
"@standardnotes/sncrypto-common" "^1.9.0"
17971855
"@standardnotes/utils" "^1.6.10"

0 commit comments

Comments
 (0)