Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
624def4
feat(ci): add Java version override parameters to CI/CD workflows
spbolton Feb 12, 2026
4d546d3
refactor(ci): remove dead code for CLI java-suffix
spbolton Feb 11, 2026
895a01f
fix(ci): exclude CLI modules from build when java-version is overridden
spbolton Feb 12, 2026
a0a2f61
fix(ci): use property-based compiler release for CLI modules
spbolton Feb 12, 2026
5a4f545
fix(ci): use property-based compiler release for core and CLI isolation
spbolton Feb 12, 2026
da7a55e
Add renovate.json
renovate[bot] Feb 12, 2026
4b3b88d
Test rollback ai labeler (#437)
erickgonzalez Mar 13, 2026
2155851
Merge branch 'dotCMS:main' into main
erickgonzalez Mar 13, 2026
deca9a1
Test core ai rollback labeler (#438)
erickgonzalez Mar 13, 2026
d074cc6
Update ai_claude-orchestrator.yml (#439)
erickgonzalez Mar 13, 2026
1033fff
debug ai_claude-orchestrator.yml (#443)
sfreudenthaler Mar 13, 2026
76243ca
Update workflow to use version v2.0.0 (#444)
sfreudenthaler Mar 14, 2026
8ee9ebf
fix: upgrade to ai-workflows@v2.0.0 (claude-code-action@v1 GA) (#445)
sfreudenthaler Mar 14, 2026
b8b649a
feat(widgets): add Widget API v2 with enhanced rendering pipeline (#446)
sfreudenthaler Mar 17, 2026
62615b4
fix(cache): URL-mapped content renders same HTML due to page cache co…
sfreudenthaler Mar 17, 2026
a78efce
feat(i18n): add locale_id column to contentlet table (#448)
sfreudenthaler Mar 17, 2026
3b24370
chore: add internal CI helper for build matrix generation (#449)
sfreudenthaler Mar 17, 2026
85ebf00
ci: upgrade base Docker image to eclipse-temurin:21-jre-noble (#450)
sfreudenthaler Mar 17, 2026
eda58ec
feat: add AI release notes pipeline and test harness (#451)
sfreudenthaler Mar 18, 2026
d60605c
fix(ci): update claude-code-action usage for v1 GA API
sfreudenthaler Mar 18, 2026
bb53660
feat(ci): extend rollback-safety workflow with doc-object generation …
jdcmsd Jun 5, 2026
f67845e
test: bypass org membership gate for workflow testing (#469)
jdcmsd Jun 5, 2026
087e54a
docs(ci): add doc-object pipeline reference doc (#470)
jdcmsd Jun 5, 2026
a4527dd
adding epic context lookup from dotcms-aios (#471)
jdcmsd Jun 5, 2026
5f95c01
docs: trigger workflow smoke test (#472)
jdcmsd Jun 5, 2026
3126320
fix(ci): configure git identity before git notes add (#473)
jdcmsd Jun 5, 2026
b1d2607
feat(ci): add aggregate-release-digest script for doc-object bundle g…
jdcmsd Jun 5, 2026
b50d096
fix(ci): hardcode model ID in provenance rather than self-reporting (…
jdcmsd Jun 5, 2026
9b95202
chore: verify clean provenance in doc-object generation (#476)
jdcmsd Jun 5, 2026
d981960
fix(ci): revert test bypass, restore org membership check (#477)
jdcmsd Jun 5, 2026
0cbe91c
fix(page-cache): add vanity URL cache key collision example for doc-o…
jdcmsd Jun 5, 2026
3f5be7f
fix(ci): strengthen doc-object markers in prompt and add extraction f…
jdcmsd Jun 9, 2026
6c0fbef
fix(categories): add SQL escape example for doc-object quality and ex…
jdcmsd Jun 9, 2026
34dd207
Reset repo content to match eda58ec02689 (pre-testbed state) (#481)
jdcmsd Jun 12, 2026
a1ef4da
Reset to eda58ec (#482)
jdcmsd Jun 15, 2026
e47f13a
Add autodoc Epic documentation audit workflow (#483)
jdcmsd Jun 16, 2026
b1be3f0
Rename DOTCMS_API_TOKEN secrets in autodoc workflow (#484)
jdcmsd Jun 16, 2026
f96bbb1
Use AUTODOC_TOKEN for dotcms-aios checkout (#487)
jdcmsd Jun 16, 2026
cc26f60
Write eval context to file before passing to Claude (stdin fix) (#489)
jdcmsd Jun 17, 2026
d550c25
feat(Block Editor): Restore internal dotCMS page search in the link p…
jdcmsd Jun 17, 2026
cfce147
autodoc: consolidate repo checkout and rename secrets (#493)
jdcmsd Jun 23, 2026
f6d81d9
autodoc: rewrite workflow to be self-contained (no uv) (#495)
jdcmsd Jun 24, 2026
1c97379
fix(autodoc): use AUTODOC_AIOS_CI for dotcms-aios checkout (#497)
jdcmsd Jun 24, 2026
08c6f15
refactor(autodoc): inline prompt; remove dotcms-aios autodoc/ depende…
jdcmsd Jun 24, 2026
2f2b159
fix(autodoc): add source material quality check; restore details bloc…
jdcmsd Jun 24, 2026
e886b59
fix(autodoc): address code review — Epic type, Bedrock model, step split
jdcmsd Jun 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/scripts/gather-release-data/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>/src'],
testMatch: ['**/*.test.ts'],
// @octokit packages are ESM-only; transform them with ts-jest
transformIgnorePatterns: [
'node_modules/(?!(@octokit|universal-user-agent|before-after-hook)/)',
],
transform: {
'^.+\\.tsx?$': 'ts-jest',
'^.+\\.jsx?$': ['ts-jest', { tsconfig: { allowJs: true } }],
},
};
Loading
Loading