Skip to content

Commit

Permalink
Updated top level dependencies.
Browse files Browse the repository at this point in the history
- Updated Lerna to the latest version.
- Updated Webpack dependency in cdkdx which has an SSL security issue hupe1980/cdkdx#22.
- Updated ClamAV version for Ubuntu run in Docker. Version `0.103.11-1.el7` is no longer available.
- Added build instructions to README.

Build results:

```
 Lerna (powered by Nx)   Successfully ran target build for 45 projects (2m)

✨  Done in 113.17s.
```

Test results:

```
Test Suites: 42 passed, 42 total
Tests:       106 passed, 106 total
Snapshots:   64 passed, 64 total
Time:        7.664 s
Ran all test suites in 27 projects.
✨  Done in 10.13s.
```
  • Loading branch information
Esen Sagynov committed Mar 21, 2024
1 parent 154e186 commit 1cd4f6d
Show file tree
Hide file tree
Showing 5 changed files with 3,614 additions and 3,595 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,18 @@ This repository is a monorepo managed with [Lerna](https://github.com/lerna/lern

We welcome community contributions and pull requests.

## Build

1. Install `yarn` on your system.

1. Install Docker which is required for some of the packages.

1. Install Node dependencies.

yarn install

1.

## License

[MIT](LICENSE)
1 change: 0 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"packages": ["packages/*", "examples/*"],
"version": "independent",
"command": {
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
"examples/*"
],
"devDependencies": {
"@types/node": "^14.14.31",
"cdkdx": "^1.7.0",
"cross-env": "^7.0.3",
"lerna": "^4.0.0"
"@types/node": "14.14.31",
"cdkdx": "1.9.0",
"cross-env": "7.0.3",
"lerna": "8.1.2"
}
}
4 changes: 2 additions & 2 deletions packages/cdk-s3-antivirus/src/layers/clamav/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM public.ecr.aws/lambda/provided:al2.2021.09.13.11

ARG asset_name=layer
ARG CLAMAV_VERSION=0.103.5-1.el7
ARG CLAMAV_VERSION=0.103.11-1.el7

USER root
RUN mkdir -p /opt/{lib,clamav}
Expand All @@ -14,7 +14,7 @@ RUN amazon-linux-extras install epel -y && yum-config-manager --enable epel

#
# layer
#
#
RUN yum install clamav-$CLAMAV_VERSION -y


Expand Down
Loading

0 comments on commit 1cd4f6d

Please sign in to comment.