Skip to content

Commit

Permalink
Merge branch '6.4' into 7.1
Browse files Browse the repository at this point in the history
* 6.4: (23 commits)
  fix tests using Twig 3.12
  skip tests requiring the intl extension if it's not installed
  🐛 throw ParseException on invalid date
  fix permitted data type of the default choice
  [ExpressionLanguage] Improve test coverage
  Fix invalid phpdoc in ContainerBuilder
  [HttpKernel] [WebProfileBundle] Fix Routing panel for URLs with a colon
  [Form] NumberType: Fix parsing of numbers in exponential notation with negative exponent
  [Security] consistent singular/plural translation in Dutch
  reset the validation context after validating nested constraints
  do not duplicate directory separators
  fix handling empty data in ValueToDuplicatesTransformer
  fix compatibility with redis extension 6.0.3+
  synchronize unsupported scheme tests
  [String] Fixed Quorum plural, that was inflected to be only "Quora" and never "Quorums"
  Fix symfony/kaz-info-teh-notifier package
  [Validator] review latvian translations
  [Validator] Add Dutch translation for `WordCount` constraint
  allow more unicode characters in URL paths
  [String][EnglishInflector] Fix words ending in 'le', e.g., articles
  ...
  • Loading branch information
derrabus committed Aug 12, 2024
2 parents 17079e5 + 7aa8efe commit 9f40de7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Exception/UnsupportedSchemeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class UnsupportedSchemeException extends LogicException
],
'kaz-info-teh' => [
'class' => Bridge\KazInfoTeh\KazInfoTehTransportFactory::class,
'package' => 'symfony/symfony/kaz-info-teh-notifier',
'package' => 'symfony/kaz-info-teh-notifier',
],
'lightsms' => [
'class' => Bridge\LightSms\LightSmsTransportFactory::class,
Expand Down
10 changes: 10 additions & 0 deletions Tests/Exception/UnsupportedSchemeExceptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,21 +126,26 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
yield ['bandwidth', 'symfony/bandwidth-notifier'];
yield ['bluesky', 'symfony/bluesky-notifier'];
yield ['brevo', 'symfony/brevo-notifier'];
yield ['chatwork', 'symfony/chatwork-notifier'];
yield ['clickatell', 'symfony/clickatell-notifier'];
yield ['clicksend', 'symfony/click-send-notifier'];
yield ['contact-everyone', 'symfony/contact-everyone-notifier'];
yield ['discord', 'symfony/discord-notifier'];
yield ['engagespot', 'symfony/engagespot-notifier'];
yield ['esendex', 'symfony/esendex-notifier'];
yield ['expo', 'symfony/expo-notifier'];
yield ['fakechat', 'symfony/fake-chat-notifier'];
yield ['fakesms', 'symfony/fake-sms-notifier'];
yield ['firebase', 'symfony/firebase-notifier'];
yield ['forty-six-elks', 'symfony/forty-six-elks-notifier'];
yield ['freemobile', 'symfony/free-mobile-notifier'];
yield ['gatewayapi', 'symfony/gateway-api-notifier'];
yield ['gitter', 'symfony/gitter-notifier'];
yield ['googlechat', 'symfony/google-chat-notifier'];
yield ['infobip', 'symfony/infobip-notifier'];
yield ['iqsms', 'symfony/iqsms-notifier'];
yield ['isendpro', 'symfony/isendpro-notifier'];
yield ['kaz-info-teh', 'symfony/kaz-info-teh-notifier'];
yield ['lightsms', 'symfony/light-sms-notifier'];
yield ['linenotify', 'symfony/line-notify-notifier'];
yield ['linkedin', 'symfony/linked-in-notifier'];
Expand All @@ -157,8 +162,11 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
yield ['ntfy', 'symfony/ntfy-notifier'];
yield ['octopush', 'symfony/octopush-notifier'];
yield ['onesignal', 'symfony/one-signal-notifier'];
yield ['orange-sms', 'symfony/orange-sms-notifier'];
yield ['ovhcloud', 'symfony/ovh-cloud-notifier'];
yield ['pagerduty', 'symfony/pager-duty-notifier'];
yield ['plivo', 'symfony/plivo-notifier'];
yield ['pushover', 'symfony/pushover-notifier'];
yield ['redlink', 'symfony/redlink-notifier'];
yield ['ringcentral', 'symfony/ring-central-notifier'];
yield ['rocketchat', 'symfony/rocket-chat-notifier'];
Expand All @@ -181,6 +189,8 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
yield ['twilio', 'symfony/twilio-notifier'];
yield ['twitter', 'symfony/twitter-notifier'];
yield ['unifonic', 'symfony/unifonic-notifier'];
yield ['vonage', 'symfony/vonage-notifier'];
yield ['yunpian', 'symfony/yunpian-notifier'];
yield ['zendesk', 'symfony/zendesk-notifier'];
yield ['zulip', 'symfony/zulip-notifier'];
yield ['goip', 'symfony/go-ip-notifier'];
Expand Down

0 comments on commit 9f40de7

Please sign in to comment.