File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## v4.1.16-alpha
4+ - Fix for ` merge ` bundling rule (#660 )
5+
36## v4.1.15-alpha
47- Refactor ` Password ` into a instantiable ` Hasher ` class, service, and ` Password ` facade (#827 )
58- Change default hash cost back to 10 and fix legacy hash detection issue
Original file line number Diff line number Diff line change 33namespace UserFrosting ;
44
55// Some standard defines
6- define ('UserFrosting\VERSION ' , '4.1.15 -alpha ' );
6+ define ('UserFrosting\VERSION ' , '4.1.16 -alpha ' );
77define ('UserFrosting\DS ' , '/ ' );
88define ('UserFrosting\PHP_MIN_VERSION ' , '5.6 ' );
99define ('UserFrosting\DEBUG_CONFIG ' , false );
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ gulp.task('bundle-build', () => {
102102 case 'merge' :
103103 // If using this collision rule, keep in mind any bundling options will also be merged.
104104 // Inspect the produced 'bundle.config.json' file in the 'build' folder to ensure options are correct.
105- config . bundle [ bundleName ] = merge ( config . bundle [ bundleName ] , currentConfig . bundle [ bundleName ] ) ;
105+ config . bundle [ bundleName ] = merge ( currentConfig . bundle [ bundleName ] , config . bundle [ bundleName ] ) ;
106106 break ;
107107 case 'ignore' :
108108 // Do nothing. This simply exists to prevent falling through to error catchment.
You can’t perform that action at this time.
0 commit comments