-
Notifications
You must be signed in to change notification settings - Fork 2
Dev tama #6
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
Closed
Closed
Dev tama #6
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
f6214b3
config: update gitignore untuk proteksi credentials dan secrets
el-pablos 28ddd74
update: enhance request context module with helper functions
el-pablos 2f2e5a0
add: nambahin field reasoning_text dan reasoning_opaque ke interface …
el-pablos ee6fb9b
config: update package.json dengan metadata dan deskripsi lengkap
el-pablos 18ac386
update: enhance logger dengan file-based logging dan auto cleanup
el-pablos 9a76fb5
update: tambahin safety multiplier khusus buat claude models
el-pablos 34c9b81
test: tambahin test case buat claude safety multiplier
el-pablos 8a56440
docs: nambahin dokumen analisis perbandingan cina-copilot vs copilot-api
el-pablos 9a573de
docs: nambahin mega prompt implementasi thinking mechanism
el-pablos 022b67f
test: nambahin unit test untuk request context module
el-pablos e4698fc
add: nambahin path baru untuk logs, cache, dan config dir
el-pablos 5dc5bb0
test: nambahin unit test untuk paths module
el-pablos 1981d85
test: nambahin unit test untuk logger module
el-pablos b7c4dee
docs: nambahin dokumentasi caching analysis
el-pablos cc14412
docs: update README dengan struktur yang lebih lengkap
el-pablos 30037bd
config: exclude test files dari typescript compilation
el-pablos 5abb085
test: nambahin integration test buat stream translation
el-pablos 5ede90f
config: hapus test file yang dipindah lokasi
el-pablos da9511d
update: refactor stream translation dengan thinking block handler
el-pablos 3832a2e
config: format ulang logger-emitter test pake prettier
el-pablos 756d052
test: update logger-emitter test formatting
el-pablos 262573e
test: update logger emitter test untuk kompatibilitas dengan file-bas…
el-pablos 55bff6b
config: exclude test files dari eslint checking
el-pablos 56d1163
config: format integration test pake prettier
el-pablos 2b5ccb5
test: nambahin integration test untuk stream translation
el-pablos 72e2264
test: nambahin unit test untuk thinking mechanism di stream translation
el-pablos 3a07296
feat: tambahin auto-inject extended thinking buat claude 4.5, context…
el-pablos e16750e
fix: perbaiki token tracking 0/0 di request history streaming + round…
el-pablos c7fae82
feat: tambahin auto-inject reasoning_effort xhigh untuk model gpt-5 y…
el-pablos 8a8d3a6
chore: update webui dashboard, types, translation layer, version chec…
el-pablos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| name: Version Bump | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| version_type: | ||
| description: 'Version bump type' | ||
| required: true | ||
| default: 'patch' | ||
| type: choice | ||
| options: | ||
| - patch | ||
| - minor | ||
| - major | ||
|
|
||
| permissions: | ||
| contents: write | ||
|
|
||
| jobs: | ||
| bump: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '20' | ||
| - run: | | ||
| git config user.name "github-actions[bot]" | ||
| git config user.email "github-actions[bot]@users.noreply.github.com" | ||
| - run: npm version ${{ inputs.version_type }} -m "release: bump versi ke %s" | ||
| - run: git push && git push --tags |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
CI is now configured to run on pushes only to
mainanddevelop. This removes CI coverage for pushes to other branches (feature branches, release branches, etc.), which can allow breakages to go unnoticed until a PR is opened/retargeted. If that’s not intentional, consider restoring push triggers for all branches (or at least**with excludes).