Skip to content

Commit 7348858

Browse files
committed
4.0.0
1 parent 65c7655 commit 7348858

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

Diff for: CHANGELOG.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
<a name="4.0.0"></a>
2+
## [4.0.0](https://github.com/angular-fullstack/generator-angular-fullstack/compare/3.7.6...v4.0.0) (2016-08-08)
3+
4+
5+
### Notable Changes
6+
7+
### [Webpack](http://webpack.github.io/)
8+
* No more Bower
9+
* Webpack is a Module Bundler for the front-end.
10+
* Everything starts in `client/app.js`. It imports (using CommonJS / ES2015 imports) everything else needed from there.
11+
* Whenever we create a new Angular 1 module, we export its name, and import that name in another module up the tree, all the way to `client/app.js`. This design pattern allows for easy lazy-loading.
12+
13+
### Gulp v Grunt
14+
Grunt has been removed.
15+
* Gulp is significantly faster to run
16+
* Gulp focuses on programmatic configuration, which makes it a breeze to configure compared to Grunt's JSON-config-focused configuration.
17+
* Gulp development is much more active, with Gulp 4.0.0 hopefully being released soon.
18+
19+
### ESLint
20+
JSHint + JSCS have been replaced with ESLint. ESLint provides a gigantic amount of rules, and is easily pluggable with many plugins. It uses Espree. Also, JSCS has merged with ESLint.
21+
22+
### Types
23+
Flow support has been added. TypeScript type errors have been fixed.
24+
25+
### Async/Sync Auth methods
26+
The following methods from the client Auth service have been split into two: `getCurrentUser`, `isLoggedIn`, `hasRole`, `isAdmin`. The reason that these methods could be both synchronous and asynchronous depending on how many arguments were passed is because they were called from Angular templates. Now, the Angular templates call the sync form of these methods (e.x. `getCurrentUserSync`), and the original functions are now only async.
27+
28+
### Constants
29+
The task runner no longer takes care of creating an Angular module for config constants. It is taken care of by webpack now (the `shared.js` files is now just `require`d)
30+
31+
### Endpoint PUT/PATCH
32+
PUT now defaults to an upsert. PATCH now actually does an HTTP PATCH.
33+
34+
### -Livereload +Browsersync
35+
Livereload has been removed in favor of [Browsersync](https://www.browsersync.io/)
36+
37+
138
<a name="3.7.6"></a>
239
## [3.7.6](https://github.com/angular-fullstack/generator-angular-fullstack/compare/3.7.5...v3.7.6) (2016-06-21)
340

@@ -8,7 +45,6 @@
845
* Bumped a few generator dependencies
946

1047

11-
1248
<a name="3.7.5"></a>
1349
## [3.7.5](https://github.com/angular-fullstack/generator-angular-fullstack/compare/3.7.4...v3.7.5) (2016-06-02)
1450

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-angular-fullstack",
3-
"version": "4.0.0-rc.0",
3+
"version": "4.0.0",
44
"description": "Yeoman generator for creating MEAN stack applications, using MongoDB, Express, AngularJS, and Node",
55
"keywords": [
66
"yeoman-generator",

0 commit comments

Comments
 (0)