Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. Announcements
  3. What's coming in 7.7

What's coming in 7.7

Scheduled Pinned Locked Moved Announcements
23 Posts 8 Posters 3.3k Views 8 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • nebulonN Offline
    nebulonN Offline
    nebulon
    Staff
    wrote on last edited by
    #11

    It is taking much longer than expected, as immich now needs superuser database permissions for certain sql commands, which are not granted on Cloudron for security and database isolation issues, so will see how far I can get for 7.7.

    1 Reply Last reply
    3
    • nebulonN Offline
      nebulonN Offline
      nebulon
      Staff
      wrote on last edited by
      #12

      To update here, for immich we are still trying to work out this issue: https://github.com/immich-app/immich/issues/7626

      1 Reply Last reply
      2
      • girishG girish

        @jdaviescoates yes, it's specifically for the SFU!

        sponchS Offline
        sponchS Offline
        sponch
        wrote on last edited by
        #13

        @girish very cool! Waiting for release 🙂

        1 Reply Last reply
        1
        • sponchS Offline
          sponchS Offline
          sponch
          wrote on last edited by sponch
          #14

          Update is available 🙂 Now waiting for MiroTalk SFU 🙂

          S 1 Reply Last reply
          1
          • sponchS sponch

            Update is available 🙂 Now waiting for MiroTalk SFU 🙂

            S Offline
            S Offline
            shrey
            wrote on last edited by shrey
            #15

            Seems to be an unstable release still.

            e85ebcd9-355e-408b-8273-734dca046db5-image.png


            I guess the stable release will take some more time.

            1 Reply Last reply
            1
            • P Offline
              P Offline
              p44
              translator
              wrote on last edited by p44
              #16

              @girish about this point: "oidc/ldap: fix display name parsing to send anything after first name as the last name" ... I think logic has to be analyzed again... because is not working as described. Eg. "Willem van Oranje", after this update, becomes "Willem Oranje"... ("Van" is lost)

              1 Reply Last reply
              2
              • girishG Offline
                girishG Offline
                girish
                Staff
                wrote on last edited by
                #17

                @p44 yeah ,I think for that to be done correctly we have to take first name/last name as proper separate fields. Current logic is too simplistic.

                imc67I 1 Reply Last reply
                1
                • girishG girish

                  @p44 yeah ,I think for that to be done correctly we have to take first name/last name as proper separate fields. Current logic is too simplistic.

                  imc67I Offline
                  imc67I Offline
                  imc67
                  translator
                  wrote on last edited by
                  #18

                  @girish this was noticed and discussed more than a year ago … https://forum.cloudron.io/topic/8345/cloudron-ldap-middle-name-not-correctly-propagated

                  1 Reply Last reply
                  1
                  • girishG Offline
                    girishG Offline
                    girish
                    Staff
                    wrote on last edited by
                    #19

                    @imc67 @p44 so, in 7.7 atleast, we did something like this:

                    +            const names = [
                    +                { in: 'James', out: { firstName: 'James', lastName: '', middleName: '' } },
                    +                { in: 'James Anderson', out: { firstName: 'James', lastName: 'Anderson', middleName: '' } },
                    +                { in: 'James Philip Anderson', out: { firstName: 'James', lastName: 'Philip Anderson', middleName: '' } },
                    +            ];
                    

                    So, Willem van Oranje would be parsed as firstName Willem and lastName van Oranje. While not correct , atleast all the parts of the name are delivered to the app. Pre 7.7, parts of the name were dropped. I am wondering why app uses middlename now. What app are you testing with ?

                    P 1 Reply Last reply
                    2
                    • girishG Offline
                      girishG Offline
                      girish
                      Staff
                      wrote on last edited by
                      #20

                      In Grafana, my names shows correctly, for example:

                      image.png

                      Note that it could also be that the app in question is not updating the name on OIDC re-login.

                      imc67I 1 Reply Last reply
                      1
                      • girishG girish

                        In Grafana, my names shows correctly, for example:

                        image.png

                        Note that it could also be that the app in question is not updating the name on OIDC re-login.

                        imc67I Offline
                        imc67I Offline
                        imc67
                        translator
                        wrote on last edited by
                        #21

                        @girish I hadn’t checked but indeed it works with a new Cloudron user in Wordpress!

                        Thanks!!

                        1 Reply Last reply
                        2
                        • imc67I Offline
                          imc67I Offline
                          imc67
                          translator
                          wrote on last edited by
                          #22

                          Only persons with a double first name it becomes:

                          Marie Therese van der Steen tot Oberndorff

                          First name: Marie
                          Lastname: Therese van der Steen tot Oberndorff

                          1 Reply Last reply
                          2
                          • girishG girish

                            @imc67 @p44 so, in 7.7 atleast, we did something like this:

                            +            const names = [
                            +                { in: 'James', out: { firstName: 'James', lastName: '', middleName: '' } },
                            +                { in: 'James Anderson', out: { firstName: 'James', lastName: 'Anderson', middleName: '' } },
                            +                { in: 'James Philip Anderson', out: { firstName: 'James', lastName: 'Philip Anderson', middleName: '' } },
                            +            ];
                            

                            So, Willem van Oranje would be parsed as firstName Willem and lastName van Oranje. While not correct , atleast all the parts of the name are delivered to the app. Pre 7.7, parts of the name were dropped. I am wondering why app uses middlename now. What app are you testing with ?

                            P Offline
                            P Offline
                            p44
                            translator
                            wrote on last edited by
                            #23

                            @girish I confirm is working fine. Instance where I tested it was not updated to latest release. Thank's a lot

                            1 Reply Last reply
                            1
                            • girishG girish unpinned this topic on
                            • girishG girish locked this topic on
                            Reply
                            • Reply as topic
                            Log in to reply
                            • Oldest to Newest
                            • Newest to Oldest
                            • Most Votes


                            • Login

                            • Don't have an account? Register

                            • Login or register to search.
                            • First post
                              Last post
                            0
                            • Categories
                            • Recent
                            • Tags
                            • Popular
                            • Bookmarks
                            • Search