Browse Source

Merge branch '3.1.x' into votacoes_nominais

pull/3783/head
cristian-longhi 1 week ago
committed by GitHub
parent
commit
88dfed730a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 8
      CHANGES.md
  2. 2
      docker/docker-compose.yaml
  3. 4
      sapl/base/receivers.py
  4. 2
      sapl/settings.py
  5. 2
      sapl/templates/base.html
  6. 2
      setup.py

8
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
========================

2
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

4
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

2
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'

2
sapl/templates/base.html

@ -200,7 +200,7 @@
<small>
Desenvolvido pelo <a href="http://www.interlegis.leg.br/">Interlegis</a> em software livre e aberto.
</small>
<span>Release: 3.1.164-RC0</span>
<span>Release: 3.1.164-RC1</span>
</p>
</div>

2
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',

Loading…
Cancel
Save