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

Commit 95c1cf6

Browse files
authored
Merge pull request #3922 from withspectrum/2.4.36
2.4.36
2 parents d12b07a + e1a1755 commit 95c1cf6

File tree

9 files changed

+22
-18
lines changed

9 files changed

+22
-18
lines changed

api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@
5656
"host-validation": "^1.1.0",
5757
"hpp": "^0.2.2",
5858
"imgix-core-js": "^1.2.0",
59-
"immutability-helper": "^2.7.1",
59+
"immutability-helper": "^2.8.0",
6060
"isomorphic-fetch": "^2.2.1",
6161
"iterall": "^1.2.2",
6262
"jest": "^21.2.1",
6363
"json-stringify-pretty-compact": "^1.2.0",
6464
"jsonwebtoken": "^8.3.0",
65-
"keygrip": "^1.0.2",
65+
"keygrip": "^1.0.3",
6666
"linkify-it": "^2.0.3",
6767
"localstorage-memory": "^1.0.2",
6868
"lodash": "^4.17.10",

api/routes/api/email.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ emailRouter.get('/unsubscribe', (req, res) => {
7474
res
7575
.status(200)
7676
.send(
77-
'You will no longer recieve new thread emails from this channel.'
77+
'You will no longer receive new thread emails from this channel.'
7878
)
7979
);
8080
case 'muteCommunity':
@@ -87,7 +87,7 @@ emailRouter.get('/unsubscribe', (req, res) => {
8787
res
8888
.status(200)
8989
.send(
90-
'You will no longer recieve new thread emails from this community.'
90+
'You will no longer receive new thread emails from this community.'
9191
)
9292
);
9393
case 'muteThread':
@@ -99,7 +99,7 @@ emailRouter.get('/unsubscribe', (req, res) => {
9999
res
100100
.status(200)
101101
.send(
102-
'You will no longer recieve emails about new messages in this thread.'
102+
'You will no longer receive emails about new messages in this thread.'
103103
)
104104
);
105105
case 'muteDirectMessageThread':
@@ -111,7 +111,7 @@ emailRouter.get('/unsubscribe', (req, res) => {
111111
res
112112
.status(200)
113113
.send(
114-
'You will no longer recieve emails about new messages in this direct message conversation.'
114+
'You will no longer receive emails about new messages in this direct message conversation.'
115115
)
116116
);
117117
default: {

api/yarn.lock

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3870,9 +3870,9 @@ imgix-core-js@^1.2.0:
38703870
js-base64 "^2.1.9"
38713871
md5 "^2.2.1"
38723872

3873-
immutability-helper@^2.7.1:
3874-
version "2.7.1"
3875-
resolved "https://registry.yarnpkg.com/immutability-helper/-/immutability-helper-2.7.1.tgz#5636dbb593e3deb5e572766d42249ea06bae7640"
3873+
immutability-helper@^2.8.0:
3874+
version "2.8.0"
3875+
resolved "https://registry.yarnpkg.com/immutability-helper/-/immutability-helper-2.8.0.tgz#f2ade82c23c93dfead3c2c3c4c1753cce47544f6"
38763876
dependencies:
38773877
invariant "^2.2.0"
38783878

@@ -4730,7 +4730,11 @@ keycode@^2.1.2:
47304730
version "2.1.9"
47314731
resolved "https://registry.yarnpkg.com/keycode/-/keycode-2.1.9.tgz#964a23c54e4889405b4861a5c9f0480d45141dfa"
47324732

4733-
keygrip@^1.0.2, keygrip@~1.0.2:
4733+
keygrip@^1.0.3:
4734+
version "1.0.3"
4735+
resolved "https://registry.yarnpkg.com/keygrip/-/keygrip-1.0.3.tgz#399d709f0aed2bab0a059e0cdd3a5023a053e1dc"
4736+
4737+
keygrip@~1.0.2:
47344738
version "1.0.2"
47354739
resolved "https://registry.yarnpkg.com/keygrip/-/keygrip-1.0.2.tgz#ad3297c557069dea8bcfe7a4fa491b75c5ddeb91"
47364740

athena/queues/reaction-notification.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default async (job: Job<ReactionNotificationJobData>) => {
7777

7878
debug('mark notification as new for sender');
7979

80-
// if the user is allowed to recieve notifications, update their notification
80+
// if the user is allowed to receive notifications, update their notification
8181
return Promise.all([
8282
markUsersNotificationsAsNew(updatedNotification.id, message.senderId),
8383
]).catch(err => {

athena/queues/thread-reaction-notification.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default async (job: Job<ThreadReactionNotificationJobData>) => {
7171

7272
debug('mark notification as new for sender');
7373

74-
// if the user is allowed to recieve notifications, update their notification
74+
// if the user is allowed to receive notifications, update their notification
7575
return Promise.all([
7676
markUsersNotificationsAsNew(updatedNotification.id, thread.creatorId),
7777
]).catch(err => {

chronos/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"bull": "3.3.10",
77
"debug": "^2.6.9",
88
"draft-js": "^0.10.5",
9-
"lodash": "^4.17.10",
9+
"lodash": "^4.17.11",
1010
"lodash.intersection": "^4.4.0",
1111
"now-env": "^3.1.0",
1212
"postmark": "^1.3.1",

chronos/yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ lodash.values@^4.3.0:
243243
version "4.3.0"
244244
resolved "https://registry.yarnpkg.com/lodash.values/-/lodash.values-4.3.0.tgz#a3a6c2b0ebecc5c2cba1c17e6e620fe81b53d347"
245245

246-
lodash@^4.17.10:
247-
version "4.17.10"
248-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
246+
lodash@^4.17.11:
247+
version "4.17.11"
248+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
249249

250250
lodash@^4.17.4:
251251
version "4.17.4"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Spectrum",
3-
"version": "2.4.35",
3+
"version": "2.4.36",
44
"license": "BSD-3-Clause",
55
"devDependencies": {
66
"babel-cli": "^6.24.1",

src/views/navbar/components/notificationsTab.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ class NotificationsTab extends React.Component<Props, State> {
247247
// and we want to mark notifications as read as they view threads
248248
// if we do not pass in notifications from the state when this method is
249249
// invoked, it is because the incoming props have changed from the server
250-
// i.e. a new notification was recieved, so we should therefore run
250+
// i.e. a new notification was received, so we should therefore run
251251
// the rest of this method on the incoming notifications data
252252
const nodes = stateNotifications
253253
? stateNotifications

0 commit comments

Comments
 (0)