Skip to content

Commit bc39a7e

Browse files
committed
Merge branch 'development'
2 parents dcfd3b0 + daed859 commit bc39a7e

File tree

72 files changed

+4826
-300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+4826
-300
lines changed

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The ColdBox framework includes several core services in `/system/web/services/`
6767
- **HandlerService.cfc**: Manages event handling, handler caching, event caching, and handler execution lifecycle
6868
- **InterceptorService.cfc**: Manages interception points, interceptor registration, and announcement of framework events
6969
- **LoaderService.cfc**: Responsible for loading and configuring a ColdBox application with all its services during startup
70-
- **ModuleService.cfc**: Oversees HMVC module management including registration, activation, and CF mapping management
70+
- **ModuleService.cfc**: Oversees HMVC module management including registration, activation, and Engine mapping management
7171
- **RequestService.cfc**: Handles request context preparation, FORM/URL processing, and flash scope management
7272
- **RoutingService.cfc**: Manages URL routing, route registration, and request-to-handler mapping via the Router component
7373
- **SchedulerService.cfc**: Manages application schedulers in an HMVC fashion for background task execution

.github/workflows/lts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Code Auto-Formatting
2121
runs-on: ubuntu-24.04
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424

2525
- name: Auto-format
2626
uses: Ortus-Solutions/commandbox-action@v1.0.3

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-24.04
2323
steps:
2424
- name: Checkout Repository
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- uses: Ortus-Solutions/commandbox-action@v1.0.3
2828
with:

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-24.04
4141
steps:
4242
- name: Checkout Repository
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444

4545
- name: Setup Java
4646
uses: actions/setup-java@v5
@@ -49,7 +49,7 @@ jobs:
4949
java-version: "11"
5050

5151
- name: Setup BoxLang
52-
uses: ortus-boxlang/setup-boxlang@1.2.0
52+
uses: ortus-boxlang/setup-boxlang@1.3.0
5353
with:
5454
version: "snapshot"
5555

@@ -97,7 +97,7 @@ jobs:
9797
box task run build/Build.cfc run ${{ env.COLDBOX_VERSION }} ${{ github.run_number }} ${{ env.BRANCH }}
9898
9999
- name: Commit Changelog [unreleased] with latest version
100-
uses: EndBug/add-and-commit@v9.1.4
100+
uses: EndBug/add-and-commit@v10.0.0
101101
if: env.SNAPSHOT == 'false'
102102
with:
103103
author_name: Github Actions
@@ -115,7 +115,7 @@ jobs:
115115

116116
- name: Upload Build Artifacts
117117
if: success()
118-
uses: actions/upload-artifact@v5
118+
uses: actions/upload-artifact@v7
119119
with:
120120
path: |
121121
.artifacts/**/*
@@ -153,7 +153,7 @@ jobs:
153153
cd $ROOT_DIR/.artifacts/logbox/${{ env.COLDBOX_VERSION }} && box forgebox publish
154154
155155
- name: Create Github Release
156-
uses: taiki-e/create-gh-release-action@v1.9.1
156+
uses: taiki-e/create-gh-release-action@v1.9.3
157157
continue-on-error: true
158158
if: env.SNAPSHOT == 'false'
159159
with:
@@ -184,13 +184,13 @@ jobs:
184184
needs: [ build ]
185185
steps:
186186
- name: Checkout Development Repository
187-
uses: actions/checkout@v5
187+
uses: actions/checkout@v6
188188
if: env.LTS == 'false'
189189
with:
190190
ref: development
191191

192192
- name: Checkout LTS Repository
193-
uses: actions/checkout@v5
193+
uses: actions/checkout@v6
194194
if: env.LTS == 'true'
195195

196196
- name: Setup CommandBox
@@ -199,7 +199,7 @@ jobs:
199199
forgeboxAPIKey: ${{ secrets.FORGEBOX_TOKEN }}
200200

201201
- name: Download build artifacts
202-
uses: actions/download-artifact@v6
202+
uses: actions/download-artifact@v8
203203
with:
204204
path: .tmp
205205

@@ -220,7 +220,7 @@ jobs:
220220
git pull
221221
222222
- name: Commit Version Bump
223-
uses: EndBug/add-and-commit@v9.1.4
223+
uses: EndBug/add-and-commit@v10.0.0
224224
if: ${{ always() }}
225225
with:
226226
author_name: Github Actions

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
name: Code Auto-Formatting
2828
runs-on: ubuntu-24.04
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131

3232
- name: Auto-format
3333
uses: Ortus-Solutions/commandbox-action@v1.0.3

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
timeoutMinutes: 8
4040
steps:
4141
- name: Checkout Repository
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343

4444
- name: Setup Database and Fixtures
4545
run: |
@@ -88,7 +88,7 @@ jobs:
8888
run: echo "CFENGINE_VERSION=$(box echo ${serverInfo.engineName@coldbox-${{ matrix.cfengine }}}@${serverInfo.engineVersion@coldbox-${{ matrix.cfengine }}})" >> $GITHUB_ENV
8989

9090
- name: Publish Test Reports
91-
uses: mikepenz/action-junit-report@v6.0.1
91+
uses: mikepenz/action-junit-report@v6.4.0
9292
if: always()
9393
with:
9494
report_paths: |
@@ -120,7 +120,7 @@ jobs:
120120
121121
- name: Upload Debugging Info To Artifacts
122122
if: ${{ failure() }}
123-
uses: actions/upload-artifact@v5
123+
uses: actions/upload-artifact@v7
124124
with:
125125
name: Failure Debugging Info - ${{ matrix.cfengine }} - ${{ matrix.jdkVersion }}
126126
path: |
@@ -135,7 +135,7 @@ jobs:
135135
if: always()
136136
steps:
137137
- name: Download Test Results Artifacts
138-
uses: actions/download-artifact@v6
138+
uses: actions/download-artifact@v8
139139
with:
140140
path: artifacts
141141

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"cfml.mappings": [
2+
"boxlang.cfml.mappings": [
33
{
44
"logicalPath": "/coldbox",
55
"directoryPath": ".",

apidocs/box.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33
"version":"1.0.0",
44
"slug":"module-apidocs",
55
"dependencies":{
6-
"docbox":"^3.0.0"
6+
"docbox":"^5"
77
},
88
"devDependencies":{
9-
"testbox":"^4.5.0+5"
109
},
1110
"installPaths":{
12-
"docbox":"docbox/",
13-
"testbox":"testbox/"
11+
"docbox":"docbox/"
1412
}
1513
}

box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"ColdBox Platform Development Framework",
3-
"version":"8.0.5",
3+
"version":"8.1.0",
44
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox/@build.version@/coldbox-@build.version@.zip",
55
"author":"Ortus Solutions <info@ortussolutions.com>",
66
"slug":"coldbox",

changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
- https://coldbox.ortusbooks.com/readme/release-history/whats-new-with-8.1.0
13+
1214
## [8.0.5] - 2025-11-07
1315

1416
### Fixed

0 commit comments

Comments
 (0)