Skip to content

Commit 6c92281

Browse files
committed
fix: Use separate changelog for nightly builds to prevent marketplace freezing
- Create dedicated CHANGELOG-NIGHTLY.md for nightly builds - Modify nightly build process to use separate changelog - This should prevent VS Code Marketplace freezing when viewing the plugin - Main extension continues using main CHANGELOG.md - Nightly extension now uses CHANGELOG-NIGHTLY.md
1 parent 75f93c4 commit 6c92281

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

CHANGELOG-NIGHTLY.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Roo Code Nightly Changelog
2+
3+
This is the changelog for the nightly builds of Roo Code.
4+
5+
## [0.0.1] - Test Nightly Build
6+
7+
### Added
8+
9+
- This is a test changelog for the nightly build
10+
- Nightly builds are automatically generated from the main branch
11+
- This changelog is separate from the main release changelog
12+
13+
### Changed
14+
15+
- Using a dedicated nightly changelog instead of the main one
16+
- Nightly versions follow a different numbering scheme
17+
18+
### Notes
19+
20+
- Nightly builds may contain experimental features
21+
- For stable releases, please use the main Roo Code extension
22+
- This changelog will be updated with each nightly release
23+
24+
---
25+
26+
_This is a test changelog to verify that the nightly build uses a separate changelog from the main extension._

apps/vscode-nightly/esbuild.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ async function main() {
6464
copyPaths(
6565
[
6666
["../README.vscode.md", "README.md"],
67-
["../CHANGELOG.md", "CHANGELOG.md"],
67+
["../CHANGELOG-NIGHTLY.md", "CHANGELOG.md"],
6868
["../LICENSE", "LICENSE"],
6969
["../.env", ".env", { optional: true }],
7070
[".vscodeignore", ".vscodeignore"],

0 commit comments

Comments
 (0)