diff --git a/CHANGES.md b/CHANGES.md index 8b59e887b..185f8f514 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,18 @@ +3.1.163-RC24 / 2025-05-19 +========================= + + * Implementa relatórios CSV, XLSX e JSON para Pauta de Sessão (#3744) + * feat: adiciona pydevd-pycharm para facilitar debug usando pycharm ide (#3717) + * Ajusta link do texto integral da Norma Jurídica nos formatos CSV, XLSX e JSON. (#3743) + * Força mudança de senha para senhas fracas + * Fix Chamado #643964 - Multiple definitions in dictionary at byte 0xc854c for key /Info + * Ajusta link do texto original da Matéria nos formatos CSV, XLSX e JSON. (#3742) + * fix: aplica um lazy loading no sortable do jquery ui pelo evento mouseenter. (#3737) + * fix: corrige condição para mostrar btn para TAs. + * fix: add migrate resultante do commit anterior + * fix: torna cep opcional no model CasaLegislativa + 3.1.163-RC23 / 2024-07-31 ========================= diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 7a009ab39..17c86d5a5 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -32,7 +32,7 @@ services: networks: - sapl-net sapl: - image: interlegis/sapl:3.1.163-RC23 + image: interlegis/sapl:3.1.163-RC24 # build: # context: ../ # dockerfile: ./docker/Dockerfile diff --git a/sapl/settings.py b/sapl/settings.py index 956cf3138..638e422b8 100644 --- a/sapl/settings.py +++ b/sapl/settings.py @@ -41,7 +41,7 @@ ALLOWED_HOSTS = ['*'] LOGIN_REDIRECT_URL = '/' LOGIN_URL = '/login/?next=' -SAPL_VERSION = '3.1.163-RC23' +SAPL_VERSION = '3.1.163-RC24' if DEBUG: EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' diff --git a/sapl/templates/base.html b/sapl/templates/base.html index abbfeea4a..054f76a96 100644 --- a/sapl/templates/base.html +++ b/sapl/templates/base.html @@ -192,7 +192,7 @@ Desenvolvido pelo Interlegis em software livre e aberto. - Release: 3.1.163-RC23 + Release: 3.1.163-RC24

diff --git a/setup.py b/setup.py index a664d49f2..d32fbb018 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ install_requires = [ ] setup( name='interlegis-sapl', - version='3.1.163-RC23', + version='3.1.163-RC24', packages=find_packages(), include_package_data=True, license='GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007',