Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit 9f2f0fc

Browse files
JWittmeyerFelixKirschdependabot[bot]
authored
release v1.1.0 (#5)
* Update LICENSE * changes old service names to new ones (#2) * Create dependabot.yml (#3) * Bump numpy from 1.21.6 to 1.22.0 (#4) * Bump numpy from 1.21.6 to 1.22.0 Bumps [numpy](https://github.com/numpy/numpy) from 1.21.6 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](numpy/numpy@v1.21.6...v1.22.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * bump python version Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JWittmeyer <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Felix Kirsch <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3956ea2 commit 9f2f0fc

File tree

6 files changed

+20
-6
lines changed

6 files changed

+20
-6
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem
4+
- package-ecosystem: "pip"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
# default is / which breaks drone
9+
pull-request-branch-name:
10+
separator: "-"
11+
# not created automatically for version updates so only security ones are created
12+
# https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates#overriding-the-default-behavior-with-a-configuration-file
13+
open-pull-requests-limit: 0
14+

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7
1+
FROM python:3.9
22

33
WORKDIR /app
44

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright 2022 onetask.ai GmbH
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7
1+
FROM python:3.9
22

33
WORKDIR /app
44

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ h11==0.13.0
1010
idna==3.3
1111
importlib-metadata==4.11.3
1212
mypy-extensions==0.4.3
13-
numpy==1.21.6
13+
numpy==1.22.0
1414
pandas==1.3.5
1515
pathspec==0.9.0
1616
platformdirs==2.5.2

start

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ echo -ne 'starting...'
1313
docker run -d --rm \
1414
--name refinery-gateway-proxy \
1515
--mount type=bind,source="$(pwd)"/,target=/app \
16-
-e GATEWAY=http://graphql-gateway:80 \
16+
-e GATEWAY=http://refinery-gateway:80 \
1717
-e KRATOS=http://kratos:4433 \
18-
-e CONFIG=http://config-service:80 \
18+
-e CONFIG=http://refinery-config:80 \
1919
-v /var/run/docker.sock:/var/run/docker.sock \
2020
--network dev-setup_default \
2121
refinery-gateway-proxy-dev > /dev/null 2>&1

0 commit comments

Comments
 (0)