-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into pv-2023-11-react-maps
- Loading branch information
Showing
18 changed files
with
167 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,13 +22,13 @@ jobs: | |
--health-timeout 5s | ||
--health-retries 5 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.8' | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18.x' | ||
- name: Setup Postgres | ||
|
@@ -39,7 +39,7 @@ jobs: | |
psql -c 'create database django;' -U postgres | ||
psql -c 'create database django_test;' -U postgres | ||
- name: Cache node modules | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
env: | ||
cache-name: cache-node-modules | ||
with: | ||
|
@@ -50,7 +50,7 @@ jobs: | |
${{ runner.os }}-build- | ||
${{ runner.os }}- | ||
- name: Cache pip packages | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
env: | ||
cache-name: cache-pip-packages | ||
with: | ||
|
@@ -83,8 +83,3 @@ jobs: | |
- name: Run Frontend Tests | ||
run: | | ||
npm test | ||
- name: Frontend Coverage | ||
uses: artiomtr/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
if: github.event_name == 'pull_request' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
make lint-quick |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## Fixed | ||
|
||
- delete logic moved to form_valid method after django upgrade in dashboard component mixin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
### Fixed | ||
|
||
- duplicated image path when a project gets duplicated in the dashboard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
### Added | ||
|
||
- retreival of image name to save as new image instance when project is duplicated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
### Changed | ||
|
||
- **Breaking Change** Deprecated | ||
dashboard.mixins.DashboardComponentDeleteSignalMixin, | ||
for forms / POST requests use | ||
dashboard.mixins.DashboardComponentFormSignalMixin instead. | ||
DashboardComponentDeleteSignalMixin will be removed in the next version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- fix an error when opening a module which is marked as draft in a multimodule | ||
project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
beautifulsoup4==4.12.2 | ||
bleach[css]==6.0.0 | ||
Django==4.2 | ||
django-allauth==0.55.0 | ||
beautifulsoup4==4.12.3 | ||
bleach[css]==6.1.0 | ||
Django==4.2.10 | ||
django-allauth==0.61.1 | ||
git+https://github.com/liqd/django-autoslug.git@liqd2212#egg=django-autoslug | ||
https://github.com/liqd/django-ckeditor-5/releases/download/v0.2.11-liqd/django_ckeditor_5-0.2.11-py3-none-any.whl | ||
django-ckeditor==6.6.1 | ||
django-ckeditor==6.7.1 | ||
django-enumfield==3.1 | ||
django-filter==22.1 | ||
django-widget-tweaks==1.4.12 | ||
django-filter==23.5 | ||
django-widget-tweaks==1.5.0 | ||
djangorestframework==3.14.0 | ||
easy-thumbnails[svg]==2.8.5 | ||
html5lib==1.1 | ||
jsonfield==3.1.0 | ||
python-dateutil==2.8.2 | ||
python-magic==0.4.27 | ||
rules==3.3 | ||
XlsxWriter==3.1.2 | ||
celery==5.3.1 | ||
XlsxWriter==3.1.9 | ||
celery==5.3.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
-r base.txt | ||
black==23.7.0 | ||
factory-boy==3.2.1 | ||
Faker==19.1.0 | ||
flake8==6.0.0 | ||
freezegun==1.2.2 | ||
isort==5.12.0 | ||
psycopg[binary]==3.1.12 | ||
pytest==7.4.0 | ||
black==24.2.0 | ||
factory-boy==3.3.0 | ||
Faker==23.1.0 | ||
flake8==7.0.0 | ||
freezegun==1.4.0 | ||
isort==5.13.2 | ||
psycopg[binary]==3.1.18 | ||
pytest==8.0.0 | ||
pytest-cov==4.1.0 | ||
pytest-django==4.5.2 | ||
pytest-factoryboy==2.5.1 | ||
pytest-django==4.8.0 | ||
pytest-factoryboy==2.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,4 @@ class Meta: | |
def project(obj, create, extracted, **kwargs): | ||
if obj.obj: | ||
obj.project = obj.obj.project | ||
obj.save() |
Oops, something went wrong.