@rpcbase/server 0.253.0 → 0.255.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/server",
3
- "version": "0.253.0",
3
+ "version": "0.255.0",
4
4
  "license": "SSPL-1.0",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -12,8 +12,8 @@
12
12
  "dependencies": {
13
13
  "@rpcbase/access-control": "0.27.0",
14
14
  "@rpcbase/agent": "0.32.0",
15
- "@rpcbase/std": "0.9.0",
16
- "@sentry/node": "7.64.0",
15
+ "@rpcbase/std": "0.10.0",
16
+ "@sentry/node": "7.71.0",
17
17
  "bluebird": "3.7.2",
18
18
  "body-parser": "1.20.2",
19
19
  "bull": "4.11.3",
@@ -27,11 +27,11 @@
27
27
  "glob": "9.3.5",
28
28
  "lodash": "4.17.21",
29
29
  "mkdirp": "2.1.3",
30
- "mongoose": "7.4.3",
30
+ "mongoose": "7.5.3",
31
31
  "nodemon": "3.0.1",
32
32
  "picocolors": "1.0.0",
33
33
  "postmark": "3.0.19",
34
- "redis": "4.6.7",
34
+ "redis": "4.6.10",
35
35
  "request-ip": "3.3.0",
36
36
  "sift": "17.0.1",
37
37
  "socket.io": "4.7.2",
@@ -50,6 +50,8 @@ const reset_password = async({email}, ctx) => {
50
50
 
51
51
  const reset_url = `https://${APP_DOMAIN}/set-new-password?uid=${user._id}&token=${token}`
52
52
 
53
+ log("will send reset password email to", user.email)
54
+
53
55
  const res = await mailer.sendEmail({
54
56
  From: MAILER_FROM_EMAIL,
55
57
  To: user.email,