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 3.0.13 to 3.1.0

1

example/index.js

@@ -36,2 +36,3 @@ //@ts-ignore

operators: ['$like','$nlike'],
logger: (msg) => console.log(msg)
};

@@ -38,0 +39,0 @@ const Client = httpClient(options.host);

@@ -7,4 +7,13 @@ "use strict";

$ne: (key, value) => `!${key}:${value}`,
// @ts-ignore: TS6133
// eslint-disable-next-line @typescript-eslint/no-unused-vars
$empty: (key, value) => `!${key}:*`,
// @ts-ignore: TS6133
// eslint-disable-next-line @typescript-eslint/no-unused-vars
$nempty: (key, value) => `${key}:*`,
$fuzzy: (key, value) => `${key}:${value}~`,
$like: (key, value) => `${key}:*${value}*`,
$nlike: (key, value) => `!${key}:*${value}*`,
$starts: (key, value) => `${key}:${value}*`,
$ends: (key, value) => `${key}:*${value}`,
$in: (key, value) => `${key}:(${value.join(' OR ')})`,

@@ -11,0 +20,0 @@ $nin: (key, value) => `!${key}:(${value.join(' OR ')})`,

10

package.json
{
"name": "feathers-solr",
"description": "A service plugin for Solr",
"version": "3.0.13",
"version": "3.1.0",
"keywords": [

@@ -47,5 +47,5 @@ "feathers",

"dependencies": {
"@feathersjs/adapter-commons": "5.0.1",
"@feathersjs/adapter-commons": "5.0.13",
"@feathersjs/commons": "5.0.1",
"@feathersjs/errors": "5.0.1"
"@feathersjs/errors": "5.0.13"
},

@@ -55,5 +55,5 @@ "devDependencies": {

"@feathersjs/express": "5.0.1",
"@feathersjs/feathers": "5.0.1",
"@feathersjs/feathers": "5.0.13",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.10",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^5.57.0",

@@ -60,0 +60,0 @@ "@typescript-eslint/parser": "^5.57.0",

@@ -17,3 +17,3 @@ # feathers-solr

> __Important:__ `@feathersjs/memory` implements the [Feathers Common database adapter API](https://docs.feathersjs.com/api/databases/common.html) and [querying syntax](https://docs.feathersjs.com/api/databases/querying.html).
> __Important:__ `feathers-solr` implements the [Feathers Common database adapter API](https://docs.feathersjs.com/api/databases/common.html) and [querying syntax](https://docs.feathersjs.com/api/databases/querying.html).
> It use sthe native node `http` and `https` module.

@@ -20,0 +20,0 @@

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