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

rest-on-couch-client

Package Overview
Dependencies
Maintainers
4
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rest-on-couch-client - npm Package Compare versions

Comparing version 3.3.3 to 3.3.4

7

CHANGELOG.md
# Changelog
### [3.3.4](https://www.github.com/cheminfo/rest-on-couch-client/compare/v3.3.3...v3.3.4) (2021-11-17)
### Bug Fixes
* do not send params to rest-on-couch when they are set to undefined ([4d411e2](https://www.github.com/cheminfo/rest-on-couch-client/commit/4d411e2b62a98dcb5d91f8e9b3a74ead5ea3c8a3))
### [3.3.3](https://www.github.com/cheminfo/rest-on-couch-client/compare/v3.3.2...v3.3.3) (2021-11-15)

@@ -4,0 +11,0 @@

2

lib-es6/real/Roc.js

@@ -15,3 +15,3 @@ import axios from 'axios';

const searchParams = new URLSearchParams();
const keys = Object.keys(params);
const keys = Object.keys(params).filter((key) => params[key] !== undefined);
for (const key of keys) {

@@ -18,0 +18,0 @@ if (keysToProcess.includes(key)) {

@@ -17,3 +17,3 @@ "use strict";

const searchParams = new URLSearchParams();
const keys = Object.keys(params);
const keys = Object.keys(params).filter((key) => params[key] !== undefined);
for (const key of keys) {

@@ -20,0 +20,0 @@ if (keysToProcess.includes(key)) {

{
"name": "rest-on-couch-client",
"version": "3.3.3",
"version": "3.3.4",
"description": "A nodejs / browser client for rest-on-couch backend",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

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