Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
d2964df
reintroduced DEFAULT_FROM_EMAIL
ihsaan-ullah Mar 18, 2026
e60d0c7
Update Benchmark-Examples.md
Didayolo Mar 30, 2026
0847405
bump cryptography, pygments and other packages to fix vulnerabilities
Mar 31, 2026
9de20ab
Merge pull request #2297 from codalab/update_benchmark_examples_doc
Didayolo Mar 31, 2026
2fb79f7
Merge pull request #2300 from codalab/security_updates
Didayolo Mar 31, 2026
2f437bc
Fix queue attribute name in `tasks.py` (#2306)
Didayolo Mar 31, 2026
765f55d
Update version.json
ObadaS Apr 1, 2026
fc63d42
Merge pull request #2308 from codalab/version-bump
ObadaS Apr 1, 2026
1ad888d
Compute Worker- reorganizing and cleaning of compute worker (#2294)
ihsaan-ullah Apr 1, 2026
36f0acf
use submission queue when cancelling
ihsaan-ullah Apr 1, 2026
f012433
submission panel score logic updated to show primary column score alo…
ihsaan-ullah Apr 2, 2026
21b7515
Bundle Upload - Error made clear when there is a problem in yaml (#2309)
ihsaan-ullah Apr 2, 2026
dcb58c2
Merge pull request #2310 from codalab/cancel_submission
Didayolo Apr 2, 2026
a37c74f
Ignore flake8 rule W503
Didayolo Apr 3, 2026
d49db37
Merge pull request #2317 from codalab/flake8
Didayolo Apr 3, 2026
dbba19c
Merge pull request #2312 from codalab/score_in_submission_panel
Didayolo Apr 3, 2026
f3501a3
Leaderboard Pagination. (#2319)
IdirLISN Apr 9, 2026
e7a3260
refactored bundle_management code
ihsaan-ullah Apr 2, 2026
5e076a2
Merge pull request #2314 from codalab/bundle_management_refactoring
Didayolo Apr 9, 2026
f508da4
Quota Cleanup - Updates to remove unused starting kits and bundles an…
ihsaan-ullah Apr 9, 2026
9dca3d9
fix pg_dump.py not using the new container names
Apr 9, 2026
bdc577b
Merge pull request #2329 from codalab/fix_pg-dump
Didayolo Apr 9, 2026
63b00ce
Merge pull request #2271 from codalab/default_from_email
Didayolo Apr 15, 2026
faab33c
Add update pull_policy for site_worker service
Didayolo Apr 15, 2026
578b131
Merge pull request #2338 from codalab/docker-compose-fix
Didayolo Apr 15, 2026
f45f433
fix secret url using the wrong domain name
Apr 16, 2026
c8e4643
Merge pull request #2339 from codalab/fix_secret_url
Didayolo Apr 16, 2026
97e0076
Update E2E tests (#2302)
Didayolo Apr 16, 2026
d676d1d
Group the submission logs
Didayolo Feb 17, 2026
d066ce9
Dynamic tabs instead of always 4
Didayolo Feb 25, 2026
40a878c
Remove useless comments
Didayolo Feb 25, 2026
1bea816
Have all logs possibilities instead of grouping them by 2
Didayolo Feb 25, 2026
d97c2c9
Fix logs for multi-task case
Didayolo Feb 25, 2026
62ccd8d
Put back some code that were actually working better
Didayolo Feb 25, 2026
8f24f15
Use Semantic UI for inner tabs, clean code
Didayolo Feb 25, 2026
911af84
Fix tab selection
Didayolo Apr 3, 2026
c9b8003
Merge pull request #2195 from codalab/submission-logs-tabs
ObadaS Apr 21, 2026
b4b081e
Add permission check to datasets/download (#2348)
Didayolo Apr 23, 2026
2b66bf9
Bump django from 5.2.12 to 5.2.13
dependabot[bot] Apr 8, 2026
328e94e
Bump cryptography from 46.0.6 to 46.0.7
dependabot[bot] Apr 8, 2026
1dbf10f
Bump pytest from 9.0.2 to 9.0.3
dependabot[bot] Apr 14, 2026
5be6c28
Bump pillow from 12.1.1 to 12.2.0
dependabot[bot] Apr 13, 2026
508c7cb
rebase and added more packages upgrades via uv lock --upgrade
Apr 21, 2026
5164c4f
rebase and added more packages upgrades via uv lock --upgrade v2
Apr 24, 2026
4cc7380
Merge pull request #2326 from codalab/packages-upgrade
ObadaS Apr 24, 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
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
name: "Docker: Pull required images"
# not available without "not e2e" tests as they pull ahead of time
command: |
docker pull codalab/codalab-legacy:py312
docker pull codalab/codalab-legacy:py37
docker pull codalab/codalab-legacy:py3
docker pull vergilgxw/autotable:v2
Expand Down
1 change: 1 addition & 0 deletions .env_sample
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ SELENIUM_HOSTNAME=selenium
#EMAIL_HOST_PASSWORD=pass
#EMAIL_PORT=587
#EMAIL_USE_TLS=True
#DEFAULT_FROM_EMAIL="Codabench <noreply@example.com>"
#SERVER_EMAIL=noreply@example.com

# Contact Email
Expand Down
4 changes: 2 additions & 2 deletions bin/pg_dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
call([
'docker',
'exec',
'codabench-db-1',
'db',
'bash',
'-c',
f'PGPASSWORD=$DB_PASSWORD pg_dump -Fc -U $DB_USERNAME $DB_NAME > /app/backups/{dump_name}'
])

# Push/destroy dump
call([
'docker', 'exec', 'codabench-django-1', 'python', 'manage.py', 'upload_backup', f'{dump_name}'
'docker', 'exec', 'django', 'python', 'manage.py', 'upload_backup', f'{dump_name}'
])
Loading
Loading