feathers-solr
Advanced tools
Comparing version 2.7.8 to 2.7.9
@@ -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" | ||
} | ||
} |
40485
667
+ Addeduuid@8.3.2(transitive)
- Removeduuid@7.0.3(transitive)
Updated@feathersjs/commons@^4.5.3
Updated@feathersjs/errors@^4.5.3
Updatedqs@^6.9.4
Updateduuid@^8.1.0