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

apostrophe-schemas

Package Overview
Dependencies
Maintainers
10
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apostrophe-schemas - npm Package Compare versions

Comparing version 0.5.51 to 0.5.52

11

index.js

@@ -496,3 +496,3 @@ /* globals: apos */

} else {
console.log(snippet.name + ': unknown type for attr attribute of relationship ' + name + ', ignoring');
console.error(snippet.name + ': unknown type for attr attribute of relationship ' + name + ', ignoring');
}

@@ -688,3 +688,7 @@ });

_.each(_joins, function(join) {
join._dotPath = arrays.join('.') + '.' + join.name;
if (!arrays.length) {
join._dotPath = join.name;
} else {
join._dotPath = arrays.join('.') + '.' + join.name;
}
// If we have more than one object we're not interested in joins

@@ -725,4 +729,5 @@ // with the ifOnlyOne restriction right now.

winner = true;
return;
}
if (withJoinName.substr(0, dotPath + 1) === (dotPath + '.')) {
if (withJoinName.substr(0, dotPath.length + 1) === (dotPath + '.')) {
if (!withJoinsNext[dotPath]) {

@@ -729,0 +734,0 @@ withJoinsNext[dotPath] = [];

{
"version": "0.5.51",
"version": "0.5.52",
"name": "apostrophe-schemas",

@@ -4,0 +4,0 @@ "description": "Schemas for easy editing of properties in Apostrophe objects",

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