diff --git a/DockerImageLog.md b/DockerImageLog.md index 0be9f82..e7f1b23 100644 --- a/DockerImageLog.md +++ b/DockerImageLog.md @@ -1,3 +1,18 @@ +# praecoapp/elastalert-server:20230430 + +## New features + +None + +## Bug Fix + +None + +## Other changes + +- jertel/elastalert2:2.10.1 to 2.11.0 +- Library Update + # praecoapp/elastalert-server:20230402 ## New features diff --git a/Dockerfile b/Dockerfile index a33bb77..e0d647f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.11-alpine3.17 as ea2 -ARG ELASTALERT_VERSION=2.10.1 +ARG ELASTALERT_VERSION=2.11.0 ENV ELASTALERT_VERSION=${ELASTALERT_VERSION} ARG ELASTALERT_URL=https://github.com/jertel/elastalert2/archive/refs/tags/$ELASTALERT_VERSION.zip ENV ELASTALERT_URL=${ELASTALERT_URL} @@ -40,7 +40,7 @@ COPY . /opt/elastalert-server RUN npm install --production --quiet -RUN pip3 install --no-cache-dir --upgrade pip==23.0.1 +RUN pip3 install --no-cache-dir --upgrade pip==23.1.2 USER node diff --git a/Makefile b/Makefile index f2f7401..d617644 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -v ?= 2.10.1 +v ?= 2.11.0 all: build diff --git a/package.json b/package.json index bff068c..6b86c19 100644 --- a/package.json +++ b/package.json @@ -19,24 +19,24 @@ }, "dependencies": { "@babel/cli": "^7.21.0", - "@babel/core": "^7.21.4", - "@babel/preset-env": "^7.21.4", + "@babel/core": "^7.21.5", + "@babel/preset-env": "^7.21.5", "@babel/register": "^7.21.0", - "@opensearch-project/opensearch": "^2.2.0", - "axios": "^1.3.4", + "@opensearch-project/opensearch": "^2.2.1", + "axios": "^1.4.0", "bunyan": "^1.8.15", "cors": "^2.8.5", "cpu-stat": "^2.0.1", "es5": "npm:@elastic/elasticsearch@^5.6.22", "es6": "npm:@elastic/elasticsearch@^6.8.8", "es7": "npm:@elastic/elasticsearch@^7.17.0", - "es8": "npm:@elastic/elasticsearch@^8.6.0", + "es8": "npm:@elastic/elasticsearch@^8.7.0", "express": "^4.18.2", "fs-extra": "^11.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "js-yaml": "^4.1.0", "lodash": "^4.17.21", - "mkdirp": "^2.1.6", + "mkdirp": "^3.0.1", "object-resolve-path": "^1.1.1", "randomstring": "^1.2.3", "readdirp": "^3.6.0", @@ -44,7 +44,7 @@ "ws": "^8.13.0" }, "devDependencies": { - "eslint": "^8.37.0" + "eslint": "^8.39.0" }, "scripts": { "build": "babel src -d lib",