Skip to content

Commit

Permalink
Merge branch 'release-v0.8.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
SamR1 committed Aug 3, 2024
2 parents 2d09dcc + 04a45b3 commit 10e7ec8
Show file tree
Hide file tree
Showing 181 changed files with 5,892 additions and 5,953 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/.tests-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ jobs:
postgres:
image: postgres:15
env:
POSTGRES_DB: fittrackee_test
POSTGRES_USER: fittrackee
POSTGRES_PASSWORD: fittrackee
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
Expand All @@ -43,6 +41,8 @@ jobs:
pip install --quiet poetry
poetry config virtualenvs.create false
poetry install --no-interaction --quiet
- name: Create test databases
run: python db/create_ci_test_db.py
- name: Bandit
if: matrix.python-version == '3.11'
run: bandit -r fittrackee -c pyproject.toml
Expand All @@ -53,7 +53,7 @@ jobs:
if: matrix.python-version == '3.11'
run: mypy fittrackee
- name: Pytest
run: pytest fittrackee -p no:warnings --cov fittrackee --cov-report term-missing --maxfail=1
run: pytest fittrackee -n auto --maxprocesses=2 -p no:warnings --cov fittrackee --cov-report term-missing --maxfail=1

postgresql:
if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.fork }}
Expand All @@ -64,9 +64,7 @@ jobs:
postgres:
image: postgres:${{ matrix.psql-version }}
env:
POSTGRES_DB: fittrackee_test
POSTGRES_USER: fittrackee
POSTGRES_PASSWORD: fittrackee
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
Expand All @@ -83,8 +81,10 @@ jobs:
pip install --quiet poetry
poetry config virtualenvs.create false
poetry install --no-interaction --quiet
- name: Create test databases
run: python db/create_ci_test_db.py
- name: Pytest
run: pytest fittrackee -p no:warnings --cov fittrackee --cov-report term-missing --maxfail=1
run: pytest fittrackee -n auto --maxprocesses=2 -p no:warnings --cov fittrackee --cov-report term-missing --maxfail=1

end2end:
if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.fork }}
Expand Down
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
# Change log

## Version 0.8.6 (2024/08/03)

### Translations

