Skip to content

Commit 669ca7c

Browse files
committed
Release 1.27.0
1 parent 816eeb6 commit 669ca7c

2 files changed

Lines changed: 27 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,34 @@
22

33
## unreleased
44

5-
### Improvements and Bug Fixes
5+
## [1.27.0] - 2022-07-15
66

7-
🔓 Encrypt API tokens
7+
### 🔓 Encryption of API tokens
88

9-
> During the database migration a randomly generated key will be used encrypt the tokens if no `ENCRYPTION_KEY` environment variable was provided.
10-
>
11-
> If the application is started without the presence of an `ENCRYPTION_KEY` (or if the key failed to decrypt the existing tokens), the UI will display a warning with further instructions.
9+
To ensure that the Tesla API tokens are stored securely, **an encryption key must be provided via the `ENCRYPTION_KEY` environment variable**.
10+
11+
If you use a `docker-compose.yml` file to run TeslaMate, add a line with the `ENCRYPTION_KEY` to the `environment` section or check out the updated installation guiddes on [docs.teslamate.org](https://docs.teslamate.org):
12+
13+
```yaml
14+
services:
15+
teslamate:
16+
image: teslamate/teslamate:latest
17+
environment:
18+
- ENCRYPTION_KEY=your_secret_encryption_key
19+
# ...
20+
```
21+
22+
If no `ENCRYPTION_KEY` environment variable is provided when running the database migrations a **randomly generated key will be set for you** to encrypt the tokens. In that case, a warning with further instructions will be displayed.
23+
24+
### Improvements and Bug Fixes
1225

1326
- Add `charge_current_request` and `charge_current_request_max` MQTT topics
1427
- Add detection of refresh Model X (2022) (#2455 - @cwanja)
1528
- Restart streaming API process if token expired
1629
- Do not start erlang's EPMD service
1730
- Store vehicle marketing names in the database
18-
- Bump Grafana to 8.5.4
31+
- Allow customizing the default geofence via the `DEFAULT_GEOFENCE` environment variable (#2564)
32+
- Bump Grafana to 8.5.6
1933

2034
#### Dashboards
2135

@@ -29,22 +43,27 @@
2943
- Charging Stats: Update Charging Stats panel styling (#2481 - @cwanja)
3044
- Drive Details: Add elevation summary (#2449 - @coreGreenberet)
3145
- Drive Details: Record the tire pressure which was made available by Tesla in the 2022.4 SW release (#2706 - @NirKli)
46+
- Drive Details: Set elevation units on axis
3247
- Drive Stats: Optimize query to estimate mileage calculation (#2464 - @coreGreenberet )
3348
- Locations: Let the gauge scale up to the maximum value (#2647 - @DrMichael)
3449
- States: Update States top row panels height (#2487 - @cwanja)
3550
- Timeline: Fix links (#2601 - @DrMichael))
3651
- Trip: Render Trip piechart legend (#2473 - @cwanja)
52+
- Migrate dashboards to the new timeseries panels
53+
- Change unit of boolean fields
3754

3855
#### Translations
3956

4057
- Update Chinse translation (#2479 - @AemonCao)
58+
- Add missing Swedish translation (#2731 - @tobiasehlert)
4159

4260
#### Documentation
4361

4462
- Add ProxyPreserveHost On to the Grafana entries in Apache2 config (#2471 - @DrMichael)
4563
- Node-RED: Fix typo (#2410 - @baylanger)
4664
- Update to projects page (TeslaMate-ABRP) (#2518 - @fetzu)
4765
- Update HomeAssistant Integration examples for HA 2022.6 (#2704 - @star114)
66+
- HomeAssistant Integration: enhance km to mi conversion / add timestamp class to charge time (#2735 - @dcod3d)
4867
- Add FAQ around Docker timestamp logs (#2655 - @cwanja)
4968
- Add HomeAssistant notification example (#2712 - @brombomb)
5069

@@ -1546,6 +1565,7 @@ New users need to sign in via the web interface.
15461565

15471566
## [1.0.0] - 2019-07-25
15481567

1568+
[1.27.0]: https://github.com/adriankumpf/teslamate/compare/v1.26.1...v1.27.0
15491569
[1.26.1]: https://github.com/adriankumpf/teslamate/compare/v1.26.0...v1.26.1
15501570
[1.26.0]: https://github.com/adriankumpf/teslamate/compare/v1.25.2...v1.26.0
15511571
[1.25.2]: https://github.com/adriankumpf/teslamate/compare/v1.25.1...v1.25.2

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.27.0-dev
1+
1.27.0

0 commit comments

Comments
 (0)