Upgrade outdated dependencies

This commit is contained in:
Jamie Kyle
2024-11-14 17:28:55 -08:00
committed by GitHub
parent ec3c46d356
commit ca19a7a774
24 changed files with 2416 additions and 2892 deletions

View File

@@ -12,7 +12,7 @@ import {
} from 'lodash';
import Long from 'long';
import type { ClientZkGroupCipher } from '@signalapp/libsignal-client/zkgroup';
import LRU from 'lru-cache';
import { LRUCache } from 'lru-cache';
import * as log from './logging/log';
import {
getCheckedGroupCredentialsForToday,
@@ -264,7 +264,7 @@ export type GroupFields = {
const MAX_CACHED_GROUP_FIELDS = 100;
const groupFieldsCache = new LRU<string, GroupFields>({
const groupFieldsCache = new LRUCache<string, GroupFields>({
max: MAX_CACHED_GROUP_FIELDS,
});