Skip to content
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

Merge staging into prod #5892

Merged
merged 29 commits into from
Mar 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
cb2e5f3
DepUpdate: Update script;
Mar 6, 2025
09ad9e0
DepUpdate: Update packages;
Mar 6, 2025
cf50271
DepUpdate: Update Terraform Version in Dockerfile;
Mar 6, 2025
2110601
DepUpdate: Update AWS CLI Version in Dockerfile;
Mar 6, 2025
c343efd
DepUpdate: Update ECR image version;
Mar 6, 2025
bcdeba2
10594: Disable checkbox for petitioner corresponding to currently log…
En-8 Mar 6, 2025
f1f58ca
Merge branch 'staging' into dep-update-20250306
jimlerza Mar 7, 2025
5c13421
10594: use computed instead of inline logic in component. Add unit test
En-8 Mar 7, 2025
65ca3d5
10594: don't map an undefined array
En-8 Mar 7, 2025
b8450dc
DepUpdate: Fix Typings;
Mar 7, 2025
e3c829f
Merge branch 'dep-update-20250306' of github.com:flexion/ef-cms into …
Mar 7, 2025
52c2431
Merge branch 'staging' into dep-update-20250306
cruzjone-flexion Mar 7, 2025
8f87cb5
Merge branch 'staging' into 10594-story
En-8 Mar 11, 2025
1f77480
devex: clear judgeUser as part of clearUserAction and update test
Mwindo Mar 12, 2025
6e42568
10594: include additional validation logic if petitioner manages to b…
En-8 Mar 12, 2025
7d9bc9e
10594: unit test update
En-8 Mar 12, 2025
3330576
10608: update interactor and proxy so that client passes 'from'
akuny Mar 12, 2025
1649c98
10608: add sequence to handle page changes for case deadline report
akuny Mar 12, 2025
87baa9e
10608: update cerebral components to handle serverside pagination of …
akuny Mar 12, 2025
3b529aa
10608: update cerebral integration test
akuny Mar 12, 2025
5d5872d
10608: update additional integration tests
akuny Mar 13, 2025
78f8633
Merge pull request #5867 from flexion/dep-update-20250306
jimlerza Mar 13, 2025
9a8f478
Merge branch 'staging' into devex-clear-judgeUser-on-logout-staging
jimlerza Mar 13, 2025
9a0a9c1
Merge pull request #5879 from flexion/devex-clear-judgeUser-on-logout…
jimlerza Mar 13, 2025
4db3c6c
Merge branch 'staging' into 10594-story
jimlerza Mar 13, 2025
e795eab
Merge branch 'staging' into 10608-bug
jimlerza Mar 13, 2025
64fe94d
Merge pull request #5866 from flexion/10594-story
jimlerza Mar 13, 2025
c739faa
Merge branch 'staging' into 10608-bug
jimlerza Mar 13, 2025
9789d33
Merge pull request #5883 from flexion/10608-bug
jimlerza Mar 13, 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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1
orbs:
git-shallow-clone: guitarrapc/git-shallow-clone@2.8.0

efcms-docker-image: &efcms-docker-image $AWS_ACCOUNT_ID.dkr.ecr.us-east-1.amazonaws.com/ef-cms-us-east-1:4.3.32
efcms-docker-image: &efcms-docker-image $AWS_ACCOUNT_ID.dkr.ecr.us-east-1.amazonaws.com/ef-cms-us-east-1:4.3.33

parameters:
run_build_and_deploy:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ RUN apt-get install -y build-essential
RUN apt-get install -y libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev

ENV JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.24.14.zip" -o "awscliv2.zip" && \
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.24.18.zip" -o "awscliv2.zip" && \
unzip awscliv2.zip && \
./aws/install && \
rm -rf awscliv2.zip

RUN wget -q -O terraform.zip https://releases.hashicorp.com/terraform/1.11.0/terraform_1.11.0_linux_amd64.zip && \
RUN wget -q -O terraform.zip https://releases.hashicorp.com/terraform/1.11.1/terraform_1.11.1_linux_amd64.zip && \
unzip -o terraform.zip terraform && \
rm terraform.zip && \
cp terraform /usr/local/bin/
Expand Down
Loading
Loading