Merge branch 'master' into develop

isekai-main
Barış Soner Uşaklı 1 year ago
commit 85a200096c

@ -1,3 +1,36 @@
#### v3.3.3 (2023-08-19)
##### Chores
* incrementing version number - v3.3.2 (ec9dac97)
* update changelog for v3.3.2 (2ecf15c4)
* incrementing version number - v3.3.1 (151cc68f)
* incrementing version number - v3.3.0 (fc1ad70f)
* incrementing version number - v3.2.3 (b06d3e63)
* incrementing version number - v3.2.2 (758ecfcd)
* incrementing version number - v3.2.1 (20145074)
* incrementing version number - v3.2.0 (9ecac38e)
* incrementing version number - v3.1.7 (0b4e81ab)
* incrementing version number - v3.1.6 (b3a3b130)
* incrementing version number - v3.1.5 (ec19343a)
* incrementing version number - v3.1.4 (2452783c)
* incrementing version number - v3.1.3 (3b4e9d3f)
* incrementing version number - v3.1.2 (40fa3489)
* incrementing version number - v3.1.1 (40250733)
* incrementing version number - v3.1.0 (0cb386bd)
* incrementing version number - v3.0.1 (26f6ea49)
* incrementing version number - v3.0.0 (224e08cd)
##### Bug Fixes
* one more fix (51587ca3)
* one more upgrade script fix (b5d1e917)
* post preview on skins remove clearfix and floats (5a8e6af4)
##### Refactors
* add connectionTimeout to psql (90f29571)
#### v3.3.2 (2023-08-18)
##### Chores

@ -2,7 +2,7 @@
"name": "nodebb",
"license": "GPL-3.0",
"description": "NodeBB Forum",
"version": "3.3.2",
"version": "3.3.3",
"homepage": "https://www.nodebb.org",
"repository": {
"type": "git",

@ -11,10 +11,11 @@ module.exports = {
method: async function () {
const { progress } = this;
progress.total = await db.sortedSetCard(`chat:rooms`);
await batch.processSortedSet(`chat:rooms`, async (roomIds) => {
progress.incr(roomIds.length);
for (const roomId of roomIds) {
const allRoomIds = await db.getSortedSetRange(`chat:rooms`, 0, -1);
progress.total = allRoomIds.length;
for (const roomId of allRoomIds) {
await batch.processSortedSet(`chat:room:${roomId}:mids`, async (mids) => {
let messageData = await db.getObjects(mids.map(mid => `message:${mid}`));
messageData.forEach((m, idx) => {
@ -37,10 +38,9 @@ module.exports = {
}, {
batch: 500,
});
progress.incr(1);
}
}, {
batch: 500,
});
const count = await db.sortedSetCard(`messages:mid`);
await db.setObjectField('global', 'messageCount', count);
},

@ -38,7 +38,7 @@ module.exports = {
if (roomData) {
const midsSeen = {};
const { roomId } = roomData;
await batch.processSortedSet(`chat:room:${roomId}:uids`, async (uids) => {
const uids = await db.getSortedSetRange(`chat:room:${roomId}:uids`, 0, -1);
for (const uid of uids) {
await batch.processSortedSet(`uid:${uid}:chat:room:${roomId}:mids`, async (mids) => {
const uniqMids = mids.filter(mid => !midsSeen.hasOwnProperty(mid));
@ -72,13 +72,10 @@ module.exports = {
});
// eslint-disable-next-line no-await-in-loop
await db.deleteAll(`uid:${uid}:chat:room:${roomId}:mids`);
progress.incr(1);
}
progress.incr(uids.length);
}, {
batch: 500,
});
const userCount = await db.sortedSetCard(`chat:room:${roomId}:uids`);
await db.setObjectField(`chat:room:${roomId}`, 'userCount', userCount);
await db.setObjectField(`chat:room:${roomId}`, 'userCount', uids.length);
}
}
}, {

Loading…
Cancel
Save