-
-
Notifications
You must be signed in to change notification settings - Fork 43
version bump #91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version bump #91
Conversation
lmajano
commented
Jul 3, 2025
- Updated CommandBox to v6.2.1
- EditorConfig support for VSCode and IntelliJ
- Added gitattributes file to ignore unnecessary files in git
- Added markdownlint configuration and markdown lint fix
- Dependabot for automatic dependency updates and security fixes
- Added gitattributes file to ignore unnecessary files in git - Added markdownlint configuration and markdown lint fix
Bumps [docker/login-action](https://github.com/docker/login-action) from 1 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v1...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…/dot-github/workflows/docker/build-push-action-6 Bump docker/build-push-action from 2 to 6 in /.github/workflows
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2 to 3. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v2...v3) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR bumps CommandBox to v6.2.1 across workflows, adds editor and lint support files, and updates documentation and CI/dependency automation.
- Upgraded CommandBox version and image tags in CI workflows
- Introduced EditorConfig, .gitattributes, markdownlint, and Dependabot config
- Overhauled README and changelog for the new release
Reviewed Changes
Copilot reviewed 11 out of 12 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| test/index.cfm | Added environment-based debug toggle |
| changelog.md | Inserted new 6.2.1/3.13.5 release entry |
| README.md | Updated docs, tables, examples, and version badges |
| LICENSE | Added Apache 2.0 license file |
| .markdownlint.json | Added markdownlint configuration |
| .github/workflows/scans.yml | Bumped action versions and CommandBox version |
| .github/workflows/release.yml | Updated checkout action and bump variables |
| .github/workflows/pull-request.yml | Updated checkout action and CommandBox version |
| .github/dependabot.yml | Added Dependabot configuration for GH Actions & Docker |
| .gitattributes | Added file attributes for diff and merging |
| .editorconfig | Added base EditorConfig settings |
Comments suppressed due to low confidence (3)
README.md:805
- [nitpick] Remove the personal religious section from the README to keep the project documentation focused and professional.
## HONOR GOES TO GOD ABOVE ALL
.github/workflows/scans.yml:14
- Pin this action to a stable version tag (e.g.,
v2) rather thanmasterto avoid unexpected breaks.
runs-on: ubuntu-latest
.github/dependabot.yml:9
- Dependabot's
directoryshould be specified relative to the repo root without a leading slash (.github/workflows) to ensure updates are detected.
directory: "/.github/workflows" # Location of .github/workflows
| <cfscript> | ||
| system = createObject( "java", "java.lang.System" ); | ||
| env = system.getenv(); | ||
| debugEnabled = structKeyExists( env, "ENVIRONMENT" ) ? ( env.ENVIRONMENT == "development" ) : false; |
Copilot
AI
Jul 3, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Declare debugEnabled with var inside the <cfscript> to avoid polluting the page scope, e.g., var debugEnabled = ....
| debugEnabled = structKeyExists( env, "ENVIRONMENT" ) ? ( env.ENVIRONMENT == "development" ) : false; | |
| var debugEnabled = structKeyExists( env, "ENVIRONMENT" ) ? ( env.ENVIRONMENT == "development" ) : false; |