Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

kafka-avro

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kafka-avro - npm Package Compare versions

Comparing version 0.8.0-beta.2 to 0.8.0-beta.3

10

lib/schema-registry.js

@@ -85,2 +85,3 @@ /**

.map(this._fetchLatestVersion, { concurrency: 10 })
.filter(Boolean)
.map(this._fetchSchema, { concurrency: 10 })

@@ -109,2 +110,3 @@ .map(this._registerSchemaLatest)

.map(this._fetchAllSchemaVersions, {concurrency: 10})
.filter(Boolean)
.then(this._flatenResults)

@@ -258,3 +260,3 @@ .map(this._fetchSchema, {concurrency: 10})

})
.catch(this._handleAxiosError);
.catch(this._suppressAxiosError);
});

@@ -271,6 +273,2 @@

SchemaRegistry.prototype._fetchSchema = Promise.method(function (topicMeta) {
if (!topicMeta) {
// Request failed to fetch a schema for the designated topic, just skip
return;
}
var schemaTopic = topicMeta.schemaTopic;

@@ -394,3 +392,3 @@ var version = topicMeta.version;

SchemaRegistry.prototype._suppressAxiosError = function (err) {
if (!err.port) {
if (!err.response) {
// not an axios error, bail early

@@ -397,0 +395,0 @@ throw err;

2

package.json
{
"name": "kafka-avro",
"version": "0.8.0-beta.2",
"version": "0.8.0-beta.3",
"main": "./lib/kafka-avro",

@@ -5,0 +5,0 @@ "description": "Node.js bindings for librdkafka with Avro schema serialization.",

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