From b250bb155975910916994ae79e2c3b627baddbda Mon Sep 17 00:00:00 2001 From: John Wilson Date: Tue, 28 Apr 2026 15:38:24 -0700 Subject: [PATCH 1/3] [FIX] auth_saml: fix typo that causes infinite recursion --- auth_saml/models/auth_saml_provider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth_saml/models/auth_saml_provider.py b/auth_saml/models/auth_saml_provider.py index 77262cf1d1..1f03ae9fce 100644 --- a/auth_saml/models/auth_saml_provider.py +++ b/auth_saml/models/auth_saml_provider.py @@ -255,7 +255,7 @@ def _get_config_for_provider(self, base_url: str = None) -> Saml2Config: # Retry after refresh metadata self.action_refresh_metadata_from_url() return self.with_context( - saml2_retry_after_refresh_metatata=1 + saml2_retry_after_refresh_metadata=1 )._get_config_for_provider(base_url) def _get_client_for_provider(self, base_url: str = None) -> Saml2Client: From e14ae607b6a14989cbca8e039437633d74ec39af Mon Sep 17 00:00:00 2001 From: mymage Date: Thu, 30 Apr 2026 08:27:12 +0000 Subject: [PATCH 2/3] Translated using Weblate (Italian) Currently translated at 100.0% (206 of 206 strings) Translation: server-auth-18.0/server-auth-18.0-vault Translate-URL: https://translation.odoo-community.org/projects/server-auth-18-0/server-auth-18-0-vault/it/ --- vault/i18n/it.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/vault/i18n/it.po b/vault/i18n/it.po index fbd8ca5c02..ce0776ad96 100644 --- a/vault/i18n/it.po +++ b/vault/i18n/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-03-12 12:05+0000\n" +"PO-Revision-Date: 2026-04-30 09:35+0000\n" "Last-Translator: mymage \n" "Language-Team: none\n" "Language: it\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17\n" +"X-Generator: Weblate 5.15.2\n" #. module: vault #. odoo-python @@ -239,7 +239,7 @@ msgstr "Impostazioni configurazione" #. odoo-javascript #: code:addons/vault/static/src/backend/controller.esm.js:0 msgid "Confirm" -msgstr "" +msgstr "Conferma" #. module: vault #. odoo-javascript @@ -342,7 +342,7 @@ msgstr "Cancella" #. odoo-javascript #: code:addons/vault/static/src/backend/controller.esm.js:0 msgid "Discard" -msgstr "" +msgstr "Abbandona" #. module: vault #: model:ir.model.fields,field_description:vault.field_res_users_key__display_name @@ -1012,7 +1012,7 @@ msgstr "Segreto da condividere:" #. odoo-javascript #: code:addons/vault/static/src/common/vault_utils_service.esm.js:0 msgid "Select at least one character set" -msgstr "" +msgstr "Selezionare l'ultimo set caratteri" #. module: vault #: model_terms:ir.ui.view,arch_db:vault.view_vault_send_wizard @@ -1155,7 +1155,7 @@ msgstr "URL" #. odoo-javascript #: code:addons/vault/static/src/backend/templates.xml:0 msgid "Use password" -msgstr "" +msgstr "Usa password" #. module: vault #: model:ir.model,name:vault.model_res_users @@ -1255,7 +1255,7 @@ msgstr "Condivisione deposito di sicurezza" #. odoo-javascript #: code:addons/vault/static/src/backend/fields/vault_export_file.esm.js:0 msgid "Vault export file" -msgstr "" +msgstr "File esportazione deposito di sicurezza" #. module: vault #: model:ir.model,name:vault.model_vault_inbox_log @@ -1361,7 +1361,7 @@ msgstr "a-z" #. odoo-javascript #: code:addons/vault/static/src/backend/controller.esm.js:0 msgid "of entry" -msgstr "" +msgstr "dell'ingresso" #, python-format #~ msgid "%s '%s' of entry '%s'" From 6c7d03e3077d3fc24a91d4518d1cd1be23dd289a Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 4 May 2026 10:31:17 +0000 Subject: [PATCH 3/3] [BOT] post-merge updates --- README.md | 2 +- auth_saml/README.rst | 2 +- auth_saml/__manifest__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 00293a2a77..3547bedbd3 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ addon | version | maintainers | summary [auth_oauth_multi_token](auth_oauth_multi_token/) | 18.0.2.0.0 | | Allow multiple connection with the same OAuth account [auth_oidc](auth_oidc/) | 18.0.1.1.0 | sbidoul | Allow users to login through OpenID Connect Provider [auth_oidc_environment](auth_oidc_environment/) | 18.0.1.0.0 | | This module allows to use server env for OIDC configuration -[auth_saml](auth_saml/) | 18.0.1.1.0 | vincent-hatakeyama | SAML2 Authentication +[auth_saml](auth_saml/) | 18.0.1.1.1 | vincent-hatakeyama | SAML2 Authentication [auth_session_timeout](auth_session_timeout/) | 18.0.1.0.0 | | This module disable all inactive sessions since a given delay [auth_signup_verify_email](auth_signup_verify_email/) | 18.0.1.0.0 | | Force uninvited users to use a good email for signup [auth_user_case_insensitive](auth_user_case_insensitive/) | 18.0.1.0.0 | | Makes the user login field case insensitive diff --git a/auth_saml/README.rst b/auth_saml/README.rst index b5da3b32ca..29bde776cf 100644 --- a/auth_saml/README.rst +++ b/auth_saml/README.rst @@ -11,7 +11,7 @@ SAML2 Authentication !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:3e5b3bb4044a255d619b8bda0861d58722133ab48366ffd2c2f88c8fbdcc0a5c + !! source digest: sha256:fd60534fa3f2c31b2c66fb852320cc25790d8dcf19c01d9f3150a07e037ae2a2 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/auth_saml/__manifest__.py b/auth_saml/__manifest__.py index a31681fc5c..cc8117cb90 100644 --- a/auth_saml/__manifest__.py +++ b/auth_saml/__manifest__.py @@ -4,7 +4,7 @@ { "name": "SAML2 Authentication", - "version": "18.0.1.1.0", + "version": "18.0.1.1.1", "category": "Tools", "author": "XCG Consulting, Odoo Community Association (OCA)", "maintainers": ["vincent-hatakeyama"],