Skip to content

Commit

Permalink
acf 2021 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Apr 20, 2023
1 parent 4d74303 commit 4723b31
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 35 deletions.
24 changes: 15 additions & 9 deletions box.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
50 changes: 25 additions & 25 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 4 additions & 1 deletion [email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,8 @@
"openBrowser":"false",
"cfconfig": {
"file" : ".cfconfig.json"
}
},
"scripts" : {
"onServerInstall":"cfpm install zip,orm,mysql,postgresql,sqlserver,feed,chart,debugger"
}
}

0 comments on commit 4723b31

Please sign in to comment.