node-red-contrib-kafkajs
Advanced tools
Comparing version 0.0.6 to 0.0.7
@@ -42,9 +42,9 @@ module.exports = function(RED) { | ||
else if(config.auth == 'saslplain'){ | ||
options.ssl = config.saslplainssl; | ||
else if(config.auth == 'sasl'){ | ||
options.ssl = config.saslssl; | ||
options.sasl = new Object(); | ||
options.sasl.mechanism = 'plain'; | ||
options.sasl.username = node.credentials.saslplainusername; | ||
options.sasl.password = node.credentials.saslplainpassword; | ||
options.sasl.mechanism = config.saslmechanism || 'plain'; | ||
options.sasl.username = node.credentials.saslusername; | ||
options.sasl.password = node.credentials.saslpassword; | ||
} | ||
@@ -56,6 +56,6 @@ | ||
credentials: { | ||
saslplainusername: {type:"text"}, | ||
saslplainpassword: {type:"password"} | ||
saslusername: {type:"text"}, | ||
saslpassword: {type:"password"} | ||
} | ||
}); | ||
} |
@@ -12,7 +12,8 @@ { | ||
"kafkajs": "^1.12.0", | ||
"passport-keycloak-oauth2-oidc": "^1.0.5", | ||
"uuid": "^8.3.2" | ||
}, | ||
"homepage": "https://github.com/emrebekar/node-red-contrib-kafkajs#readme", | ||
"version":"0.0.6", | ||
"license" :"Apache 2.0", | ||
"version": "0.0.7", | ||
"license": "Apache 2.0", | ||
"keywords": [ | ||
@@ -19,0 +20,0 @@ "kafka", |
Sorry, the diff of this file is not supported yet
106309
3
+ Addedbase64url@3.0.1(transitive)
+ Addedlodash@4.17.21(transitive)
+ Addedoauth@0.10.0(transitive)
+ Addedpassport-keycloak-oauth2-oidc@1.0.5(transitive)
+ Addedpassport-oauth2@1.8.0(transitive)
+ Addedpassport-strategy@1.0.0(transitive)
+ Addeduid2@0.0.4(transitive)
+ Addedutils-merge@1.0.1(transitive)