Skip to content
Open
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
103c3bd
Potential fix for code scanning alert no. 72: Incomplete string escap…
kkartunov Nov 4, 2025
93e0da8
pnpm update --latest
kkartunov Nov 4, 2025
0ffaffb
on dev env
kkartunov Nov 4, 2025
0d99cea
uuid API version updates
kkartunov Nov 4, 2025
b8ccdfa
axios-retry api update
kkartunov Nov 4, 2025
663e1e8
joi & express fixes
kkartunov Nov 4, 2025
6530304
fix error, schema.validate
kkartunov Nov 4, 2025
611ee56
clean up readmes
kkartunov Nov 4, 2025
de2bc0d
remove unused
kkartunov Nov 4, 2025
d4aa9b4
up aws sdk to v3
kkartunov Nov 4, 2025
127cce1
hid pnpm-lock
kkartunov Nov 5, 2025
29ae9d7
Merge pull request #31 from topcoder-platform/alert-autofix-72
kkartunov Nov 5, 2025
972cb96
Merge pull request #32 from topcoder-platform/module-updates
kkartunov Nov 5, 2025
d464096
drop yarn
kkartunov Nov 5, 2025
67d72d4
Merge pull request #33 from topcoder-platform/module-updates
kkartunov Nov 5, 2025
f5914e2
Fix for processing phases in challenge update
jmgasper Nov 9, 2025
85ff0c7
Merge pull request #34 from topcoder-platform/PS-441
jmgasper Nov 9, 2025
bc505af
Build fix
jmgasper Nov 10, 2025
e41826c
Performance changes for PM-2206
jmgasper Nov 11, 2025
87a1eb2
Merge pull request #37 from topcoder-platform/PM-2206-develop
jmgasper Nov 11, 2025
82232ba
Add in view to help with performance issue seen in dev
jmgasper Nov 11, 2025
c6d02f3
Automate migrations
kkartunov Nov 11, 2025
6c0e4d8
use entrypoint
kkartunov Nov 11, 2025
016a1b3
Merge pull request #40 from topcoder-platform/master
kkartunov Nov 11, 2025
b829e34
Merge pull request #41 from topcoder-platform/auto-migrations
kkartunov Nov 11, 2025
cb14e83
Prisma drift fix
jmgasper Nov 11, 2025
38dd16c
Prisma drift fix
jmgasper Nov 11, 2025
cb285b3
Merge pull request #43 from topcoder-platform/migration-history-fix
jmgasper Nov 11, 2025
c0ff57f
Fix errors seen in build
jmgasper Nov 11, 2025
170cbc5
Merge pull request #44 from topcoder-platform/build_fix
jmgasper Nov 11, 2025
900e2da
Merge pull request #46 from topcoder-platform/submissionEndDateFix
jmgasper Nov 11, 2025
9588596
Allow for registration phase reopening if submission or TG submission…
jmgasper Nov 12, 2025
7ed9d4b
Merge pull request #48 from topcoder-platform/registrationReopen
jmgasper Nov 12, 2025
0f5d076
Merge pull request #50 from topcoder-platform/master
jmgasper Nov 12, 2025
0a4a03f
Merge pull request #51 from topcoder-platform/PM-2206-2nd-fix
jmgasper Nov 12, 2025
6a9bb43
feat: added ai workflow id to default reviewer
hentrymartin Nov 12, 2025
c6c5463
fix: make scorecardId optional
hentrymartin Nov 12, 2025
38c74bd
Merge pull request #53 from topcoder-platform/master
kkartunov Nov 12, 2025
8c73a69
Merge branch 'develop' into pm-2540_3
hentrymartin Nov 12, 2025
d8c7eef
feat: added ai workflow id to default reviewer
hentrymartin Nov 12, 2025
9a79208
Merge pull request #52 from topcoder-platform/pm-2540_3
hentrymartin Nov 12, 2025
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: 1 addition & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,6 @@ install_deploysuite: &install_deploysuite
cp ./../buildscript/awsconfiguration.sh .
cp ./../buildscript/psvar-processor.sh .

restore_cache_settings_for_build: &restore_cache_settings_for_build
key: docker-node-modules-{{ checksum "yarn.lock" }}

save_cache_settings: &save_cache_settings
key: docker-node-modules-{{ checksum "yarn.lock" }}
paths:
- node_modules

finger_print_add: &finger_print_add

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[⚠️ performance]
The removal of the restore_cache_settings_for_build and save_cache_settings anchors, along with their usage in the builddeploy_steps, could lead to increased build times if the node_modules directory is not cached elsewhere. Consider verifying if caching is handled in another part of the pipeline or if this removal is intentional and acceptable.

fingerprints:
- SHA256:KJYSvQh9CxkY9yRXxp+Geo6cllnfSiiKAH3LFQ/X9f4
Expand All @@ -33,7 +25,6 @@ builddeploy_steps: &builddeploy_steps
- setup_remote_docker
- run: *install_dependency
- run: *install_deploysuite
- restore_cache: *restore_cache_settings_for_build
- run:
name: "Authenticate with CodeArtifact and build Docker image"
command: |
Expand All @@ -51,7 +42,6 @@ builddeploy_steps: &builddeploy_steps
source buildvar_env
rm -f awsenvconf
./build.sh ${APPNAME}
- save_cache: *save_cache_settings
- deploy:
name: Running MasterScript.
command: |
Expand Down Expand Up @@ -100,10 +90,7 @@ workflows:
branches:
only:
- develop
- feature/top-262-projectid-non-mandatory
- TOP-2364
- PM-2097
- pm-2539
- module-updates

- "build-qa":
context: org-global
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
.yarn
yarn.lock

# Runtime data
pids
Expand Down
187 changes: 0 additions & 187 deletions README_DEPLOYMENT.md

This file was deleted.

Loading