Skip to content

Commit c286f39

Browse files
authored
Merge pull request #858 from dresende/update_async_package
Update async package to resolve security vulnerabilities
2 parents de42d1f + 72d0ce0 commit c286f39

File tree

3 files changed

+62
-49
lines changed

3 files changed

+62
-49
lines changed

Changelog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
### v7.0.0
2+
- Update `async` package from v2 to v3 to resolve security vulnerabilities ([858](../../pull/858))
3+
- Drop support for node < 6 (due to `async` package update)
4+
15
### v6.2.0
2-
- [Feature] Add `.driver.generateQuery` function - same as `.driver.execQuery` but returns the SQL instead of executing it
6+
- [Feature] Add `.driver.generateQuery` function - same as `.driver.execQuery` but returns the SQL instead of executing it ([857](../../pull/857))
37

48
### v6.1.0
59
- [Feature] Accept options when calling `Model.create` ([856](../../pull/856))

package-lock.json

Lines changed: 53 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"sqlite",
1313
"mongodb"
1414
],
15-
"version": "6.2.0",
15+
"version": "7.0.0",
1616
"license": "MIT",
1717
"homepage": "http://dresende.github.io/node-orm2",
1818
"repository": "http://github.com/dresende/node-orm2.git",
@@ -57,11 +57,11 @@
5757
"test": "nyc make test"
5858
},
5959
"engines": {
60-
"node": ">= 4.0.0"
60+
"node": ">= 6.0.0"
6161
},
6262
"analyse": false,
6363
"dependencies": {
64-
"async": "~2.6.3",
64+
"async": "~3.2.3",
6565
"bluebird": "3.5.1",
6666
"enforce": "0.1.7",
6767
"hat": "0.0.3",
@@ -73,7 +73,7 @@
7373
"devDependencies": {
7474
"chalk": "~4.1.2",
7575
"glob": "~7.2.0",
76-
"mocha": "~9.1.3",
76+
"mocha": "~9.2.2",
7777
"mongodb": "~1.4.10",
7878
"mysql": "~2.18.1",
7979
"nyc": "~15.1.0",

0 commit comments

Comments
 (0)