From 0f58e11a175e8d87ee2aa1dff8792fd300c80b49 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 10 Jan 2023 17:24:56 +1100 Subject: [PATCH] chore: update with latest libsession wrapper --- libsession.worker.config.js | 3 + preload.js | 1 + ts/receiver/configMessage.ts | 29 +- ts/receiver/contentMessage.ts | 7 +- ts/receiver/receiver.ts | 4 +- ts/session/apis/snode_api/namespaces.ts | 26 ++ ts/session/apis/snode_api/retrieveRequest.ts | 20 +- ts/session/apis/snode_api/swarmPolling.ts | 73 ++-- .../libsession_wrapper_contacts_test.ts | 2 +- .../libsession_wrapper_test_skip.ts | 12 +- .../receiving/ConfigurationMessage_test.ts | 6 +- .../node/libsession/libsession.worker.ts | 2 +- ts/window.d.ts | 1 + utils.worker.config.js | 3 + yarn.lock | 320 +----------------- 15 files changed, 147 insertions(+), 362 deletions(-) create mode 100644 ts/session/apis/snode_api/namespaces.ts diff --git a/libsession.worker.config.js b/libsession.worker.config.js index bf9928a6b..627aef7a1 100644 --- a/libsession.worker.config.js +++ b/libsession.worker.config.js @@ -32,4 +32,7 @@ module.exports = { path: path.resolve(__dirname, 'ts', 'webworker', 'workers', 'node', 'libsession'), }, target: 'node', + optimization: { + minimize: false, + }, }; diff --git a/preload.js b/preload.js index 4e1accf36..f43747571 100644 --- a/preload.js +++ b/preload.js @@ -30,6 +30,7 @@ window.sessionFeatureFlags = { process.env.NODE_APP_INSTANCE && process.env.NODE_APP_INSTANCE.includes('testnet') ), useClosedGroupV3: false || process.env.USE_CLOSED_GROUP_V3, + useSharedUtilForUserConfig: true, debug: { debugFileServerRequests: false, debugNonSnodeRequests: false, diff --git a/ts/receiver/configMessage.ts b/ts/receiver/configMessage.ts index 1d712a5c3..45f67056f 100644 --- a/ts/receiver/configMessage.ts +++ b/ts/receiver/configMessage.ts @@ -19,6 +19,17 @@ import { getLastProfileUpdateTimestamp, setLastProfileUpdateTimestamp } from '.. import { appendFetchAvatarAndProfileJob, updateOurProfileSync } from './userProfileImageUpdates'; import { ConversationTypeEnum } from '../models/conversationAttributes'; +export async function handleConfigMessagesViaLibSession( + configMessages: Array +) { + if (!window.sessionFeatureFlags.useSharedUtilForUserConfig) { + } + + window?.log?.info( + `Handling our profileUdpates via libsession_util. count: ${configMessages.length}` + ); +} + async function handleOurProfileUpdate( sentAt: number | Long, configMessage: SignalService.ConfigurationMessage @@ -195,10 +206,21 @@ const handleContactFromConfig = async ( } }; -export async function handleConfigurationMessage( +/** + * This is the legacy way of handling incoming configuration message. + * Should not be used at all soon. + */ +async function handleConfigurationMessage( envelope: EnvelopePlus, configurationMessage: SignalService.ConfigurationMessage ): Promise { + if (window.sessionFeatureFlags.useSharedUtilForUserConfig) { + window?.log?.info( + 'useSharedUtilForUserConfig is set, not handling config messages with "handleConfigurationMessage()"' + ); + return; + } + window?.log?.info('Handling configuration message'); const ourPubkey = UserUtils.getOurPubKeyStrFromCache(); if (!ourPubkey) { @@ -216,3 +238,8 @@ export async function handleConfigurationMessage( await removeFromCache(envelope); } + +export const ConfigMessageHandler = { + handleConfigurationMessage, + handleConfigMessagesViaLibSession, +}; diff --git a/ts/receiver/contentMessage.ts b/ts/receiver/contentMessage.ts index 7ea6fbf33..400ddd918 100644 --- a/ts/receiver/contentMessage.ts +++ b/ts/receiver/contentMessage.ts @@ -12,7 +12,7 @@ import { fromHexToArray, toHex } from '../session/utils/String'; import { concatUInt8Array, getSodiumRenderer } from '../session/crypto'; import { getConversationController } from '../session/conversations'; import { ECKeyPair } from './keypairs'; -import { handleConfigurationMessage } from './configMessage'; +import { ConfigMessageHandler } from './configMessage'; import { removeMessagePadding } from '../session/crypto/BufferPadding'; import { perfEnd, perfStart } from '../session/utils/Performance'; import { getAllCachedECKeyPair } from './closedGroups'; @@ -425,8 +425,9 @@ export async function innerHandleSwarmContentMessage( return; } if (content.configurationMessage) { - // this one can be quite long (downloads profilePictures and everything, is do not block) - void handleConfigurationMessage( + // this one can be quite long (downloads profilePictures and everything), + // so do not await it + void ConfigMessageHandler.handleConfigurationMessage( envelope, content.configurationMessage as SignalService.ConfigurationMessage ); diff --git a/ts/receiver/receiver.ts b/ts/receiver/receiver.ts index 7924b859d..c2e2e7c44 100644 --- a/ts/receiver/receiver.ts +++ b/ts/receiver/receiver.ts @@ -148,8 +148,8 @@ export function handleRequest(plaintext: any, options: ReqOptions, messageHash: */ export async function queueAllCached() { const items = await getAllFromCache(); - items.forEach(async item => { - await queueCached(item); + items.forEach(item => { + void queueCached(item); }); } diff --git a/ts/session/apis/snode_api/namespaces.ts b/ts/session/apis/snode_api/namespaces.ts new file mode 100644 index 000000000..40d154492 --- /dev/null +++ b/ts/session/apis/snode_api/namespaces.ts @@ -0,0 +1,26 @@ +export enum SnodeNamespaces { + /** + * The messages sent to a closed group are sent and polled from this namespace + */ + ClosedGroupMessages = -10, + + /** + * This is the namespace anyone can deposit a message for us + */ + UserMessages = 0, + + /** + * This is the namespace used to sync our profile + */ + UserProfile = 2, + + /** + * This is the namespace used to sync our contacts + */ + UserContacts = 3, + + /** + * This is the namespace used to sync the closed group details for each of the closed groups we are polling + */ + ClosedGroupInfo = 11, +} diff --git a/ts/session/apis/snode_api/retrieveRequest.ts b/ts/session/apis/snode_api/retrieveRequest.ts index 399f0edd3..6e5efa206 100644 --- a/ts/session/apis/snode_api/retrieveRequest.ts +++ b/ts/session/apis/snode_api/retrieveRequest.ts @@ -5,6 +5,7 @@ import { StringUtils, UserUtils } from '../../utils'; import { fromHexToArray, fromUInt8ArrayToBase64 } from '../../utils/String'; import { doSnodeBatchRequest } from './batchRequest'; import { GetNetworkTime } from './getNetworkTime'; +import { SnodeNamespaces } from './namespaces'; import { RetrieveLegacyClosedGroupSubRequestType, RetrieveSubRequestType, @@ -58,7 +59,7 @@ async function getRetrieveSignatureParams(params: { async function buildRetrieveRequest( lastHashes: Array, pubkey: string, - namespaces: Array, + namespaces: Array, ourPubkey: string ): Promise> { const retrieveRequestsParams = await Promise.all( @@ -70,7 +71,7 @@ async function buildRetrieveRequest( timestamp: GetNetworkTime.getNowWithNetworkOffset(), }; - if (namespace === -10) { + if (namespace === SnodeNamespaces.ClosedGroupMessages) { if (pubkey === ourPubkey || !pubkey.startsWith('05')) { throw new Error( 'namespace -10 can only be used to retrieve messages from a legacy closed group' @@ -90,7 +91,11 @@ async function buildRetrieveRequest( // all legacy closed group retrieves are unauthenticated and run above. // if we get here, this can only be a retrieve for our own swarm, which needs to be authenticated - if (namespace !== 0) { + if ( + namespace !== SnodeNamespaces.UserMessages && + namespace !== SnodeNamespaces.UserContacts && + namespace !== SnodeNamespaces.UserProfile + ) { throw new Error('not a legacy closed group. namespace can only be 0'); } if (pubkey !== ourPubkey) { @@ -114,7 +119,7 @@ async function retrieveNextMessages( targetNode: Snode, lastHashes: Array, associatedWith: string, - namespaces: Array, + namespaces: Array, ourPubkey: string ): Promise> }>> { if (namespaces.length !== lastHashes.length) { @@ -170,8 +175,13 @@ async function retrieveNextMessages( } GetNetworkTime.handleTimestampOffsetFromNetwork('retrieve', bodyFirstResult.t); + // merge results with their corresponding namespaces - return results.map(result => ({ code: result.code, messages: result.body as Array })); + return results.map((result, index) => ({ + code: result.code, + messages: result.body as Array, + namespace: namespaces[index], + })); } catch (e) { window?.log?.warn('exception while parsing json of nextMessage:', e); if (!window.inboxStore?.getState().onionPaths.isOnline) { diff --git a/ts/session/apis/snode_api/swarmPolling.ts b/ts/session/apis/snode_api/swarmPolling.ts index 63b6a1b56..2bcd641b5 100644 --- a/ts/session/apis/snode_api/swarmPolling.ts +++ b/ts/session/apis/snode_api/swarmPolling.ts @@ -15,6 +15,7 @@ import { ed25519Str } from '../../onions/onionPath'; import { updateIsOnline } from '../../../state/ducks/onion'; import pRetry from 'p-retry'; import { SnodeAPIRetrieve } from './retrieveRequest'; +import { SnodeNamespaces } from './namespaces'; interface Message { hash: string; @@ -22,6 +23,11 @@ interface Message { data: string; } +export type RetrieveMessagesResults = Array<{ + code: number; + messages: Record[]; +}>; + // Some websocket nonsense export function processMessage(message: string, options: any = {}, messageHash: string) { try { @@ -142,10 +148,13 @@ export class SwarmPolling { } // we always poll as often as possible for our pubkey const ourPubkey = UserUtils.getOurPubKeyFromCache(); - // const directPromises = Promise.resolve(); - const directPromises = Promise.all([this.pollOnceForKey(ourPubkey, false, [0])]).then( - () => undefined - ); + const directPromise = Promise.all([ + this.pollOnceForKey(ourPubkey, false, [ + SnodeNamespaces.UserMessages, + SnodeNamespaces.UserProfile, + SnodeNamespaces.UserContacts, + ]), + ]).then(() => undefined); const now = Date.now(); const groupPromises = this.groupPolling.map(async group => { @@ -163,7 +172,7 @@ export class SwarmPolling { `Polling for ${loggingId}; timeout: ${convoPollingTimeout}; diff: ${diff} ` ); - return this.pollOnceForKey(group.pubkey, true, [-10]); + return this.pollOnceForKey(group.pubkey, true, [SnodeNamespaces.ClosedGroupMessages]); } window?.log?.info( `Not polling for ${loggingId}; timeout: ${convoPollingTimeout} ; diff: ${diff}` @@ -172,7 +181,7 @@ export class SwarmPolling { return Promise.resolve(); }); try { - await Promise.all(concat([directPromises], groupPromises)); + await Promise.all(concat([directPromise], groupPromises)); } catch (e) { window?.log?.info('pollForAllKeys exception: ', e); throw e; @@ -184,40 +193,37 @@ export class SwarmPolling { /** * Only exposed as public for testing */ - public async pollOnceForKey(pubkey: PubKey, isGroup: boolean, namespaces: Array) { + public async pollOnceForKey( + pubkey: PubKey, + isGroup: boolean, + namespaces: Array + ) { const pkStr = pubkey.key; const swarmSnodes = await snodePool.getSwarmFor(pkStr); // Select nodes for which we already have lastHashes const alreadyPolled = swarmSnodes.filter((n: Snode) => this.lastHashes[n.pubkey_ed25519]); + let toPollFrom = alreadyPolled.length ? alreadyPolled[0] : null; // If we need more nodes, select randomly from the remaining nodes: - - // We only poll from a single node. - let nodesToPoll = _.sampleSize(alreadyPolled, 1); - if (nodesToPoll.length < 1) { + if (!toPollFrom) { const notPolled = _.difference(swarmSnodes, alreadyPolled); - - const newNodes = _.sampleSize(notPolled, 1); - - nodesToPoll = _.concat(nodesToPoll, newNodes); + toPollFrom = _.sample(notPolled) as Snode; } - // this actually doesn't make much sense as we are at only polling from a single one - const promisesSettled = await Promise.allSettled( - nodesToPoll.map(async n => { - return this.pollNodeForKey(n, pubkey, namespaces); - }) - ); - - const arrayOfResultsWithNull = promisesSettled.map(entry => - entry.status === 'fulfilled' ? entry.value : null - ); + let resultsFromAllNamespaces: RetrieveMessagesResults | null; + try { + resultsFromAllNamespaces = await this.pollNodeForKey(toPollFrom, pubkey, namespaces); + } catch (e) { + window.log.warn('pollNodeForKey failed with: ', e.message); + resultsFromAllNamespaces = null; + } // filter out null (exception thrown) - const arrayOfResults = _.compact(arrayOfResultsWithNull); - + const arrayOfResults = resultsFromAllNamespaces?.length + ? _.compact(resultsFromAllNamespaces) + : null; // Merge results into one list of unique messages const messages = _.uniqBy(_.flatten(arrayOfResults), (x: any) => x.hash); @@ -257,6 +263,9 @@ export class SwarmPolling { perfEnd(`handleSeenMessages-${pkStr}`, 'handleSeenMessages'); + if (window.sessionFeatureFlags.useSharedUtilForUserConfig) { + } + newMessages.forEach((m: Message) => { const options = isGroup ? { conversationId: pkStr } : {}; processMessage(m.data, options, m.hash); @@ -268,10 +277,10 @@ export class SwarmPolling { private async pollNodeForKey( node: Snode, pubkey: PubKey, - namespaces: Array - ): Promise | null> { + namespaces: Array + ): Promise { const namespaceLength = namespaces.length; - if (namespaceLength > 2 || namespaceLength <= 0) { + if (namespaceLength > 3 || namespaceLength <= 0) { throw new Error('pollNodeForKey needs 1 or 2 namespaces to be given at all times'); } const edkey = node.pubkey_ed25519; @@ -310,7 +319,7 @@ export class SwarmPolling { await Promise.all( lastMessages.map(async (lastMessage, index) => { if (!lastMessage) { - return Promise.resolve(); + return; } return this.updateLastHash({ edkey: edkey, @@ -345,7 +354,7 @@ export class SwarmPolling { window.inboxStore?.dispatch(updateIsOnline(true)); } } - window?.log?.info('pollNodeForKey failed with', e.message); + window?.log?.info('pollNodeForKey failed with:', e.message); return null; } } diff --git a/ts/test/session/unit/libsession_wrapper/libsession_wrapper_contacts_test.ts b/ts/test/session/unit/libsession_wrapper/libsession_wrapper_contacts_test.ts index 82b79c51f..516cc1b7f 100644 --- a/ts/test/session/unit/libsession_wrapper/libsession_wrapper_contacts_test.ts +++ b/ts/test/session/unit/libsession_wrapper/libsession_wrapper_contacts_test.ts @@ -140,7 +140,7 @@ describe('libsession_wrapper_contacts ', () => { contacts2.setNickname(third_id, 'Nickname 3'); contacts2.setApproved(third_id, true); contacts2.setBlocked(third_id, true); - contacts2.setProfilePic(third_id, 'http://example.com/huge.bmp', from_string('qwerty')); + contacts2.setProfilePicture(third_id, 'http://example.com/huge.bmp', from_string('qwerty')); expect(contacts.needsPush()).to.be.true; expect(contacts2.needsPush()).to.be.true; diff --git a/ts/test/session/unit/libsession_wrapper/libsession_wrapper_test_skip.ts b/ts/test/session/unit/libsession_wrapper/libsession_wrapper_test_skip.ts index 6e27d4730..3aafb3d6f 100644 --- a/ts/test/session/unit/libsession_wrapper/libsession_wrapper_test_skip.ts +++ b/ts/test/session/unit/libsession_wrapper/libsession_wrapper_test_skip.ts @@ -42,12 +42,12 @@ describe('libsession_wrapper', () => { ); // This should also be unset: - const picResult = conf.getProfilePic(); + const picResult = conf.getProfilePicture(); expect(picResult.url).to.be.null; expect(picResult.key).to.be.null; // Now let's go set a profile name and picture: - conf.setProfilePic('http://example.org/omg-pic-123.bmp', stringToUint8Array('secret')); + conf.setProfilePicture('http://example.org/omg-pic-123.bmp', stringToUint8Array('secret')); conf.setName('Kallie'); // Retrieve them just to make sure they set properly: @@ -56,7 +56,7 @@ describe('libsession_wrapper', () => { expect(name).to.be.not.null; expect(name).to.be.eq('Kallie'); - const picture = conf.getProfilePic(); + const picture = conf.getProfilePicture(); expect(picture.url).to.be.eq('http://example.org/omg-pic-123.bmp'); expect(picture.key).to.be.deep.eq(stringToUint8Array('secret')); @@ -143,7 +143,7 @@ describe('libsession_wrapper', () => { conf2.setName('Raz'); // And, on conf2, we're also going to change the profile pic: - conf2.setProfilePic('http://new.example.com/pic', stringToUint8Array('qwert\0yuio')); + conf2.setProfilePicture('http://new.example.com/pic', stringToUint8Array('qwert\0yuio')); // Both have changes, so push need a push expect(conf.needsPush()).to.be.true; @@ -189,8 +189,8 @@ describe('libsession_wrapper', () => { // test). // Since only one of them set a profile pic there should be no conflict there: - const pic = conf.getProfilePic(); - const pic2 = conf2.getProfilePic(); + const pic = conf.getProfilePicture(); + const pic2 = conf2.getProfilePicture(); expect(pic.url).to.be.eq('http://new.example.com/pic'); expect(pic2.url).to.be.eq('http://new.example.com/pic'); diff --git a/ts/test/session/unit/receiving/ConfigurationMessage_test.ts b/ts/test/session/unit/receiving/ConfigurationMessage_test.ts index c4e291170..ee4669f34 100644 --- a/ts/test/session/unit/receiving/ConfigurationMessage_test.ts +++ b/ts/test/session/unit/receiving/ConfigurationMessage_test.ts @@ -12,7 +12,7 @@ import * as cache from '../../../../receiver/cache'; import { EnvelopePlus } from '../../../../receiver/types'; import chaiAsPromised from 'chai-as-promised'; -import { handleConfigurationMessage } from '../../../../receiver/configMessage'; +import { ConfigMessageHandler } from '../../../../receiver/configMessage'; import { stubData } from '../../../test-utils/utils'; chai.use(chaiAsPromised as any); chai.should(); @@ -51,7 +51,7 @@ describe('ConfigurationMessage_receiving', () => { const proto = config.contentProto(); createOrUpdateStub = stubData('createOrUpdateItem').resolves(); getItemByIdStub = stubData('getItemById').resolves(); - await handleConfigurationMessage( + await ConfigMessageHandler.handleConfigurationMessage( envelope, proto.configurationMessage as SignalService.ConfigurationMessage ); @@ -73,7 +73,7 @@ describe('ConfigurationMessage_receiving', () => { createOrUpdateStub = stubData('createOrUpdateItem').resolves(); getItemByIdStub = stubData('getItemById').resolves(); - await handleConfigurationMessage( + await ConfigMessageHandler.handleConfigurationMessage( envelope, proto.configurationMessage as SignalService.ConfigurationMessage ); diff --git a/ts/webworker/workers/node/libsession/libsession.worker.ts b/ts/webworker/workers/node/libsession/libsession.worker.ts index 7087190c2..9b1eb0cbe 100644 --- a/ts/webworker/workers/node/libsession/libsession.worker.ts +++ b/ts/webworker/workers/node/libsession/libsession.worker.ts @@ -46,7 +46,7 @@ function initUserConfigWrapper(options: Array) { if (!isNull(dump) && !isUInt8Array(dump)) { throw new Error('UserConfig init needs a valid dump'); } - + console.warn('UserConfigWrapper', UserConfigWrapper); userConfig = new UserConfigWrapper(edSecretKey, dump); } diff --git a/ts/window.d.ts b/ts/window.d.ts index 384d52cf0..664e85c5f 100644 --- a/ts/window.d.ts +++ b/ts/window.d.ts @@ -37,6 +37,7 @@ declare global { useOnionRequests: boolean; useTestNet: boolean; useClosedGroupV3: boolean; + useSharedUtilForUserConfig: boolean; debug: { debugFileServerRequests: boolean; debugNonSnodeRequests: boolean; diff --git a/utils.worker.config.js b/utils.worker.config.js index dc1a4fb25..79bf25ee5 100644 --- a/utils.worker.config.js +++ b/utils.worker.config.js @@ -25,4 +25,7 @@ module.exports = { path: path.resolve(__dirname, 'ts', 'webworker', 'workers', 'node', 'util'), }, target: 'node', + optimization: { + minimize: false, + }, }; diff --git a/yarn.lock b/yarn.lock index 9ef4479eb..de65cf2e6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2654,16 +2654,6 @@ asbycountry@^1.4.2: chalk "^1.1.3" fetch "^1.1.0" -asn1.js@^5.2.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" - integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - safer-buffer "^2.1.0" - assertion-error@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" @@ -2809,16 +2799,6 @@ blueimp-load-image@5.14.0: resolved "https://registry.yarnpkg.com/blueimp-load-image/-/blueimp-load-image-5.14.0.tgz#e8086415e580df802c33ff0da6b37a8d20205cc6" integrity sha512-g5l+4dCOESBG8HkPLdGnBx8dhEwpQHaOZ0en623sl54o3bGhGMLYGc54L5cWfGmPvfKUjbsY7LOAmcW/xlkBSA== -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: - version "4.12.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== - -bn.js@^5.0.0, bn.js@^5.1.1: - version "5.2.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002" - integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw== - body@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/body/-/body-5.1.0.tgz#e4ba0ce410a46936323367609ecb4e6553125069" @@ -2875,11 +2855,6 @@ braces@^3.0.2, braces@~3.0.2: dependencies: fill-range "^7.0.1" -brorand@^1.0.1, brorand@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== - browser-process-hrtime@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" @@ -2890,60 +2865,6 @@ browser-stdout@1.3.1: resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.2.0" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" - integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" - integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" - integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: - version "4.1.0" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" - integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== - dependencies: - bn.js "^5.0.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3" - integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== - dependencies: - bn.js "^5.1.1" - browserify-rsa "^4.0.1" - create-hash "^1.2.0" - create-hmac "^1.1.7" - elliptic "^6.5.3" - inherits "^2.0.4" - parse-asn1 "^5.1.5" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - browserslist@^4.14.5: version "4.21.4" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" @@ -2975,11 +2896,6 @@ buffer-from@^1.0.0: resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== - buffer@^6.0.3: version "6.0.3" resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" @@ -3242,14 +3158,6 @@ ci-info@^2.0.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - classnames@2.2.5: version "2.2.5" resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.5.tgz#fb3801d453467649ef3603c7d61a02bd129bde6d" @@ -3564,37 +3472,6 @@ country-code-lookup@^0.0.19: resolved "https://registry.yarnpkg.com/country-code-lookup/-/country-code-lookup-0.0.19.tgz#3fbf0192758ecf0d5eee0efbc220d62706c50fd6" integrity sha512-lpvgdPyj8RuP0CSZhACNf5ueKlLbv/IQUAQfg7yr/qJbFrdcWV7Y+aDN9K/u/bx3MXRfcsjuW+TdIc0AEj7kDw== -create-ecdh@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" - integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== - dependencies: - bn.js "^4.1.0" - elliptic "^6.5.3" - -create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" - integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - md5.js "^1.3.4" - ripemd160 "^2.0.1" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" - integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== - dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - cross-env@^6.0.3: version "6.0.3" resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-6.0.3.tgz#4256b71e49b3a40637a0ce70768a6ef5c72ae941" @@ -3622,23 +3499,6 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -crypto-browserify@^3.12.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" - integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== - dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" - crypto-random-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" @@ -3874,14 +3734,6 @@ depd@^1.1.2: resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= -des.js@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" - integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== - dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - detect-file@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" @@ -3917,15 +3769,6 @@ diff@^4.0.2: resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== -diffie-hellman@^5.0.0: - version "5.0.3" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" - integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== - dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" - dmg-builder@22.8.0: version "22.8.0" resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-22.8.0.tgz#2b17127837ed444db3086317eda5cf8912f6e6a9" @@ -4138,19 +3981,6 @@ electron@*, electron@^17.2.0: "@types/node" "^14.6.2" extract-zip "^1.0.3" -elliptic@^6.5.3: - version "6.5.4" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" - integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== - dependencies: - bn.js "^4.11.9" - brorand "^1.1.0" - hash.js "^1.0.0" - hmac-drbg "^1.0.1" - inherits "^2.0.4" - minimalistic-assert "^1.0.1" - minimalistic-crypto-utils "^1.0.1" - emoji-mart@^5.2.2: version "5.2.2" resolved "https://registry.yarnpkg.com/emoji-mart/-/emoji-mart-5.2.2.tgz#1c093ffc19554dd6edfcfeec9aca43ff38bcc16e" @@ -4667,14 +4497,6 @@ events@^3.2.0, events@^3.3.0: resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" - integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== - dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" - execa@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" @@ -5501,23 +5323,6 @@ has@^1.0.3: dependencies: function-bind "^1.1.1" -hash-base@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" - integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== - dependencies: - inherits "^2.0.4" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.1" - hasha@^5.0.0: version "5.2.2" resolved "https://registry.yarnpkg.com/hasha/-/hasha-5.2.2.tgz#a48477989b3b327aea3c04f53096d816d97522a1" @@ -5531,15 +5336,6 @@ he@1.2.0: resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== -hmac-drbg@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" @@ -5744,7 +5540,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4: +inherits@2, inherits@^2.0.3, inherits@~2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -6652,15 +6448,6 @@ matcher@^3.0.0: dependencies: escape-string-regexp "^4.0.0" -md5.js@^1.3.4: - version "1.3.5" - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" - integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - mdn-data@2.0.14: version "2.0.14" resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" @@ -6695,14 +6482,6 @@ micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4: braces "^3.0.2" picomatch "^2.3.1" -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" - mime-db@1.52.0: version "1.52.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" @@ -6735,16 +6514,6 @@ mimic-response@^3.1.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== -minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= - "minimatch@2 || 3", minimatch@^3.0.3, minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" @@ -7495,17 +7264,6 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" -parse-asn1@^5.0.0, parse-asn1@^5.1.5: - version "5.1.6" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" - integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== - dependencies: - asn1.js "^5.2.0" - browserify-aes "^1.0.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - safe-buffer "^5.1.1" - parse-filepath@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" @@ -7554,11 +7312,6 @@ patch-package@^6.4.7: slash "^2.0.0" tmp "^0.0.33" -path-browserify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" - integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== - path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" @@ -7618,17 +7371,6 @@ pathval@^1.1.1: resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== -pbkdf2@^3.0.3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" - integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" @@ -7916,18 +7658,6 @@ psl@^1.1.33, psl@^1.1.7: resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== -public-encrypt@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" - integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - safe-buffer "^5.1.2" - pump@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" @@ -7982,21 +7712,13 @@ ramda@^0.28.0: resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.28.0.tgz#acd785690100337e8b063cab3470019be427cc97" integrity sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA== -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: +randombytes@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== dependencies: safe-buffer "^5.1.0" -randomfill@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" - integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== - dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" - raw-body@~1.1.0: version "1.1.7" resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-1.1.7.tgz#1d027c2bfa116acc6623bca8f00016572a87d425" @@ -8278,7 +8000,7 @@ readable-stream@^2.2.2: string_decoder "~1.1.1" util-deprecate "~1.0.1" -readable-stream@^3.5.0, readable-stream@^3.6.0: +readable-stream@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== @@ -8496,14 +8218,6 @@ rimraf@~2.4.0: dependencies: glob "^6.0.1" -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" - integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - roarr@^2.15.3: version "2.15.4" resolved "https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz#f5fe795b7b838ccfe35dc608e0282b9eba2e7afd" @@ -8535,7 +8249,7 @@ rxjs@^7.0.0: dependencies: tslib "^2.1.0" -safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: +safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== @@ -8555,7 +8269,7 @@ safe-json-stringify@~1: resolved "https://registry.yarnpkg.com/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz#356e44bc98f1f93ce45df14bcd7c01cda86e0afd" integrity sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg== -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.1.0: +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -8678,9 +8392,15 @@ serialize-javascript@6.0.0, serialize-javascript@^6.0.0: dependencies: randombytes "^2.1.0" +"session_util_wrapper@file:../libsession-util-nodejs": + version "0.1.0" + dependencies: + nan "^2.17.0" + node-gyp "^9.3.0" + "session_util_wrapper@https://github.com/oxen-io/libsession-util-nodejs": version "0.1.0" - resolved "https://github.com/oxen-io/libsession-util-nodejs#a56aba11e504fe743f299bab79b7c33b2772f17f" + resolved "https://github.com/oxen-io/libsession-util-nodejs#0951d0138a289795257198d556409b2e73068fc1" dependencies: nan "^2.17.0" node-gyp "^9.3.0" @@ -8695,14 +8415,6 @@ set-harmonic-interval@^1.0.1: resolved "https://registry.yarnpkg.com/set-harmonic-interval/-/set-harmonic-interval-1.0.1.tgz#e1773705539cdfb80ce1c3d99e7f298bb3995249" integrity sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g== -sha.js@^2.4.0, sha.js@^2.4.8: - version "2.4.11" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" - integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - shallow-clone@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" @@ -8963,14 +8675,6 @@ stat-mode@^1.0.0: resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz#68b55cb61ea639ff57136f36b216a291800d1465" integrity sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg== -stream-browserify@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" - integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA== - dependencies: - inherits "~2.0.4" - readable-stream "^3.5.0" - string-template@~0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add"