diff --git a/CHANGES.md b/CHANGES.md index 2c103d882..3871796bb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,12 @@ +3.1.164-RC1 / 2025-08-05 +======================== + + * Adiciona botoes de impressao na pesquisa de doc adm + * Fix: conserta erro em historico proposicao + * Desabilita detalhe de Justificativa Ausência para acesso público + * Adiciona homepage do parlamentar a perfil público + 3.1.164-RC0 / 2025-07-09 ======================== diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 436f5e588..b1832a241 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -31,7 +31,7 @@ services: networks: - sapl-net sapl: - image: interlegis/sapl:3.1.164-RC0 + image: interlegis/sapl:3.1.164-RC1 # build: # context: ../ # dockerfile: ./docker/Dockerfile diff --git a/sapl/base/receivers.py b/sapl/base/receivers.py index 595323197..f0e5365c6 100644 --- a/sapl/base/receivers.py +++ b/sapl/base/receivers.py @@ -225,7 +225,7 @@ def signed_files_extraction_function(sender, instance, **kwargs): issuer = cert.native['tbs_certificate']['issuer'] oname = issuer.get('organization_name', '') - if oname == 'Gov-Br': + if oname in ('Gov-Br', '1Doc'): nome = subject['common_name'].split(':')[0] continue @@ -336,7 +336,7 @@ def signed_files_extraction_function(sender, instance, **kwargs): issuer = cert.native['tbs_certificate']['issuer'] oname = issuer.get('organization_name', '') - if oname == 'Gov-Br': + if oname in ('Gov-Br', '1Doc'): nome = subject['common_name'].split(':')[0] continue diff --git a/sapl/settings.py b/sapl/settings.py index 881691cb3..9b7fa3c55 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.164-RC0' +SAPL_VERSION = '3.1.164-RC1' if DEBUG: EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' diff --git a/sapl/templates/base.html b/sapl/templates/base.html index 060d92978..ec04b7742 100644 --- a/sapl/templates/base.html +++ b/sapl/templates/base.html @@ -200,7 +200,7 @@ Desenvolvido pelo Interlegis em software livre e aberto. - Release: 3.1.164-RC0 + Release: 3.1.164-RC1

diff --git a/setup.py b/setup.py index b84ce4f14..401ea19d1 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ install_requires = [ ] setup( name='interlegis-sapl', - version='3.1.164-RC0', + version='3.1.164-RC1', packages=find_packages(), include_package_data=True, license='GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007',