From 4d463537dde1e7cbf09ad4a1d7d491fbf2e86900 Mon Sep 17 00:00:00 2001 From: AbdelatifAitBara Date: Wed, 8 May 2024 03:59:42 +0200 Subject: [PATCH 1/3] :bug: Fix docker-compose version Fixes #4545 --- docker/images/docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/images/docker-compose.yaml b/docker/images/docker-compose.yaml index 7e85d178c..fd7cd976f 100644 --- a/docker/images/docker-compose.yaml +++ b/docker/images/docker-compose.yaml @@ -1,5 +1,5 @@ --- -version: "3.5" +version: "3.8" networks: penpot: From b357cf505d6ac96654a621904271dcc824c6e704 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 23 May 2024 14:42:28 +0200 Subject: [PATCH 2/3] :bug: Fix incorrect password encoding on create-profile manage command --- CHANGES.md | 4 ++++ backend/src/app/srepl/cli.clj | 14 ++++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 78f96ee26..59984803c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,6 +5,8 @@ ### :bug: Bugs fixed - Fix chrome scrollbar styling [Taiga Issue #7852](https://tree.taiga.io/project/penpot/issue/7852) +- Fix incorrect password encoding on create-profile manage scritp [Github #3651](https://github.com/penpot/penpot/issues/3651) + ## 2.0.2 @@ -18,12 +20,14 @@ - Fix color palette sorting [Taiga Issue #7458](https://tree.taiga.io/project/penpot/issue/7458) - Fix style scoping problem with imported SVG [Taiga #7671](https://tree.taiga.io/project/penpot/issue/7671) + ## 2.0.1 ### :bug: Bugs fixed - Fix different issues related to components v2 migrations including [Github #4443](https://github.com/penpot/penpot/issues/4443) + ## 2.0.0 - I Just Can't Get Enough ### :rocket: Epics and highlights diff --git a/backend/src/app/srepl/cli.clj b/backend/src/app/srepl/cli.clj index d461ef14c..0cfa43ed2 100644 --- a/backend/src/app/srepl/cli.clj +++ b/backend/src/app/srepl/cli.clj @@ -12,6 +12,7 @@ [app.common.uuid :as uuid] [app.db :as db] [app.rpc.commands.auth :as cmd.auth] + [app.rpc.commands.profile :as cmd.profile] [app.util.json :as json] [app.util.time :as dt] [cuerdas.core :as str])) @@ -37,12 +38,13 @@ :or {is-active true}}] (when-let [system (get-current-system)] (db/with-atomic [conn (:app.db/pool system)] - (let [params {:id (uuid/next) - :email email - :fullname fullname - :is-active is-active - :password password - :props {}}] + (let [password (cmd.profile/derive-password system password) + params {:id (uuid/next) + :email email + :fullname fullname + :is-active is-active + :password password + :props {}}] (->> (cmd.auth/create-profile! conn params) (cmd.auth/create-profile-rels! conn)))))) From 9194e257b6f51c4764d94813bfdce1ee5b294e2e Mon Sep 17 00:00:00 2001 From: Eva Marco Date: Mon, 20 May 2024 11:28:52 +0200 Subject: [PATCH 3/3] :bug: Fix project name ellipsis --- frontend/src/app/main/ui/dashboard/projects.scss | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/app/main/ui/dashboard/projects.scss b/frontend/src/app/main/ui/dashboard/projects.scss index 680b9ef32..62b1e1adb 100644 --- a/frontend/src/app/main/ui/dashboard/projects.scss +++ b/frontend/src/app/main/ui/dashboard/projects.scss @@ -85,8 +85,6 @@ color: var(--title-foreground-color-hover); cursor: pointer; height: $s-16; - display: inline-flex; - align-items: center; } .info-wrapper {