From a4fd3f8885b1bce0ea51605ece75bdb7532c0b48 Mon Sep 17 00:00:00 2001 From: Thomas Picquet Date: Thu, 8 Oct 2020 17:00:49 -0400 Subject: [PATCH] auth_type confguration --- CHANGELOG-6.0.md | 1 + src/DependencyInjection/Configuration.php | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG-6.0.md b/CHANGELOG-6.0.md index 82e059b2c..5608d6d6c 100644 --- a/CHANGELOG-6.0.md +++ b/CHANGELOG-6.0.md @@ -10,6 +10,7 @@ in 6.0 versions. * **[BC break]** Marked the `fos_elastica.client` alias as private. * **[BC break]** Marked the `fos_elastica.client_prototype` service as private. * **[BC break]** Marked the `fos_elastica.index_template_prototype` service as private. +* Added `auth_type` client parameter [Elastica#1790](https://github.com/ruflin/Elastica/pull/1790). ### 6.0.0-BETA3 (2020-09-28) diff --git a/src/DependencyInjection/Configuration.php b/src/DependencyInjection/Configuration.php index 76fa5ef62..405e25fa3 100644 --- a/src/DependencyInjection/Configuration.php +++ b/src/DependencyInjection/Configuration.php @@ -359,6 +359,7 @@ private function addClientsSection(ArrayNodeDefinition $rootNode) ->scalarNode('host')->end() ->scalarNode('port')->end() ->scalarNode('proxy')->end() + ->scalarNode('auth_type')->end() ->arrayNode('http_error_codes') ->beforeNormalization() ->ifTrue(function ($v) { return !\is_array($v); })