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 1.1.14 to 1.1.15

2

lib/client/requestHandler/CollectionsApi.js

@@ -321,2 +321,2 @@ 'use strict';

exports.default = CollectionsApi;
module.exports = exports['default'];
module.exports = exports.default;

@@ -109,2 +109,2 @@ 'use strict';

module.exports = exports['default'];
module.exports = exports.default;

@@ -77,2 +77,2 @@ 'use strict';

exports.default = ConfigSets;
module.exports = exports['default'];
module.exports = exports.default;

@@ -160,2 +160,2 @@ 'use strict';

exports.default = CoreAdminApi;
module.exports = exports['default'];
module.exports = exports.default;

@@ -53,2 +53,2 @@ 'use strict';

module.exports = exports['default'];
module.exports = exports.default;

@@ -27,2 +27,2 @@ 'use strict';

module.exports = exports['default'];
module.exports = exports.default;

@@ -259,2 +259,2 @@ 'use strict';

exports.default = Schema;
module.exports = exports['default'];
module.exports = exports.default;

@@ -34,2 +34,2 @@ 'use strict';

module.exports = exports['default'];
module.exports = exports.default;

@@ -34,2 +34,2 @@ 'use strict';

}
module.exports = exports['default'];
module.exports = exports.default;

@@ -104,3 +104,4 @@ 'use strict';

overwrite: true
}
},
requestDefaults: {}
}, opts);

@@ -113,2 +114,9 @@

this.req = _requestPromise2.default;
this.req.defaults(this.opts.requestDefaults);
// this.req.defaults({'auth': {
// 'user': 'username',
// 'pass': 'password',
// 'sendImmediately': false
// }})
}

@@ -244,2 +252,2 @@

exports.default = Solr;
module.exports = exports['default'];
module.exports = exports.default;

@@ -392,2 +392,2 @@ 'use strict';

init.Service = Service;
module.exports = exports['default'];
module.exports = exports.default;

@@ -97,2 +97,8 @@ 'use strict';

},
$between: function $between(field, param) {
if (Array.isArray(param)) {
param = param.join(' TO ');
}
this.query.filter.push(field + ':[' + param + ']');
},
$lt: function $lt(field, param) {

@@ -99,0 +105,0 @@ this.query.filter.push(field + ':[* TO ' + param + '}');

{
"name": "feathers-solr",
"description": "Solr Adapter for Feathersjs",
"version": "1.1.14",
"version": "1.1.15",
"homepage": "https://github.com/sajov/feathers-solr",

@@ -55,3 +55,3 @@ "main": "lib/",

"dependencies": {
"debug": "^3.1.0",
"debug": "^4.0.1",
"feathers-errors": "^2.9.2",

@@ -72,7 +72,7 @@ "request": "^2.88.0",

"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0-beta.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chai": "^4.2.0",
"coveralls": "^3.0.2",

@@ -93,4 +93,4 @@ "faker": "^4.1.0",

"rimraf": "^2.6.2",
"supertest": "^3.1.0"
"supertest": "^3.3.0"
}
}

@@ -513,9 +513,17 @@ # feathers-solr

* Write more Docs
* Implement $suggest and $spellcheck
* Add demo autocompleter with suggestions.
* Add demo search page with facet navigation, filter(ranges, sliders), pagination and result listing by just one query.
* Implement Parallel SQL Interface
* Implement ReplicationHandlers
* Implement RealTime Get
* Implement ShardHandlers
* Implement Solr BolbStore API
## Changelog
__1.1.15__
- add support $between param
- add support for auth
__1.1.14__
- ...
__1.1.13__

@@ -522,0 +530,0 @@ - refactor describe

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

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