Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Oct 10, 2022
2 parents 5b8fc02 + 5f9fe11 commit f87e4bc
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 55 deletions.
4 changes: 2 additions & 2 deletions .cfconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"validate":"false"
}
},
"adminPassword":"commandbox",
"adminPassword":"coldbox",
"debuggingEnabled":true,
"whitespaceManagement":"white-space-pref",
"debuggingReportExecutionTimes":false,
"disableInternalCFJavaComponents":false,
"inspectTemplate":"always",
"requestTimeout":"0,0,0,90",
"robustExceptionEnabled":true
}
}
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_call:
secrets:
SLACK_WEBHOOK_URL:
required: true
required: false

jobs:
tests:
Expand All @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
cfengine: [ "lucee@5", "adobe@2016", "adobe@2018", "adobe@2021" ]
cfengine: [ "lucee@5", "adobe@2018", "adobe@2021" ]
experimental: [false]
include:
- cfengine: "[email protected]"
Expand Down
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@
"directoryPath": "./test-harness/coldbox",
"isPhysicalDirectoryPath": false
},
{
"logicalPath": "/testbox",
"directoryPath": "./test-harness/testbox",
"isPhysicalDirectoryPath": false
},
{
"logicalPath": "/cborm",
"directoryPath": "./",
"isPhysicalDirectoryPath": false
}
]
}
}
8 changes: 4 additions & 4 deletions box.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name":"ColdBox ORM Extensions",
"version":"3.9.0",
"version":"4.0.0",
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cborm/@build.version@/[email protected]@.zip",
"author":"Ortus Solutions <[email protected]",
"homepage":"https://github.com/coldbox-modules/cborm",
Expand All @@ -26,9 +26,9 @@
"Joel Watson <[email protected]>"
],
"dependencies":{
"cbvalidation":"^3.0.0",
"mementifier":"^2.0.0",
"cbstreams":"^1.5.0",
"cbvalidation":"^4.0.0",
"mementifier":"^3.0.0",
"cbstreams":"^2.0.0",
"cbpaginator":"^2.0.0"
},
"devDependencies":{
Expand Down
1 change: 0 additions & 1 deletion build/.travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ env:
- MODULE_ID=cborm
matrix:
- ENGINE=lucee@5
- ENGINE=adobe@2016
- ENGINE=adobe@2018

branches:
Expand Down
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

----

## [v4.0.0] => 2022-OCT-10

### Added

* Upgraded all dependencies to major bumps

### Changed

* Dropped ACF2016 Support

----

## [v3.9.0] => 2022-AUG-10

### Added
Expand Down
2 changes: 0 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ Apache License, Version 2.0.
* Lucee 5+
* Hibernate 3.5.x
* Hibernate 5.x via the new hibernate extension
* ColdFusion 2016 (DEPRECATED)
* Hibernate 4.3.10
* ColdFusion 2018
* Hibernate 5.2.11
* ColdFusion 2021
Expand Down
26 changes: 0 additions & 26 deletions [email protected]

This file was deleted.

8 changes: 4 additions & 4 deletions test-harness/box.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"private":true,
"description":"",
"dependencies":{
"cbvalidation":"^3.0.0",
"mementifier":"^2.0.0",
"cbstreams":"^1.4.0+48",
"coldbox":"6",
"cbvalidation":"^4.0.0",
"mementifier":"^3.0.0",
"cbstreams":"^2.0.0",
"coldbox":"^6",
"cbpaginator":"^2.0.0"
},
"devDependencies":{
Expand Down
2 changes: 0 additions & 2 deletions test-harness/tests/specs/util/CFORMUtilTest.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ component extends="tests.resources.BaseTest" skip="isLucee" {
// Fragile test: These will need updating if (and only if) the engines upgrade the installed Hibernate version
if ( listFirst( server.coldfusion.productVersion ) == 2018 ) {
assertEquals( "5.2.11.SNAPSHOT", ormutil.getHibernateVersion() );
} else if ( listFirst( server.coldfusion.productVersion ) == 2016 ) {
assertEquals( "4.3.10.Final", ormutil.getHibernateVersion() );
}
}

Expand Down
11 changes: 0 additions & 11 deletions test-harness/tests/specs/util/ORMUtilFactoryTest.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,6 @@ component extends="testbox.system.BaseSpec" {
skip = isLucee
);

it(
title = "can get lucee > 4.3 instance",
body = function(){
factory.$( "getPlatform", "lucee" ).$( "getLuceeVersion", "4.3.000" );
var u = factory.getORMUtil();
expect( u ).toBeInstanceOf( "cborm.models.util.LuceeORMUtil" );
},
skip = function(){
return ( isLucee() and findNoCase( "4.3", server.lucee.version ) ) ? false : true;
}
);
} );
}

Expand Down

0 comments on commit f87e4bc

Please sign in to comment.