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

feathers-solr

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feathers-solr - npm Package Compare versions

Comparing version 2.7.8 to 2.7.9

33

example/index.js

@@ -25,3 +25,4 @@ const feathers = require('@feathersjs/feathers');

paginate: {},
events: ['testing']
events: ['testing'],
multi: true
})

@@ -35,16 +36,26 @@ );

paginate: {},
events: ['testing']
events: ['testing'],
multi: true
})
);
app.service('fetch').create({
id: 'TWINX2048-3200PRO',
name: 'Product One'
});
// add some docs
app.service('fetch').create([
{
id: 'TWINX2048-3200PRO',
name: 'Product One'
},
{
id: 'HELIX1015-1800SL',
name: 'Product Two'
}
]);
// add a doc ....
app.service('undici').create({
id: 'HELIX1015-1800SL',
name: 'Product Two'
id: 'delete-test',
name: 'Product to delete'
});
// Set up default error handler
// app.use(express.errorHandler());
// and delete it
app.service('undici').remove(null, { query: { id: 'delete-test' } });

@@ -58,5 +69,5 @@ // Start the server.

process.on('SIGINT', function() {
process.on('SIGINT', function () {
console.error('Caught SIGINT, shutting down.');
server.close();
});
{
"name": "feathers-solr",
"description": "A service plugin for Solr",
"version": "2.7.8",
"version": "2.7.9",
"homepage": "https://github.com/sajov/feathers-solr",

@@ -57,21 +57,21 @@ "keywords": [

"@feathersjs/adapter-commons": "^4.5.2",
"@feathersjs/commons": "^4.5.2",
"@feathersjs/errors": "^4.5.2",
"@feathersjs/commons": "^4.5.3",
"@feathersjs/errors": "^4.5.3",
"debug": "^4.1.1",
"qs": "^6.9.3",
"uuid": "^7.0.3"
"qs": "^6.9.4",
"uuid": "^8.1.0"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.5.2",
"@feathersjs/express": "^4.5.2",
"@feathersjs/feathers": "^4.5.2",
"dtslint": "^3.4.1",
"@feathersjs/express": "^4.5.4",
"@feathersjs/feathers": "^4.5.3",
"dtslint": "^3.6.9",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^7.1.1",
"mocha": "^7.2.0",
"node-fetch": "^2.6.0",
"semistandard": "^14.2.0",
"tslint": "^6.1.1",
"tslint": "^6.1.2",
"undici": "^0.5.0",
"minimist": ">=1.2.3"
"minimist": ">=1.2.5"
}
}
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