File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 1.3.3] - 08th April 2022
8
+ - Upgrade Geist UI to version 2.3.8
9
+ - Upgrade Go to version 1.18
10
+ - Utilize an external library for generating the SSH key
11
+ - Change the name of the key file from ` id_rsa ` to ` id_ed25519 ` as the Ed25519 algorithm is used for its creation
12
+
7
13
## [ 1.3.2] - 16th February 2022
8
14
- Upgrade Geist UI to version 2.2.5 ([ #19 ] ( https://github.com/LukWebsForge/TldrProgress/pull/19 ) )
9
15
- Left-alignment of the content
@@ -62,7 +68,8 @@ This is the first release. If you spot any bugs, please let us know.
62
68
- Configuration files for systemd
63
69
- This Changelog
64
70
65
- [ Unreleased ] : https://github.com/LukWebsForge/TldrProgress/compare/v1.3.2...HEAD
71
+ [ Unreleased ] : https://github.com/LukWebsForge/TldrProgress/compare/v1.3.3...HEAD
72
+ [ 1.3.3 ] : https://github.com/LukWebsForge/TldrProgress/releases/tag/v1.3.3
66
73
[ 1.3.2 ] : https://github.com/LukWebsForge/TldrProgress/releases/tag/v1.3.2
67
74
[ 1.3.1 ] : https://github.com/LukWebsForge/TldrProgress/releases/tag/v1.3.1
68
75
[ 1.3.0 ] : https://github.com/LukWebsForge/TldrProgress/releases/tag/v1.3.0
Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ You can configure certain details using environment variables.
44
44
You can either let the program generate a new SSH key pair, or you can use your own even if a password is required.
45
45
This application doesn't support HTTP authentication.
46
46
47
- The SSH key pair ` id_rsa ` and ` id_rsa .pub` in the folder ` keys ` will be used to access the tldr repository and
47
+ The SSH key pair ` id_ed25519 ` and ` id_ed25519 .pub` in the folder ` keys ` will be used to access the tldr repository and
48
48
publish changes to the deployment repository (` SITE_REMOTE_URL ` ).
49
49
If the key pair is missing, it'll be generated during the startup of the application.
50
- The generated public key ` id_rsa .pub` will be printed to the console.
50
+ The generated public key ` id_ed25519 .pub` will be printed to the console.
51
51
I recommend adding the public key as a deployment key (with writing access) for the deployment repository.
52
52
53
53
Each day at midnight (UTC) the program will execute the update.
@@ -94,7 +94,7 @@ systemctl enable tldrprogress.service
94
94
# Start the program now
95
95
sudo systemctl start tldrprogress.service
96
96
# Optional: View generated the public SSH key
97
- cat /home/tldr/progress/keys/id_rsa .pub
97
+ cat /home/tldr/progress/keys/id_ed25519 .pub
98
98
```
99
99
100
100
## Contributing
You can’t perform that action at this time.
0 commit comments