Skip to content

Commit

Permalink
### Added
Browse files Browse the repository at this point in the history
- Adobe 2023 Support
- Lucee 6 Support
- Dropped Adobe 2016 since this was deprecated already
- ContentBox 6 default version

### Updates

- Updated Database Drivers for: MySQL, MSSQL, Hypersonic

### Fixed

- ContentBox 6 was not the default and migrations was not running correctly
  • Loading branch information
lmajano authored Mar 19, 2024
1 parent a6d3b3a commit 0401cef
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 10 deletions.
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Adobe 2023 Support
- Lucee 6 Support
- Dropped Adobe 2016 since this was deprecated already
- ContentBox 6 default version

### Updates

- Updated Database Drivers for: MySQL, MSSQL, Hypersonic

### Fixed

- ContentBox 6 was not the default and migrations was not running correctly

## [1.5.2] - 2024-02-16

### Fixed
Expand Down
11 changes: 8 additions & 3 deletions commands/contentbox/install-wizard.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ component extends="install" {
value : "lucee@5",
selected : true
},
{
display : "Adobe 2016",
value : "adobe@2016"
{
display : "Lucee 6",
value : "lucee@6",
selected : true
},
{
display : "Adobe 2018",
Expand All @@ -44,6 +45,10 @@ component extends="install" {
{
display : "Adobe 2021",
value : "adobe@2021"
},
{
display : "Adobe 2023",
value : "adobe@2023"
}
] )
.ask();
Expand Down
15 changes: 8 additions & 7 deletions commands/contentbox/install.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This command is meant to be ran and not expecting user feedback.
*
* The supported CFML Engines are "lucee@5", "adobe@2016", "adobe@2018", "adobe@2021"
* The supported CFML Engines are "lucee@5", "lucee@6", "adobe@2018", "adobe@2021", "adobe@2023"
* The supported Databases are: "HyperSonicSQL (Lucee Only)", "MySQL5", "MySQL8", "MicrosoftSQL", "PostgreSQL", "Oracle"
*
* .
Expand All @@ -20,9 +20,10 @@ component {
static {
engines = [
"lucee@5",
"adobe@2016",
"lucee@6",
"adobe@2018",
"adobe@2021"
"adobe@2021",
"adobe@2023"
];
databases = [
"HyperSonicSQL",
Expand All @@ -33,7 +34,7 @@ component {
"Oracle"
];
hypersonicSlug = "6DD4728A-AB0C-4F67-9DCE1A91A8ACD114";
contentboxVersion = "5";
contentboxVersion = "6";
};

/**
Expand Down Expand Up @@ -359,7 +360,7 @@ component {
"DB_CONNECTIONSTRING=jdbc:hsqldb:file:contentboxDB/#arguments.databasename#"
);
// Setup the jdbc extension
command( "server set jvm.args='-Dlucee-extensions=6DD4728A-AB0C-4F67-9DCE1A91A8ACD114'" );
command( "server set jvm.args='-Dlucee-extensions=#hypersonicSlug#'" );
break;
}
case "MySQL5": {
Expand Down Expand Up @@ -422,7 +423,7 @@ component {
env = replaceNoCase(
env,
"DB_BUNDLEVERSION=",
"DB_BUNDLEVERSION=8.0.24"
"DB_BUNDLEVERSION=8.1.0"
);
env = replaceNoCase(
env,
Expand Down Expand Up @@ -464,7 +465,7 @@ component {
env = replaceNoCase(
env,
"DB_BUNDLEVERSION=",
"DB_BUNDLEVERSION=4.0.2206.100"
"DB_BUNDLEVERSION=12.4.2.jre11"
);
env = replaceNoCase(
env,
Expand Down

0 comments on commit 0401cef

Please sign in to comment.