New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

kafkajs

Package Overview
Dependencies
Maintainers
2
Versions
299
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kafkajs - npm Package Compare versions

Comparing version 1.9.2 to 1.9.3

5

CHANGELOG.md

@@ -8,2 +8,7 @@ # Changelog

## [1.9.3] - 2019-06-27
### Fixed
- Fix AWS-IAM mechanism name #411 #412
- Fix TypeScript types for topic subscription with RegExp #413
## [1.9.2] - 2019-06-26

@@ -10,0 +15,0 @@ ### Fixed

2

package.json
{
"name": "kafkajs",
"version": "1.9.2",
"version": "1.9.3",
"description": "A modern Apache Kafka client for node.js",

@@ -5,0 +5,0 @@ "author": "Tulio Ornelas <ornelas.tulio@gmail.com>",

@@ -13,3 +13,3 @@ const { requests, lookup } = require('../../protocol/requests')

'SCRAM-SHA-512': SCRAM512Authenticator,
'AWS-IAM': AWSIAMAuthenticator,
AWS: AWSIAMAuthenticator,
}

@@ -16,0 +16,0 @@

@@ -37,3 +37,3 @@ /// <reference types="node" />

export interface SASLOptions {
mechanism: 'plain' | 'scram-sha-256' | 'scram-sha-512' | 'aws-iam'
mechanism: 'plain' | 'scram-sha-256' | 'scram-sha-512' | 'aws'
username: string

@@ -600,3 +600,3 @@ password: string

disconnect(): Promise<void>
subscribe(topic: { topic: string; fromBeginning?: boolean }): Promise<void>
subscribe(topic: { topic: string | RegExp; fromBeginning?: boolean }): Promise<void>
stop(): Promise<void>

@@ -603,0 +603,0 @@ run(config?: {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc