Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 .env_template
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ COMPOSE_FILE=docker/default.yml:docker/local.override.yml
#COMPOSE_FILE=docker/default.yml:docker/local.override.yml:docker/elasticsearch.yml

# If you want to run a specific version, populate this
# REACT_APP_INTELOWL_VERSION="2.0.0"
# REACT_APP_INTELOWL_VERSION="2.0.1"
2 changes: 1 addition & 1 deletion docker/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
REACT_APP_GREEDYBEAR_VERSION="2.0.0"
REACT_APP_GREEDYBEAR_VERSION="2.0.1"
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Frontend
FROM node:lts-alpine3.21 AS frontend-build
FROM node:lts-alpine3.22 AS frontend-build

WORKDIR /
# copy react source code
Expand All @@ -13,7 +13,7 @@ RUN npm install
RUN PUBLIC_URL=/static/reactapp/ npm run build

# Stage 2: Backend
FROM python:3.13-alpine3.21
FROM python:3.13-alpine3.22

ENV PYTHONUNBUFFERED=1
ENV DJANGO_SETTINGS_MODULE=greedybear.settings
Expand Down
6 changes: 6 additions & 0 deletions frontend/src/components/home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ const versionText = VERSION;
// const versionText = "v1.0.0";
const logoBgImg = `url('${PUBLIC_URL}/greedybear.png')`;
const blogPosts = [
{
title: "GreedyBear version 2.0 released",
subText: "Upgrade from 1.x requires manual intervention",
date: "3rd October 2025",
link: "https://intelowlproject.github.io/blogs/greedybear_v2_release",
},
{
title: "Improvements to GreedyBear",
subText: "Machine Learning applied to GreedyBear Feeds",
Expand Down
2 changes: 1 addition & 1 deletion requirements/project-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ uwsgitop==0.12
uwsgi==2.0.30

joblib==1.5.2
pandas==2.3.2
pandas==2.3.3
scikit-learn==1.6.1
numpy==2.2.4
datasketch==1.6.5
Loading