]> Untitled Git - lemmy.git/blobdiff - RELEASES.md
Adding 0.17.1 Release notes.
[lemmy.git] / RELEASES.md
index bca0f01b80a73df2e56823dea333b19f7e90b6d8..474bf437011501ed75d8c3219a4a39f63cc182b7 100644 (file)
@@ -1,3 +1,23 @@
+# Lemmy v0.17.1 Release (2023-02-03)
+
+## Bugfixes
+
+### Lemmy
+
+- Fixing admin application email subject. Fixes [#2688](https://github.com/LemmyNet/lemmy/issues/2688) ([#2695](https://github.com/LemmyNet/lemmy/issues/2695))
+- Fixing person block views. Fixes [#2693](https://github.com/LemmyNet/lemmy/issues/2693) ([#2694](https://github.com/LemmyNet/lemmy/issues/2694))
+- Fixing GetPosts active sort index. Fixes [#2683](https://github.com/LemmyNet/lemmy/issues/2683) ([#2684](https://github.com/LemmyNet/lemmy/issues/2684))
+- Publish without verify ([#2681](https://github.com/LemmyNet/lemmy/issues/2681))
+- Fix paths in release script, update crate versions ([#2680](https://github.com/LemmyNet/lemmy/issues/2680))
+
+### Lemmy-UI
+
+- Fix comment box closing. Fixes [#904](https://github.com/LemmyNet/lemmy-ui/issues/904) ([#914](https://github.com/LemmyNet/lemmy-ui/issues/914))
+- Fix showing crosspost dupes. Fixes [#900](https://github.com/LemmyNet/lemmy-ui/issues/900) ([#912](https://github.com/LemmyNet/lemmy-ui/issues/912))
+- Fix live updating postres edit. Fixes [#908](https://github.com/LemmyNet/lemmy-ui/issues/908) ([#911](https://github.com/LemmyNet/lemmy-ui/issues/911))
+- Removing extra themes. Fixes [#905](https://github.com/LemmyNet/lemmy-ui/issues/905) ([#910](https://github.com/LemmyNet/lemmy-ui/issues/910))
+- Fixing post setState error. Fixes [#902](https://github.com/LemmyNet/lemmy-ui/issues/902) ([#903](https://github.com/LemmyNet/lemmy-ui/issues/903))
+
 # Lemmy v0.17.0 Release (2023-01-31)
 
 ## What is Lemmy?
@@ -55,8 +75,8 @@ This upgrade requires a newer version of postgres, which **must be done manually
 `cd` to your lemmy docker directory and run this helper script:
 
 ```
-wget https://raw.githubusercontent.com/LemmyNet/lemmy/main/scripts/postgres_12_to_15_upgrade.sh
-sh postgres_12_to_15_upgrade.sh
+sudo wget https://raw.githubusercontent.com/LemmyNet/lemmy/main/scripts/postgres_12_to_15_upgrade.sh
+sudo sh postgres_12_to_15_upgrade.sh
 ```
 
 This script saves a copy of your old database as `12_15.dump.sql`. **Do not delete this file until you've followed all the instructions below, and the upgrade is complete.**
@@ -70,7 +90,7 @@ Next, **manually edit** your [lemmy.hjson](https://github.com/LemmyNet/lemmy/blo
       # api_key: "API_KEY"
   }
   ```
-- The `rate_limit` block should be removed, as that is now in the database, and can be updated through the UI.
+- The `rate_limit`, `federation`, `captcha`, and `slur_filter` blocks should be removed, as they are now in the database, and can be updated through the UI.
 - The site setup has removed a few fields.
 - See the link above for every setting.
 
@@ -80,6 +100,13 @@ The `image` lines should look like:
 
 - `image: dessalines/lemmy:0.17.0` for lemmy
 - `image: dessalines/lemmy-ui:0.17.0` for lemmy-ui
+- The `lemmy-ui` environment variables have changed, and should now look like:
+  ```
+    environment:
+      - LEMMY_UI_LEMMY_INTERNAL_HOST=lemmy:8536
+      - LEMMY_UI_LEMMY_EXTERNAL_HOST={{ domain }}
+      - LEMMY_UI_HTTPS=true
+  ```
 - You can always find the latest version [here](https://github.com/LemmyNet/lemmy-ansible/blob/main/VERSION).
 - Ensure that postgres is `postgres:15-alpine` (the upgrade script above should have already set this correctly)