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

solr-proxy

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

solr-proxy - npm Package Compare versions

Comparing version 1.0.1 to 1.1.0

npm-shrinkwrap.json

5

CHANGELOG.md

@@ -0,1 +1,6 @@

1.1.0
=====
* --version flag
1.0.1

@@ -2,0 +7,0 @@ =====

@@ -12,2 +12,3 @@ module.exports = function(argv, logger, SolrProxy) {

' --validMethods Allowed HTTP methods (comma separated) [default: "GET,HEAD"]\n' +
' --version, -v Show version' +
' --help, -h Show this message';

@@ -20,2 +21,8 @@

if (argv.version || argv.v) {
var version = require('../../package.json').version;
logger(version);
return;
}
var proxyOptions = {

@@ -22,0 +29,0 @@ backend: {}

9

package.json

@@ -10,3 +10,3 @@ {

],
"version": "1.0.1",
"version": "1.1.0",
"author": "Rich Trott <rtrott@gmail.com>",

@@ -20,2 +20,6 @@ "bugs": {

},
"pre-commit": [
"lint",
"test"
],
"bin": {

@@ -27,3 +31,4 @@ "solr-proxy": "bin/solr-proxy.js"

"index.js",
"lib"
"lib",
"npm-shrinkwrap.json"
],

@@ -30,0 +35,0 @@ "repository": {

@@ -6,3 +6,3 @@ solr-proxy

This is a clone/rewrite of https://github.com/dergachev/solr-security-proxy with some bug fixes and other changes. Much of the material in this README and many of the tests are taken from that project.
This is a rewrite of https://github.com/dergachev/solr-security-proxy with some bug fixes and other changes.

@@ -38,9 +38,10 @@ [![Build Status](https://secure.travis-ci.org/Trott/solr-proxy.png)](http://travis-ci.org/Trott/solr-proxy)

```
--port Listen on this port [default: 8008]
--backendPort Solr backend port [default: 8080]
--backendHost Solr backend host [default: "localhost"]
--validPaths Only allow these paths (comma separated) [default: "/solr/select"]
--invalidParams Block these query params (comma separated) [default: "qt,stream"]
--validMethods Allow only these HTTP methods (comma separated) [default: "GET"]
--help, -h Show usage
--port Listen on this port [default: 8008]
--backendPort Solr backend port [default: 8080]
--backendHost Solr backend host [default: "localhost"]
--validPaths Allowed paths (comma separated) [default: "/solr/select"]
--invalidParams Blocked parameters (comma separated) [default: "qt,stream"]
--validMethods Allowed HTTP methods (comma separated) [default: "GET,HEAD"]
--version, -v Show version
--help, -h Show this message
```

@@ -47,0 +48,0 @@

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