From d1dec710ea59c3b37ac7fe815e778f5cbebfd980 Mon Sep 17 00:00:00 2001 From: JWittmeyer <91723236+JWittmeyer@users.noreply.github.com> Date: Sat, 16 Jul 2022 17:28:23 +0200 Subject: [PATCH 1/5] Update LICENSE --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 261eeb9..8b17cbd 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2022 onetask.ai GmbH Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From 731eb828aa00abaa8add1d6e7134a77c79732416 Mon Sep 17 00:00:00 2001 From: felix0496 Date: Thu, 21 Jul 2022 10:50:36 +0200 Subject: [PATCH 2/5] changes old service names to new ones --- start | 2 +- submodules/model | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/start b/start index 87163ae..b066f6d 100755 --- a/start +++ b/start @@ -14,7 +14,7 @@ docker run -d --rm \ --name refinery-weak-supervisor \ -p 7054:80 \ -e POSTGRES=postgresql://postgres:onetask@graphql-postgres:5432 \ --e WS_NOTIFY_ENDPOINT="http://ws-notify:8080" \ +-e WS_NOTIFY_ENDPOINT="http://refinery-websocket:8080" \ --mount type=bind,source="$(pwd)"/,target=/app \ -v /var/run/docker.sock:/var/run/docker.sock \ --network dev-setup_default \ diff --git a/submodules/model b/submodules/model index 42dd383..2811dba 160000 --- a/submodules/model +++ b/submodules/model @@ -1 +1 @@ -Subproject commit 42dd38322bf829fa7a82a4810f0e86c65914be08 +Subproject commit 2811dbacdc57359e803dffc4a88065ff06432a0a From 79d1713ffc3c16ebd6ad67133fd54d1dd2df064b Mon Sep 17 00:00:00 2001 From: JWittmeyer <91723236+JWittmeyer@users.noreply.github.com> Date: Mon, 8 Aug 2022 18:18:17 +0200 Subject: [PATCH 3/5] Create dependabot.yml --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..42d484c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" + # default is / which breaks drone + pull-request-branch-name: + separator: "-" + # not created automatically for version updates so only security ones are created + # https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates#overriding-the-default-behavior-with-a-configuration-file + open-pull-requests-limit: 0 + From 41dd9f02064a385f19d6db74cd0386d869ababf5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Aug 2022 08:09:03 +0000 Subject: [PATCH 4/5] Bump numpy from 1.21.4 to 1.22.0 Bumps [numpy](https://github.com/numpy/numpy) from 1.21.4 to 1.22.0. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](https://github.com/numpy/numpy/compare/v1.21.4...v1.22.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 43bbfbd..f8029a1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -15,7 +15,7 @@ Jinja2==3.0.2 jsonschema==4.2.1 MarkupSafe==2.0.1 mypy-extensions==0.4.3 -numpy==1.21.4 +numpy==1.22.0 pandas==1.3.4 pathspec==0.9.0 platformdirs==2.4.0 From 3edb402b72b4605010d5ce88c909a8f20156c23c Mon Sep 17 00:00:00 2001 From: JWittmeyer <91723236+JWittmeyer@users.noreply.github.com> Date: Fri, 12 Aug 2022 13:34:21 +0200 Subject: [PATCH 5/5] bump python to 3.9 --- Dockerfile | 2 +- dev.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 41f65ac..7d7d244 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM python:3.7 +FROM python:3.9 WORKDIR /program diff --git a/dev.Dockerfile b/dev.Dockerfile index a611fed..c47097c 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.7 +FROM python:3.9 WORKDIR /app