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

orm

Package Overview
Dependencies
Maintainers
2
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

orm - npm Package Compare versions

Comparing version 2.1.29 to 2.1.30

3

Changelog.md

@@ -0,1 +1,4 @@

### v2.1.30
- Fix paths on windows (#699)
### v2.1.29

@@ -2,0 +5,0 @@ - Fix hasOne association when ID is 0 (#681)

6

lib/Utilities.js

@@ -285,5 +285,5 @@ var _ = require('lodash')

}
if (path_str[0] !== path.sep) {
path_str = cwd + "/" + path_str;
var pathIsAbsolute = path.isAbsolute || require('path-is-absolute');
if (!pathIsAbsolute(path_str)) {
path_str = path.join(cwd, path_str);
}

@@ -290,0 +290,0 @@ if (path_str.substr(-1) === path.sep) {

@@ -15,3 +15,3 @@ {

],
"version" : "2.1.29",
"version" : "2.1.30",
"license" : "MIT",

@@ -40,7 +40,8 @@ "homepage" : "http://dresende.github.io/node-orm2",

"dependencies": {
"enforce" : "0.1.6",
"sql-query" : "0.1.26",
"sql-ddl-sync" : "0.3.11",
"hat" : "0.0.3",
"lodash" : "2.4.1"
"enforce" : "0.1.6",
"sql-query" : "0.1.26",
"sql-ddl-sync" : "0.3.11",
"hat" : "0.0.3",
"lodash" : "2.4.1",
"path-is-absolute" : "1.0.0"
},

@@ -47,0 +48,0 @@ "devDependencies": {

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