Compare commits

...

3 Commits

Author SHA1 Message Date
fba610c954 update description 2024-05-29 14:14:20 +02:00
bd203ca770 2.0.6 2024-05-18 01:34:54 +02:00
bee711d1f8 fix(core): update 2024-05-18 01:34:54 +02:00
4 changed files with 13 additions and 8 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@push.rocks/smartlog-destination-receiver",
"version": "2.0.5",
"version": "2.0.6",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@push.rocks/smartlog-destination-receiver",
"version": "2.0.5",
"version": "2.0.6",
"license": "MIT",
"dependencies": {
"@push.rocks/smarthash": "^3.0.1",

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartlog-destination-receiver",
"version": "2.0.5",
"version": "2.0.6",
"private": false,
"description": "A package providing a destination handler for smartlog logging packages",
"main": "dist_ts/index.js",
@ -52,5 +52,10 @@
"logs",
"smartlog-interfaces",
"nodejs"
]
}
],
"homepage": "https://code.foss.global/push.rocks/smartlog-destination-receiver",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartlog-destination-receiver.git"
}
}

View File

@ -9,8 +9,8 @@ let testSmartlogReceiver: smartlogDestinationReceiver.SmartlogDestinationReceive
tap.test('should create a valid SmartlogDestinationReceiver', async () => {
testSmartlogReceiver = new smartlogDestinationReceiver.SmartlogDestinationReceiver({
receiverEndpoint: testQenv.getEnvVarOnDemand('RECEIVER_ENDPOINT'),
passphrase: testQenv.getEnvVarOnDemand('PASSPHRASE'),
receiverEndpoint: await testQenv.getEnvVarOnDemand('RECEIVER_ENDPOINT'),
passphrase: await testQenv.getEnvVarOnDemand('PASSPHRASE'),
});
});

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartlog-destination-receiver',
version: '2.0.5',
version: '2.0.6',
description: 'A package providing a destination handler for smartlog logging packages'
}