Skip to content

Commit

Permalink
Merge branch '6.2' into 6.3
Browse files Browse the repository at this point in the history
* 6.2:
  fix merge
  [DependencyInjection] Filter "container.excluded" services when using `findTaggedServiceIds()`
  [Cache] Removing null coalescing assignment operator on 5.4
  [Console] Add missing ZSH mention in DumpCompletionCommand help
  [Cache] Fix storing binary keys when using pgsql
  [FrameworkBundle] Add missing monolog channel tag for messenger services
  update documentation for telegram bridge notifier
  [FrameworkBundle] Improve documentation about translation:extract --sort option
  [VarDumper] Disable links for IntelliJ platform
  [Notifier] Add bridge documentation
  [HttpClient] Add hint about `timeout` and `max_duration` options
  [HttpFoundation] Use separate caches for IpUtils checkIp4 and checkIp6
  [FrameworkBundle] Fix wiring session.handler when handler_id is null
  [FrameworkBundle] Workflow - Fix LogicException about a wrong configuration of "enabled" node
  • Loading branch information
nicolas-grekas committed Mar 30, 2023
2 parents 7113186 + d37ab67 commit c007934
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dumper/CliDumper.php
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,8 @@ protected function style(string $style, string $value, array $attr = []): string
$this->colors ??= $this->supportsColors();

$this->handlesHrefGracefully ??= 'JetBrains-JediTerm' !== getenv('TERMINAL_EMULATOR')
&& (!getenv('KONSOLE_VERSION') || (int) getenv('KONSOLE_VERSION') > 201100);
&& (!getenv('KONSOLE_VERSION') || (int) getenv('KONSOLE_VERSION') > 201100)
&& !isset($_SERVER['IDEA_INITIAL_DIRECTORY']);

if (isset($attr['ellipsis'], $attr['ellipsis-type'])) {
$prefix = substr($value, 0, -$attr['ellipsis']);
Expand Down

0 comments on commit c007934

Please sign in to comment.