Skip to content

Commit

Permalink
Merge branch 'main' into release/3.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stchris authored May 23, 2023
2 parents f94dbb6 + c2d4720 commit 0af5b44
Show file tree
Hide file tree
Showing 15 changed files with 43 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.14.1-rc17
current_version = 3.14.1
tag_name = {new_version}
commit = True
tag = True
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 3.14.1 (11-05-2023)
- Support for error tracking via Sentry
- Fix a flaky UI test (#3011)
- Reference ghcr.io docker repository everywhere
- Configure bump2version to keep versions in contrib/ up-to-date
- Bump ingest-file to 3.18.4

## 3.14.0 (30-03-2023)

- Numerous library upgrades
Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ ingest-restart:
$(COMPOSE) up -d --no-deps --remove-orphans --force-recreate ingest-file convert-document

dev:
python3 -m pip install --upgrade pip
python3 -m pip install -q -r requirements.txt
python3 -m pip install -q -r requirements-dev.txt

fixtures:
Expand Down
6 changes: 3 additions & 3 deletions aleph/translations/messages.pot
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Translations template for PROJECT.
# Copyright (C) 2022 ORGANIZATION
# Copyright (C) 2023 ORGANIZATION
# This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2022-12-12 11:06+0100\n"
"POT-Creation-Date: 2023-05-11 10:13+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down
10 changes: 5 additions & 5 deletions contrib/aleph-traefik-minio-keycloak/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ services:
- "traefik.enable=false"

ingest-file:
image: ghcr.io/alephdata/ingest-file:3.17.1
image: ghcr.io/alephdata/ingest-file:3.18.4
tmpfs:
- /tmp:mode=777
volumes:
Expand All @@ -65,7 +65,7 @@ services:
- "traefik.enable=false"

worker:
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc17}
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1}
command: aleph worker
restart: on-failure
links:
Expand All @@ -90,7 +90,7 @@ services:
- "traefik.enable=false"

shell:
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc17}
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1}
command: /bin/bash
depends_on:
- postgres
Expand All @@ -110,7 +110,7 @@ services:
- "traefik.enable=false"

api:
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc17}
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1}
command: gunicorn -w 6 -b 0.0.0.0:8000 --log-level debug --log-file - aleph.wsgi:app
expose:
- 8000
Expand All @@ -132,7 +132,7 @@ services:
- "traefik.enable=false"

ui:
image: ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-3.14.1-rc17}
image: ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-3.14.1}
depends_on:
- api
- traefik
Expand Down
10 changes: 5 additions & 5 deletions contrib/keycloak/docker-compose.dev-keycloak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
elasticsearch:
build:
context: services/elasticsearch
image: ghcr.io/alephdata/aleph-elasticsearch:${ALEPH_TAG:-3.14.1-rc17}
image: ghcr.io/alephdata/aleph-elasticsearch:${ALEPH_TAG:-3.14.1}
hostname: elasticsearch
environment:
- discovery.type=single-node
Expand All @@ -43,7 +43,7 @@ services:
ingest-file:
build:
context: services/ingest-file
image: ghcr.io/alephdata/ingest-file:3.17.1
image: ghcr.io/alephdata/ingest-file:3.18.4
hostname: ingest
tmpfs: /tmp
volumes:
Expand All @@ -64,7 +64,7 @@ services:
app:
build:
context: .
image: alephdata/aleph:${ALEPH_TAG:-3.14.1-rc17}
image: alephdata/aleph:${ALEPH_TAG:-3.14.1}
hostname: aleph
command: /bin/bash
links:
Expand Down Expand Up @@ -92,7 +92,7 @@ services:
api:
build:
context: .
image: alephdata/aleph:${ALEPH_TAG:-3.14.1-rc17}
image: alephdata/aleph:${ALEPH_TAG:-3.14.1}
command: aleph run -h 0.0.0.0 -p 5000 --with-threads --reload --debugger
ports:
- "127.0.0.1:5000:5000"
Expand Down Expand Up @@ -126,7 +126,7 @@ services:
ui:
build:
context: ui
image: alephdata/aleph-ui:${ALEPH_TAG:-3.14.1-rc17}
image: alephdata/aleph-ui:${ALEPH_TAG:-3.14.1}
links:
- api
command: npm run start
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ services:
tmpfs: /tmp

ingest-file:
image: ghcr.io/alephdata/ingest-file:3.17.1
image: ghcr.io/alephdata/ingest-file:3.18.4
hostname: ingest
tmpfs: /tmp
volumes:
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:
tmpfs: /tmp

ingest-file:
image: ghcr.io/alephdata/ingest-file:3.17.1
image: ghcr.io/alephdata/ingest-file:3.18.4
tmpfs:
- /tmp:mode=777
volumes:
Expand All @@ -46,7 +46,7 @@ services:
- aleph.env

worker:
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc17}
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1}
command: aleph worker
restart: on-failure
depends_on:
Expand All @@ -62,7 +62,7 @@ services:
- aleph.env

shell:
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc17}
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1}
command: /bin/bash
depends_on:
- postgres
Expand All @@ -80,7 +80,7 @@ services:
- aleph.env

api:
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc17}
image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1}
command: gunicorn -w 6 -b 0.0.0.0:8000 --timeout 3600 --log-level debug --log-file - aleph.wsgi:app
expose:
- 8000
Expand All @@ -98,7 +98,7 @@ services:
- aleph.env

ui:
image: ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-3.14.1-rc17}
image: ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-3.14.1}
depends_on:
- api
ports:
Expand Down
12 changes: 6 additions & 6 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions helm/charts/aleph/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: aleph
description: Helm chart for Aleph
type: application
version: 3.14.1-rc17
appVersion: 3.14.1-rc17
version: 3.14.1
appVersion: 3.14.1
2 changes: 1 addition & 1 deletion helm/charts/aleph/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Helm chart for Aleph
| global.amazon | bool | `true` | Are we using AWS services like s3? |
| global.google | bool | `false` | Are we using GCE services like storage, vision api? |
| global.image.repository | string | `"alephdata/aleph"` | Aleph docker image repo |
| global.image.tag | string | `"3.14.1-rc17"` | Aleph docker image tag |
| global.image.tag | string | `"3.14.1"` | Aleph docker image tag |
| global.image.tag | string | `"Always"` | |
| global.namingPrefix | string | `"aleph"` | Prefix for the names of k8s resources |

Expand Down
2 changes: 1 addition & 1 deletion helm/charts/aleph/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ global:

image:
repository: ghcr.io/alephdata/aleph
tag: "3.14.1-rc17"
tag: "3.14.1"
pullPolicy: Always

commonEnv:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="aleph",
version="3.14.1-rc17",
version="3.14.1",
description="Document sifting web frontend",
classifiers=[
"Intended Audience :: Developers",
Expand Down
4 changes: 2 additions & 2 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aleph-ui",
"version": "3.14.1-rc17",
"version": "3.14.1",
"private": true,
"dependencies": {
"@alephdata/followthemoney": "^3.3.0",
Expand Down

0 comments on commit 0af5b44

Please sign in to comment.