Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mongochangestream

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongochangestream - npm Package Compare versions

Comparing version 0.43.1 to 0.43.2

.idea/codeStyles/codeStyleConfig.xml

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 0.43.2
- Escape period in regex.
# 0.43.1

@@ -2,0 +6,0 @@

4

dist/util.js

@@ -21,3 +21,5 @@ "use strict";

const removeDottedPaths = (omit) => {
const dottedFields = omit.filter((x) => x.includes('.'));
const dottedFields = omit
.filter((x) => x.includes('.'))
.map((x) => x.replaceAll('.', '\\.'));
if (dottedFields.length) {

@@ -24,0 +26,0 @@ return {

{
"name": "mongochangestream",
"version": "0.43.1",
"version": "0.43.2",
"description": "Sync MongoDB collections via change streams into any database.",

@@ -5,0 +5,0 @@ "author": "GovSpend",

@@ -46,3 +46,3 @@ import { test } from 'node:test'

regex:
'^(?!documents.agenda.parsedText|documents.agenda.contentType)',
'^(?!documents\\.agenda\\.parsedText|documents\\.agenda\\.contentType)',
},

@@ -49,0 +49,0 @@ },

@@ -18,3 +18,5 @@ import { Collection, MongoServerError } from 'mongodb'

const removeDottedPaths = (omit: string[]) => {
const dottedFields = omit.filter((x) => x.includes('.'))
const dottedFields = omit
.filter((x) => x.includes('.'))
.map((x) => x.replaceAll('.', '\\.'))
if (dottedFields.length) {

@@ -21,0 +23,0 @@ return {

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