forked from gpickin/coldbox-plugin-BCrypt
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
44 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,14 +44,20 @@ | |
}, | ||
"scripts":{ | ||
"build:module":"task run taskFile=build/Build.cfc :projectName=`package show slug` :version=`package show version`", | ||
"build:docs":"task run taskFile=build/Build.cfc target=docs :projectName=`package show slug` :version=`package show version`", | ||
"release":"recipe build/release.boxr", | ||
"format":"cfformat run helpers,interfaces,models,test-harness/tests/,ModuleConfig.cfc --overwrite", | ||
"format:watch":"cfformat watch helpers,interfaces,models,test-harness/tests/,ModuleConfig.cfc ./.cfformat.json", | ||
"format:check":"cfformat check helpers,interfaces,models,test-harness/tests/,ModuleConfig.cfc", | ||
"cfpm":"echo '\".engine/adobe2021/WEB-INF/cfusion/bin/cfpm.sh\"' | run", | ||
"cfpm:install":"echo '\".engine/adobe2021/WEB-INF/cfusion/bin/cfpm.sh\" install ${1}' | run", | ||
"install:2021":"run-script cfpm:install zip", | ||
"install:dependencies":"install && cd test-harness && install" | ||
"build:docs":"task run taskFile=build/Build.cfc target=docs :projectName=`package show slug` :version=`package show version`", | ||
"install:dependencies":"install && cd test-harness && install", | ||
"release":"recipe build/release.boxr", | ||
"format":"cfformat run helpers,models,test-harness/tests/,ModuleConfig.cfc --overwrite", | ||
"format:watch":"cfformat watch helpers,models,test-harness/tests/,ModuleConfig.cfc ./.cfformat.json", | ||
"format:check":"cfformat check helpers,models,test-harness/tests/,ModuleConfig.cfc ./.cfformat.json", | ||
"start:lucee" : "server start [email protected]", | ||
"start:2018" : "server start [email protected]", | ||
"start:2021" : "server start [email protected]", | ||
"stop:lucee" : "server stop [email protected]", | ||
"stop:2018" : "server stop [email protected]", | ||
"stop:2021" : "server stop [email protected]", | ||
"logs:lucee" : "server log [email protected] --follow", | ||
"logs:2018" : "server log [email protected] --follow", | ||
"logs:2021" : "server log [email protected] --follow" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,50 +16,50 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
|
||
### Added | ||
|
||
* Compatibility with ColdBox and CommandBox modules | ||
* New module template updates | ||
* Github actions build process | ||
- Compatibility with ColdBox and CommandBox modules | ||
- New module template updates | ||
- Github actions build process | ||
|
||
## [3.0.1] => 2020-NOV-25 | ||
|
||
### Fixed | ||
|
||
* @wpdebruin <[email protected]> - enabled `workfactor` to be used in `hashPassword()` | ||
- @wpdebruin <[email protected]> - enabled `workfactor` to be used in `hashPassword()` | ||
|
||
## [3.0.0] => 2020-NOV-1 | ||
|
||
### Added | ||
|
||
* Added three new helper mixins for easy usage : `bcryptHash(), bcryptCheck(), bcryptSalt()` | ||
* New method to generate bcrypt salts: `generateSalt( workFactor = default ): bcryptSalt()` | ||
* Ability to pass in a custom `salt` argument via the `hashPassword( input, workFactor, salt )` method | ||
* `compatiblity` : New `moduleSettings` configuration as per ColdBox 5+ instead of parsing parent settings | ||
* Updated to newest module layout | ||
* Lots of docs for methods | ||
* Upgraded tests to ColdBox 6+ | ||
- Added three new helper mixins for easy usage : `bcryptHash(), bcryptCheck(), bcryptSalt()` | ||
- New method to generate bcrypt salts: `generateSalt( workFactor = default ): bcryptSalt()` | ||
- Ability to pass in a custom `salt` argument via the `hashPassword( input, workFactor, salt )` method | ||
- `compatiblity` : New `moduleSettings` configuration as per ColdBox 5+ instead of parsing parent settings | ||
- Updated to newest module layout | ||
- Lots of docs for methods | ||
- Upgraded tests to ColdBox 6+ | ||
|
||
### Fixed | ||
|
||
* Upgraded to cbJavaloader 2.x due to security issues in 1.x | ||
- Upgraded to cbJavaloader 2.x due to security issues in 1.x | ||
|
||
### Removed | ||
|
||
* ACF11 Support | ||
* Lucee 4.5 Support | ||
- ACF11 Support | ||
- Lucee 4.5 Support | ||
|
||
## [2.5.0] => 2017-MAR-22 | ||
|
||
* Updated BCrypt library to v0.4 | ||
* Fixes a memory leak when performing over 10 concurrent hashes | ||
* Module test harness updates | ||
- Updated BCrypt library to v0.4 | ||
- Fixes a memory leak when performing over 10 concurrent hashes | ||
- Module test harness updates | ||
|
||
## [2.1.0] => 2016-MAY-04 | ||
|
||
* Updated Docs | ||
* Fixed javacast issue when passing a work factor | ||
* Updated JavaLoader dependencies | ||
* Added Java source for references and future inline build compilation | ||
* Updated settings to match ColdBox module standards | ||
* Added full test suites | ||
* Added Travis integration | ||
* Added git ignores and attributes | ||
- Updated Docs | ||
- Fixed javacast issue when passing a work factor | ||
- Updated JavaLoader dependencies | ||
- Added Java source for references and future inline build compilation | ||
- Updated settings to match ColdBox module standards | ||
- Added full test suites | ||
- Added Travis integration | ||
- Added git ignores and attributes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters