Skip to content
  • antoine-de's avatar
    Release 2.6.0 · b81f78ae
    antoine-de authored
    ️ Important Note: This version add several quite long migrations. After the migration are run, you should run as a database administrator:
    
    ```sql
    VACUUM FULL pictures, sequences;
    ```
    
    or use a tool like [pg_repack](https://github.com/reorg/pg_repack) to remove dead tuples and save lot's of space.
    
    Note that the vacuum will hold an exclusive lock whereas pg_repack will not.
    
    ️ Important Note ️ : This new versions uses postgres [`session_replication_role`](https://www.postgresql.org/docs/current/runtime-config-client.html) for non blocking migrations. This means that the users used to connect to the database must either have superuser privilege, or if postgres version is >= 15, you can grant the permission to the user with:
    
    ```psql
    GRANT SET ON PARAMETER session_replication_role TO you_user;
    ```
    
    ### Added
    
    - API routes returning items embed original datetime with timezone information in a new property `datetimetz`.
    - New routes offering [MapLibre Style JSON files](https://map...
    b81f78ae
To find the state of this project's repository at the time of any of these versions, check out the tags.