Skip to content

Commit 3fd7021

Browse files
committed
v0.7.4-b1 release
1 parent 3ff3cb2 commit 3fd7021

File tree

6 files changed

+30
-6
lines changed

6 files changed

+30
-6
lines changed

RELEASE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
## Releases
44

55

6+
### 0.7.4 beta 1
7+
[Released *2022-02-24*](https://github.com/cividi/spatial-data-package-platform/releases/tag/0.7.4-b1)
8+
9+
#### new
10+
- `PLY` annotation: option to draw and save a polygon
11+
- `mode`: Participation, Area Management or Off
12+
- Bulk publish or unpublish annotations (requires `publish_annotation` permissions)
13+
- CSV Export (requires `export_annotation` permission)
14+
- User definable `Usergroups`
15+
- `Workspace` and `Category` are now translatable (`django-parler`)
16+
- `Workspaces`, `Categories` and `Usergroups` are linked to a group, enabling finer read access control (only users in assigned group can view items)
17+
18+
#### changed
19+
- Default groups created: `core/participation` and `core/areamanagement`
20+
- `django` bumped to 3.1.14
21+
622
### 0.7.3
723
[Released *2021-07-18*](https://github.com/cividi/spatial-data-package-platform/releases/tag/0.7.3)
824

django/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
DJANGO_VERSION=3.1.12b
2-
DJANGO_VERSION_PREV=3.1.12a
1+
DJANGO_VERSION=3.2.0
2+
DJANGO_VERSION_PREV=3.1.12b
33
NOTTY=$(shell command [ "$$DOCKER_NOTTY" = YES ] && echo "-T")
44
DOCKER_EXEC=$(shell command -v docker > /dev/null && echo "docker-compose exec $(NOTTY) django")
55
SHELL := /bin/bash
@@ -17,6 +17,7 @@ build_docker:
1717
--build-arg BUILDKIT_INLINE_CACHE=1 \
1818
--cache-from smartuse/gemeindescan-webui-django:$(DJANGO_VERSION_PREV) \
1919
-t smartuse/gemeindescan-webui-django:$(DJANGO_VERSION) \
20+
--load \
2021
django
2122

2223
push:

django/docker/django/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.13.6
1+
FROM alpine:3.13.7
22
MAINTAINER Yves Serrano <[email protected]>
33
# https://github.com/just-containers/s6-overlay
44

@@ -64,6 +64,8 @@ RUN apk add --no-cache \
6464
zlib-dev \
6565
&& pip3 cache purge
6666

67+
RUN apk add --update tzdata
68+
6769
COPY s6/etc/services.d /etc/services.d
6870
COPY s6/etc/cont-init.d /etc/cont-init.d
6971
ENTRYPOINT ["/init"]

django/docker/django/requirements/00/requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ APScheduler==3.6.3
44
asgiref==3.4.1
55
astroid==2.6.2
66
attrs==20.3.0
7+
backports.zoneinfo==0.2.1
78
beautifulsoup4==4.9.3
89
bleach==4.1.0
910
blessings==1.7
@@ -12,11 +13,12 @@ certifi==2021.5.30
1213
chardet==4.0.0
1314
click==8.0.1
1415
curtsies==0.3.4
15-
Django==3.1.13
16+
Django==3.1.14
1617
django-apscheduler==0.5.1
1718
django-cors-headers==3.7.0
1819
django-filter==2.4.0
1920
django-json-widget==1.1.1
21+
django-parler==2.3
2022
django-solo==1.1.5
2123
django-sortedm2m==3.0.2
2224
-e git+https://github.com/svleeuwen/sortedm2m-filter-horizontal-widget.git@4ce03f6b7e6022014838afb4a8aa4691fceb9e94#egg=django_sortedm2m_filter_horizontal_widget

django/gsmap/admin.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
from django.http import HttpResponse
1818
import csv
1919
from django.utils.timezone import localtime
20-
import zoneinfo
20+
try:
21+
import zoneinfo
22+
except ImportError:
23+
from backports import zoneinfo
2124

2225

2326
class MunicipalityAdmin(admin.OSMGeoAdmin):

docker-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
hostname: vue
1111

1212
django:
13-
image: smartuse/gemeindescan-webui-django:3.1.12b
13+
image: smartuse/gemeindescan-webui-django:3.2.0
1414
hostname: django
1515

1616
www:

0 commit comments

Comments
 (0)