diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f9b2afe..7949ee5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "cloudrun-malware-scanner": "3.1.1" + "cloudrun-malware-scanner": "3.2.0" } diff --git a/cloudrun-malware-scanner/CHANGELOG.md b/cloudrun-malware-scanner/CHANGELOG.md index a6a80bf..461b8df 100644 --- a/cloudrun-malware-scanner/CHANGELOG.md +++ b/cloudrun-malware-scanner/CHANGELOG.md @@ -1,6 +1,27 @@ # Changelog +## [3.2.0](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/compare/v3.1.1...v3.2.0) (2024-12-04) + + +### Features + +* add liveness probes which verify clamd is running ([#266](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/issues/266)) ([8a9c206](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/commit/8a9c2069774cc24c7d5c7f8958865a49cacb7157)) +* Handle partial uploads and add file exclusion patterns ([#255](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/issues/255)) ([cd04d8c](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/commit/cd04d8c8f34d750cbe6588039438e23902087ed8)) +* **test:** add unit tests for scanner and config ([2e647b2](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/commit/2e647b2488a684ad7b457dd9f945c8a8c906b7ab)) +* Use ClamAV 1.4 from ClamAV managed container ([#264](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/issues/264)) ([0983741](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/commit/0983741f21bca699ef8bfecdea732b03cdb235a9)) + + +### Bug Fixes + +* correct status log messages ([02da621](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/commit/02da621efe8249785c0982aaedb15e61c3728c20)) +* **deps:** update dependency @types/express to v5 ([#271](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/issues/271)) ([df9339f](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/commit/df9339f80729b4f0def7bd9a753d13bf357a65e8)) +* **deps:** update gcr.io/cloud-builders/docker docker tag to v24 ([#272](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/issues/272)) ([1cab1e2](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/commit/1cab1e2a2320b4258e3cf4c0252ff67534a03114)) +* **deps:** update node.js to v22.12.0 ([#268](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/issues/268)) ([2214ef2](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/commit/2214ef2c2c59e1317ed3e3bcf79abd72e8028128)) +* **deps:** update npm-packages ([#259](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/issues/259)) ([e5b3d92](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/commit/e5b3d92695a5a06792ccecfa4032478bff548649)) +* **deps:** update npm-packages ([#267](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/issues/267)) ([d1e000a](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/commit/d1e000aca92f1659366e951a5e2bf71aa6ff72d8)) +* **deps:** update npm-packages ([#273](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/issues/273)) ([03e8248](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/commit/03e824888f0cad2995df1800d105db32c2d7fb9a)) + ## [3.1.1](https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner/compare/v3.1.0...v3.1.1) (2024-11-25) diff --git a/cloudrun-malware-scanner/package-lock.json b/cloudrun-malware-scanner/package-lock.json index 0bf39a8..2b6245c 100644 --- a/cloudrun-malware-scanner/package-lock.json +++ b/cloudrun-malware-scanner/package-lock.json @@ -1,12 +1,12 @@ { "name": "gcs-malware-scanner", - "version": "3.1.1", + "version": "3.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "gcs-malware-scanner", - "version": "3.1.1", + "version": "3.2.0", "license": "Apache-2.0", "dependencies": { "@google-cloud/opentelemetry-cloud-monitoring-exporter": "^0.20.0", diff --git a/cloudrun-malware-scanner/package.json b/cloudrun-malware-scanner/package.json index f9215c4..5ea4d27 100644 --- a/cloudrun-malware-scanner/package.json +++ b/cloudrun-malware-scanner/package.json @@ -1,6 +1,6 @@ { "name": "gcs-malware-scanner", - "version": "3.1.1", + "version": "3.2.0", "description": "Service to scan GCS documents for the malware and move the analyzed documents to appropriate buckets", "main": "index.js", "scripts": {