* [PR#590](https://github.com/SamR1/FitTrackee/pull/590) - Translations update (Italian)
* [PR#591](https://github.com/SamR1/FitTrackee/pull/591) - Translations update (Galician)
* [PR#592](https://github.com/SamR1/FitTrackee/pull/592) - Translations update (German, Dutch)
* [PR#593](https://github.com/SamR1/FitTrackee/pull/593) - Translations update (German)
* [fb10602](https://github.com/SamR1/FitTrackee/commit/fb10602c47c426c432f528a1ecaf0b2dd4759e93) - update and fix translations

Translation status:
- Basque: 98%
- Czech: 73%
- Dutch: 100%
- English: 100%
- French: 100%
- Galician: 100%
- German: 99%
- Italian: 82%
- Norwegian Bokmål: 52%
- Polish: 92%
- Portuguese: 98%
- Spanish: 100%

### Misc

* [PR#595](https://github.com/SamR1/FitTrackee/pull/595) - CI - speed up tests


Thanks to the contributors:
- @ConfusedAlex
- @lukasitaly
- @simontb
- @slothje
- @xmgz


## Version 0.8.5 (2024/06/29)

### Features and enhancements
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.5
0.8.6
22 changes: 22 additions & 0 deletions db/create_ci_test_db.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import psycopg2
from psycopg2 import sql

conn = psycopg2.connect(
host="postgres", dbname="postgres", user="postgres", password="postgres"
)
conn.autocommit = True

with conn.cursor() as cur:
cur.execute(sql.SQL("""
CREATE USER fittrackee WITH PASSWORD 'fittrackee';
"""))
cur.execute(sql.SQL("""
CREATE SCHEMA fittrackee AUTHORIZATION fittrackee;
"""))
cur.execute(sql.SQL("""
CREATE DATABASE fittrackee_test_gw0 OWNER fittrackee;
"""))
cur.execute(sql.SQL("""
CREATE DATABASE fittrackee_test_gw1 OWNER fittrackee;
"""))
conn.close()
2 changes: 1 addition & 1 deletion docs/en/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: bc6bee0ff2e81966b5d74a9d8d4b9f6d
config: 7bd0b689fbb54df0fe56151b8685e222
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified docs/en/_images/fittrackee_screenshot-01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/en/_images/fittrackee_screenshot-02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/en/_images/fittrackee_screenshot-03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/en/_images/fittrackee_screenshot-04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/en/_images/fittrackee_screenshot-05.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/en/_images/fittrackee_screenshot-06.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/en/_images/fittrackee_screenshot-07.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/en/_images/fittrackee_screenshot-08.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/en/_images/fittrackee_screenshot-09.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/en/_images/fittrackee_screenshot-10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/en/_images/fittrackee_screenshot-11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions docs/en/_sources/changelog.md.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
# Change log

## Version 0.8.6 (2024/08/03)

### Translations

* [PR#590](https://github.com/SamR1/FitTrackee/pull/590) - Translations update (Italian)
* [PR#591](https://github.com/SamR1/FitTrackee/pull/591) - Translations update (Galician)
* [PR#592](https://github.com/SamR1/FitTrackee/pull/592) - Translations update (German, Dutch)
* [PR#593](https://github.com/SamR1/FitTrackee/pull/593) - Translations update (German)
* [fb10602](https://github.com/SamR1/FitTrackee/commit/fb10602c47c426c432f528a1ecaf0b2dd4759e93) - update and fix translations

Translation status:
- Basque: 98%
- Czech: 73%
- Dutch: 100%
- English: 100%
- French: 100%
- Galician: 100%
- German: 99%
- Italian: 82%
- Norwegian Bokmål: 52%
- Polish: 92%
- Portuguese: 98%
- Spanish: 100%

### Misc

* [PR#595](https://github.com/SamR1/FitTrackee/pull/595) - CI - speed up tests


Thanks to the contributors:
- @ConfusedAlex
- @lukasitaly
- @simontb
- @slothje
- @xmgz


## Version 0.8.5 (2024/06/29)

### Features and enhancements
Expand Down
16 changes: 8 additions & 8 deletions docs/en/_sources/installation.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -529,13 +529,13 @@ Production environment
.. warning::
| Note that FitTrackee is under heavy development, some features may be unstable.
- Download the last release (for now, it is the release v0.8.5):
- Download the last release (for now, it is the release v0.8.6):

.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.8.5.tar.gz
$ tar -xzf v0.8.5.tar.gz
$ mv FitTrackee-0.8.5 FitTrackee
$ wget https://github.com/SamR1/FitTrackee/archive/v0.8.6.tar.gz
$ tar -xzf v0.8.6.tar.gz
$ mv FitTrackee-0.8.6 FitTrackee
$ cd FitTrackee
- Create **.env** from example and update it
Expand Down Expand Up @@ -666,13 +666,13 @@ Prod environment

- Change to the directory where FitTrackee directory is located

- Download the last release (for now, it is the release v0.8.5) and overwrite existing files:
- Download the last release (for now, it is the release v0.8.6) and overwrite existing files:

.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.8.5.tar.gz
$ tar -xzf v0.8.5.tar.gz
$ cp -R FitTrackee-0.8.5/* FitTrackee/
$ wget https://github.com/SamR1/FitTrackee/archive/v0.8.6.tar.gz
$ tar -xzf v0.8.6.tar.gz
$ cp -R FitTrackee-0.8.6/* FitTrackee/
$ cd FitTrackee
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).
Expand Down
2 changes: 1 addition & 1 deletion docs/en/_static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '0.8.5',
VERSION: '0.8.6',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
Expand Down
2 changes: 1 addition & 1 deletion docs/en/_static/scripts/furo.js

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

2 changes: 1 addition & 1 deletion docs/en/_static/scripts/furo.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 10e7ec8

Please sign in to comment.