Socket
Socket
Sign inDemoInstall

nx

Package Overview
Dependencies
263
Maintainers
1
Versions
1216
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.8.8 to 0.8.9

.npmignore

15

History.md

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

# 0.8.8
# 0.8.9
======================
* Add DirectAction(ExtDirect)のコンフィグオプションにurlが指定できるようになりました。
* Add NX.util.Template include時のファイル名指定にシングルクォーテーション以外に、ダブルクォーテーションにも対応しました。
* Change 例外発生時に他アクセスによるコネクションの停止(行きっぱなし)が発生するため、
データベースコネクションを破棄するようにしました。
# 0.8.8
======================
* Fixed MySQLのコネクションプーリング復活、次々別々のコネクションが作成されエラーが発生するため
# 0.8.7

@@ -16,2 +25,3 @@ ======================

# 0.8.6

@@ -22,2 +32,3 @@ ======================

# 0.8.5

@@ -32,2 +43,3 @@ ======================

# 0.8.4

@@ -39,2 +51,3 @@ ======================

# 0.8.3

@@ -41,0 +54,0 @@ ======================

2

lib/nx/app/action/Direct/dollar_execute.js

@@ -190,3 +190,3 @@ /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */

var api = {
url: req.url,
url: action.url || req.url,
namespace: action.namespace || undefined,

@@ -193,0 +193,0 @@ type: 'remoting'

@@ -19,2 +19,10 @@ /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */

// データベースコネクションを破棄
NX.iterate(NX.database.Manager.connections, function(conn) {
if(conn.adapter === 'adapter') {
conn.end();
}
});
NX.database.Manager.connections = {};
// エラードキュメントファイルパス取得

@@ -21,0 +29,0 @@ file = NX.WebView.errorDocument[500];

@@ -25,2 +25,6 @@ /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */

if(!tmp) {
tmp = op.match(/".*? *?"/g);
}
tmp.forEach(function(item) {

@@ -27,0 +31,0 @@ op = op.replace(item, item.replace(/ /g, ' '));

@@ -5,3 +5,3 @@ {

"keywords": ["framework", "web", "Web Server", "Application Server", "NextJS", "Ext JS"],
"version" : "0.8.8",
"version" : "0.8.9",
"author" : "Kazuhiro Kotsutsumi <kotsutsumi@xenophy.com>",

@@ -8,0 +8,0 @@ "repository" : "git://github.com/xenophy/NextJS.git",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc