Skip to content

Commit

Permalink
fix changelog headers and add mappings for docbox generation
Browse files Browse the repository at this point in the history
  • Loading branch information
jclausen committed Sep 25, 2024
1 parent d34f988 commit f692251
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@ jobs:
echo "BRANCH=development" >> $GITHUB_ENV
fi
- name: Build ${{ env.MODULE_ID }}
run: |
box install commandbox-docbox
box task run taskfile=build/Build target=run :version=${{ env.VERSION }} :projectName=${{ env.MODULE_ID }} :buildID=${{ github.run_number }} :branch=${{ env.BRANCH }}
- name: Update changelog [unreleased] with latest version
uses: thomaseizinger/keep-a-changelog-new-release@1.3.0
if: github.ref == 'refs/heads/main'
Expand All @@ -73,6 +68,7 @@ jobs:
run: |
npm install -g markdownlint-cli
markdownlint changelog.md --fix
cd test-harness && box install && cd ../
box install commandbox-docbox
box task run taskfile=build/Build target=run :version=${{ env.VERSION }} :projectName=${{ env.MODULE_ID }} :buildID=${{ github.run_number }} :branch=${{ env.BRANCH }}
Expand Down
2 changes: 2 additions & 0 deletions build/Build.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,8 @@ component {
){
// Create project mapping
fileSystemUtil.createMapping( arguments.projectName, variables.cwd );
fileSystemUtil.createMapping( "coldbox", variables.cwd & "test-harness/coldbox" );
fileSystemUtil.createMapping( "testbox", variables.cwd & "test-harness/testbox" );
// Generate Docs
print.greenLine( "Generating API Docs, please wait..." ).toConsole();
directoryCreate( arguments.outputDir, true, true );
Expand Down
13 changes: 7 additions & 6 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

----

## [Unreleased]

### Added
Expand Down Expand Up @@ -48,20 +49,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [3.2.3] - 11-19-2023

## Changed
### Changed

* Additional mapping enhancments for searchability
* Set default document bulk create to refresh only when requested
* Change explicit mapping of root message field to `text` to ensure search scoring ability

## Added
### Added

* Added `async` property to LogstashAppender
* Added `indexTemplatePriority` property to logstash appender to prevent conflicts with multiple log streams sharing the same stream pattern

## [3.2.2] - 07-27-2023

## Fixed
### Fixed

* Corrected incorrect timestamps on LogstashAppender logs

Expand All @@ -85,7 +86,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [3.1.1] - 04-28-2023

### Fixed
### Fixed

* Added deprecated getters for `startRows`/`maxRows` properties due to compat issues with existing apps

Expand Down Expand Up @@ -161,7 +162,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Issue #111 - Adds the ability to apply settings to an existing index
* Issue #106 - Adds the ability to specify case-insenstivity to wildcard searches ( default = false )
* Issue #105 - `getAliases` now supports multiple indexes with the same alias and returns the attributes to determine r/w capabilities
*
*

### Added

Expand Down Expand Up @@ -239,7 +240,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Adds null checks for intermittent errors in Document.cfc when all args were not present
* Fixes an issue with logstash appender where the exception type was not converting correctly to JSON when provided as additional info

## Changed
### Changed

* CI/CD Process migrated from Travis CI to Github Actions

Expand Down

0 comments on commit f692251

Please sign in to comment.