Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
e8372effc7 | |||
571249705e | |||
927cd961fd | |||
63b4fcc232 | |||
4188ed7f24 | |||
1feddc6e85 | |||
499baebc18 | |||
01fc0d0c6e |
23
changelog.md
23
changelog.md
@ -1,4 +1,23 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 1.2.0
|
## [1.2.4] - 1.2.4
|
||||||
feat(aidocs_classes): Enhance changelog generation by supporting complete generation in the absence of previous changelog files
|
fix(logging): Refactor logger initialization to use commitinfo data
|
||||||
|
|
||||||
|
## [1.2.3]
|
||||||
|
fix(aidocs): Fix bug in AiDoc class causing undefined token handling
|
||||||
|
|
||||||
|
## [1.2.2] - 2023-11-20
|
||||||
|
### Fixed
|
||||||
|
- Fix bug in AiDoc class causing undefined token handling
|
||||||
|
|
||||||
|
## [1.2.1] - 2023-11-10
|
||||||
|
### Fixed
|
||||||
|
- Fixed usage of plugins in project context and readme generation
|
||||||
|
|
||||||
|
## [1.2.0] - 2023-11-01
|
||||||
|
### Added
|
||||||
|
- Enhance changelog generation by supporting complete generation in the absence of previous changelog files
|
||||||
|
|
||||||
|
## [1.1.42] - 2023-10-30
|
||||||
|
### Fixed
|
||||||
|
- Improve commit message generation by handling empty diffs and updating changelog instructions
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tsdoc",
|
"name": "@git.zone/tsdoc",
|
||||||
"version": "1.2.0",
|
"version": "1.2.4",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "An advanced TypeScript documentation tool using AI to generate and enhance documentation for TypeScript projects.",
|
"description": "An advanced TypeScript documentation tool using AI to generate and enhance documentation for TypeScript projects.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tsdoc',
|
name: '@git.zone/tsdoc',
|
||||||
version: '1.2.0',
|
version: '1.2.4',
|
||||||
description: 'An advanced TypeScript documentation tool using AI to generate and enhance documentation for TypeScript projects.'
|
description: 'An advanced TypeScript documentation tool using AI to generate and enhance documentation for TypeScript projects.'
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,6 @@
|
|||||||
|
import { commitinfo } from './00_commitinfo_data.js';
|
||||||
import * as plugins from './plugins.js';
|
import * as plugins from './plugins.js';
|
||||||
|
|
||||||
export const logger = new plugins.smartlog.Smartlog({
|
export const logger = plugins.smartlog.Smartlog.createForCommitinfo(commitinfo);
|
||||||
logContext: {
|
|
||||||
company: 'Some Company',
|
|
||||||
companyunit: 'Some CompanyUnit',
|
|
||||||
containerName: 'Some Containername',
|
|
||||||
environment: 'local',
|
|
||||||
runtime: 'node',
|
|
||||||
zone: 'gitzone',
|
|
||||||
},
|
|
||||||
minimumLogLevel: 'silly',
|
|
||||||
});
|
|
||||||
|
|
||||||
logger.addLogDestination(new plugins.smartlogDestinationLocal.DestinationLocal());
|
logger.addLogDestination(new plugins.smartlogDestinationLocal.DestinationLocal());
|
||||||
|
Reference in New Issue
Block a user