Skip to content

Commit

Permalink
Merge pull request #24 from coldbox-templates/development
Browse files Browse the repository at this point in the history
v7.4.0
  • Loading branch information
lmajano authored Sep 20, 2024
2 parents c1d728d + 1aa57c6 commit c7a65dc
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 10 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,13 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup CommandBox CLI
uses: Ortus-Solutions/[email protected]

- name: Auto-format
uses: Ortus-Solutions/[email protected]
with:
cmd: run-script format
run: |
box install commandbox-cfformat
box run-script format
- name: Commit Format Changes
uses: stefanzweifel/git-auto-commit-action@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
cfengine: [ "lucee@5", "adobe@2018", "adobe@2021" ]
cfengine: [ "lucee@5", "adobe@2018", "adobe@2021", "adobe@2023" ]
steps:
- name: Checkout Repository
uses: actions/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ npm-debug.log
yarn-error.log

## Ignored Dependencies
coldbox/**
testbox/**
modules/**
/coldbox/**
/testbox/**
/modules/**
2 changes: 1 addition & 1 deletion box.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name":"Default ColdBox App Template",
"version":"7.3.0",
"version":"7.4.0",
"author":"You",
"location":"forgeboxStorage",
"slug":"cbtemplate-advanced-script",
Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Gitignore updates so it doesn't ignore 'config/modules'

## [7.3.0] - 2023-05-19

### Fixed

- Changed `renderView()` to new standard of `view()`
- Added `allowPublicKeyRetrieval=true` to the `db` connection string
- Added missing bundle name and version in `.cfconfig.json` and `.env.example`
Expand Down
5 changes: 3 additions & 2 deletions tests/index.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@
<!DOCTYPE html>
<html>
<head>
<title>TestBox Browser</title>
<meta charset="utf-8">
<meta name="generator" content="TestBox v#TESTBOX_VERSION#">
<title>TestBox Browser</title>
<base href="/tests/" target="_blank">
<cfoutput>
<style>#fileRead( '#ASSETS_DIR#/css/main.css' )#</style>
<script>#fileRead( '#ASSETS_DIR#/js/jquery-3.3.1.min.js' )#</script>
Expand Down Expand Up @@ -108,7 +109,7 @@
<cfif qResults.type eq "Dir">
<a
class="btn btn-secondary btn-sm my-1"
href="index.cfm?path=#urlEncodedFormat( url.path & qResults.name )#"
href="index.cfm?path=#urlEncodedFormat( url.path & "/" & qResults.name )#"
>
&##x271A; #qResults.name#
</a>
Expand Down

0 comments on commit c7a65dc

Please sign in to comment.