UNPKG

1.89 kBMarkdownView Raw
1# Change log file
2
3## Changes:
4- v1.8.0: New plugin manager
5 - to update: run `we update`
6- v1.7.0:
7 - Added suport for jsonapi requests in core and response format improved
8- v1.6.0: we-plugin-file api updated. Title, breadcrumb and metatag moved to we-plugin-view, add babel in we-core.
9 - to update: run `we update` and install we-plugin-file-local
10- v1.5.0: Big update in cli and generators, Moved email features to we-plugin-email
11 - To update run `npm install --save we-plugin-email`
12- v1.4.0: Split we-core in small modules and update app project to be ready to APIs
13 - To update run `npm install --save we-plugin-editor-summernote we-plugin-url-alias we-plugin-user we-plugin-view we-plugin-widget we-plugin-acl we-plugin-auth`
14 - And update we-core to v1.4.0 `npm install we-core`
15- v1.3.0: Widget feature moved to we-plugin-widget
16 - To update run `npm install we-plugin-widget`
17- v1.0.0: we-core now returns one prototype and mysql modules is removed from we-core. For update your project do:
18 - Update your global we cli and generators: `npm install we generator-wejs -g`
19 - Update your project app.js to:
20 ```js
21 var We = require('we-core');
22 // instantiate an new app
23 var app = new We();
24
25 app.go(function (err) {
26 if (err) return console.error(err);
27 });
28 ```
29 - Update your project gulpfile to:
30 ```js
31 var We = require('we-core');
32 var we = new We();
33
34 var projectFolder = process.cwd();
35 var gulp = require('gulp');
36 var weGulpTasks = require('we-gulp-tasks-default');
37
38 weGulpTasks(we, gulp, projectFolder, function doneTask() {
39 we.exit(function(){
40 process.exit();
41 });
42 });
43
44 ```
45 - If you use mysql then to install **mysql** and **express-mysql-session**:<br>
46 `npm install --save mysql express-mysql-session`
47- v0.3.97: Add suport to url alias
48- v0.3.96: Add suport to windows 10