Skip to content

Commit 34ad348

Browse files
committed
Updated version from 3.3.3 to 3.4.0.
1 parent 73e0ab6 commit 34ad348

11 files changed

+38
-12
lines changed

builders.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @module FrameworkBuilders
24-
* @version 3.3.3
24+
* @version 3.4.0
2525
*/
2626

2727
'use strict';

bundles.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @module FrameworkBundles
24-
* @version 3.3.3
24+
* @version 3.4.0
2525
*/
2626

2727
require('./index');

changes.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
======= 3.3.3
1+
======= 3.4.0
22

33
- added: `date.setTimeZone(timezone)`
44
- added: `NOSQL('~absolute_path.nosql')' loads external NoSQL embedded database

cluster.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @module FrameworkCluster
24-
* @version 3.3.3
24+
* @version 3.4.0
2525
*/
2626

2727
const Fs = require('fs');

debug.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @module FrameworkDebug
24-
* @version 3.3.3
24+
* @version 3.4.0
2525
*/
2626

2727
const Path = require('path');

index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @module Framework
24-
* @version 3.3.3
24+
* @version 3.4.0
2525
*/
2626

2727
'use strict';
@@ -914,8 +914,8 @@ function Framework() {
914914
var self = this;
915915

916916
self.$id = null; // F.id ==> property
917-
self.version = 3330;
918-
self.version_header = '3.3.3';
917+
self.version = 3400;
918+
self.version_header = '3.4.0';
919919
self.version_node = process.version.toString();
920920
self.syshash = (__dirname + '-' + Os.hostname() + '-' + Os.platform() + '-' + Os.arch() + '-' + Os.release() + '-' + Os.tmpdir() + JSON.stringify(process.versions)).md5();
921921
self.pref = global.PREF;

nosql.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @module NoSQL
24-
* @version 3.3.0
24+
* @version 3.4.0
2525
*/
2626

2727
'use strict';

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
"name": "Sarp Aykent",
100100
"email": "[email protected]"
101101
}],
102-
"version": "3.3.3-15",
102+
"version": "3.4.0",
103103
"homepage": "http://www.totaljs.com",
104104
"bugs": {
105105
"url": "https://github.com/totaljs/framework/issues",

session.js

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
// Copyright 2019-2020 (c) Peter Širka <[email protected]>
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a
4+
// copy of this software and associated documentation files (the
5+
// "Software"), to deal in the Software without restriction, including
6+
// without limitation the rights to use, copy, modify, merge, publish,
7+
// distribute, sublicense, and/or sell copies of the Software, and to permit
8+
// persons to whom the Software is furnished to do so, subject to the
9+
// following conditions:
10+
//
11+
// The above copyright notice and this permission notice shall be included
12+
// in all copies or substantial portions of the Software.
13+
//
14+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15+
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17+
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18+
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19+
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20+
// USE OR OTHER DEALINGS IN THE SOFTWARE.
21+
22+
/**
23+
* @module FrameworkSession
24+
* @version 3.4.0
25+
*/
26+
127
require('./index');
228

329
const COOKIEOPTIONS = { httponly: true, security: 'lax' };

test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @module FrameworkTest
24-
* @version 3.0.0
24+
* @version 3.4.0
2525
*/
2626

2727
var T = F.tests = {};

utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @module FrameworkUtils
24-
* @version 3.3.3
24+
* @version 3.4.0
2525
*/
2626

2727
'use strict';

0 commit comments

Comments
 (0)