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

🚀 Release v1.7.0 and deploy to production #404

Merged
merged 24 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
04ba6c7
Merge pull request #391 from UN-OCHA/mergeback/stage/1.6.0
Delgee Jul 10, 2023
4d24478
Merge pull request #393 from UN-OCHA/mergeback/prod/1.6.0
Pl217 Jul 13, 2023
03c351d
Merge pull request #394 from UN-OCHA/mergeback/stage/1.6.0
Pl217 Jul 13, 2023
2c19abd
Bump postcss from 8.4.24 to 8.4.31
dependabot[bot] Oct 7, 2023
c27a2f8
Merge pull request #395 from UN-OCHA/dependabot/npm_and_yarn/postcss-…
Pl217 Oct 23, 2023
c912dd7
Bump @babel/traverse from 7.22.4 to 7.23.2
dependabot[bot] Oct 23, 2023
4aa5c19
Merge pull request #396 from UN-OCHA/dependabot/npm_and_yarn/babel/tr…
Pl217 Oct 23, 2023
2123f8f
Bump crypto-js from 4.1.1 to 4.2.0
dependabot[bot] Oct 25, 2023
b32d98c
Merge pull request #400 from UN-OCHA/dependabot/npm_and_yarn/crypto-j…
Pl217 Oct 27, 2023
7e33808
OPS-9737: Upgrade minimal Node.js v18 version
Pl217 Oct 31, 2023
79824f0
HPC-9238: Specify minimal version of Node.js v20
Pl217 Oct 25, 2023
df1af8b
HPC-9232: Specify minimal version of NPM v10
Pl217 Oct 25, 2023
73ceeb3
HPC-9238: Upgrade to Node.js v20 in Docker image
Pl217 Oct 25, 2023
fcd2399
HPC-9238: Use Node.js v20 in GitHub CI
Pl217 Oct 25, 2023
fa9de49
Update GitHub actions to versions that use `node20` as default runtime
Pl217 Oct 25, 2023
c554f01
⬆️ Upgrade `@types/node` to `v20.8.10`
Pl217 Oct 25, 2023
4041b8b
Update ESLint to `v8.52.0`
Pl217 Oct 25, 2023
da0bded
⬆️ Upgrade `lint-staged` to `v15.0.2`
Pl217 Oct 25, 2023
173a6e0
⬆️ Upgrade Prettier to `v3.0.3`
Pl217 Oct 25, 2023
d0567d3
Format file after upgrading to Prettier v3
Pl217 Oct 25, 2023
597421c
Update to Typescript 5.2
Pl217 Oct 25, 2023
3620268
Merge pull request #401 from UN-OCHA/HPC-9238
Pl217 Nov 1, 2023
c6b9c8d
🔖 Bump version to `v1.7.0`
Delgee Nov 6, 2023
3e410f2
Merge pull request #402 from UN-OCHA/release/v1.7.0
Pl217 Nov 6, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.HPC_ECR_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.HPC_ECR_AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1

- name: Login to Public ECR
if: ${{ github.actor != 'dependabot[bot]' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: public.ecr.aws
username: ${{ secrets.HPC_ECR_AWS_ACCESS_KEY_ID }}
Expand Down
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"singleQuote": true
"singleQuote": true,
"trailingComma": "es5"
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/unocha/nodejs-builder:18-alpine AS builder
FROM public.ecr.aws/unocha/nodejs-builder:20-alpine AS builder
WORKDIR /srv/src
COPY . .
ARG ENVIRONMENT=production
Expand Down
2 changes: 1 addition & 1 deletion libs/hpc-ui/src/lib/i18n/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const parseString = (lang: string, str: string): ParsedTranslation => {
*/
export class Translations<
LanguageKey extends string,
Strings
Strings,
> extends i18n.Translations<LanguageKey, Strings> {
/**
* A mapping from language -> string -> ParsedTranslation
Expand Down
Loading