Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: symfony/phpunit-bridge
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.4.0
Choose a base ref
...
head repository: symfony/phpunit-bridge
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.4.3
Choose a head ref
  • 6 commits
  • 2 files changed
  • 3 contributors

Commits on Jan 2, 2022

  1. Bump license year

    fabpot committed Jan 2, 2022
    Copy the full SHA
    602ff3a View commit details
  2. Merge branch '4.4' into 5.3

    * 4.4:
      Bump license year
      [HttpClient] Turn negative timeout to a very long timeout
      Features goes to 6.x branch
      [Validator] throw when Constraint::_construct() has not been called
      Bump Symfony version to 4.4.37
      Update VERSION for 4.4.36
      Update CONTRIBUTORS for 4.4.36
      Update CHANGELOG for 4.4.36
      Allow symfony/runtime plugin
    fabpot committed Jan 2, 2022
    Copy the full SHA
    a192f85 View commit details
  3. Merge branch '5.3' into 5.4

    * 5.3:
      Bump license year
      Bump license year
      [HttpClient] Turn negative timeout to a very long timeout
      Features goes to 6.x branch
      fix lowest required PropertyInfo component release
      [Validator] throw when Constraint::_construct() has not been called
      Bump Symfony version to 5.3.14
      Update VERSION for 5.3.13
      Update CHANGELOG for 5.3.13
      Bump Symfony version to 4.4.37
      Update VERSION for 4.4.36
      Update CONTRIBUTORS for 4.4.36
      Update CHANGELOG for 4.4.36
      Allow symfony/runtime plugin
    fabpot committed Jan 2, 2022
    Copy the full SHA
    c724e4e View commit details

Commits on Jan 26, 2022

  1. Copy the full SHA
    c28ae0c View commit details
  2. Merge branch '4.4' into 5.3

    * 4.4:
      [Form] UrlType should not add protocol to emails
      Silence isatty warnings during tty detection
      Replaced full CoC text with link to documentation
    nicolas-grekas committed Jan 26, 2022
    Copy the full SHA
    eba9a14 View commit details
  3. Merge branch '5.3' into 5.4

    * 5.3:
      Fix Choice constraint with associative choices array
      [Form] UrlType should not add protocol to emails
      Silence isatty warnings during tty detection
      [Serializer] Fix AbstractObjectNormalizer not considering pseudo type false
      [Notifier] Fix encoding of messages with FreeMobileTransport
      [Cache] workaround PHP crash
      [Console] Fix PHP 8.1 deprecation in ChoiceQuestion
      [Notifier] smsapi-notifier - correct encoding
      Replaced full CoC text with link to documentation
      Making the parser stateless
      [Console] fix restoring stty mode on CTRL+C
      fix merge (bis)
      fix merge
      [Process] Avoid calling fclose on an already closed resource
      [GHA] test tty group
      [DI] Fix tests on PHP 7.1
    nicolas-grekas committed Jan 26, 2022
    Copy the full SHA
    216b07b View commit details
Showing with 3 additions and 3 deletions.
  1. +2 −2 DeprecationErrorHandler.php
  2. +1 −1 LICENSE
4 changes: 2 additions & 2 deletions DeprecationErrorHandler.php
Original file line number Diff line number Diff line change
@@ -408,11 +408,11 @@ private static function hasColorSupport()
}

if (\function_exists('stream_isatty')) {
return stream_isatty(\STDOUT);
return @stream_isatty(\STDOUT);
}

if (\function_exists('posix_isatty')) {
return posix_isatty(\STDOUT);
return @posix_isatty(\STDOUT);
}

$stat = fstat(\STDOUT);
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014-2021 Fabien Potencier
Copyright (c) 2014-2022 Fabien Potencier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal