Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the dependencies group with 7 updates #30

Merged
merged 1 commit into from
Jun 3, 2024

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 1, 2024

Bumps the dependencies group with 7 updates:

Package From To
google/cloud-firestore 1.43.2 1.43.3
google/cloud-pubsub 2.1.2 2.2.0
symfony/console 7.0.7 7.1.0
symfony/dotenv 7.0.7 7.1.0
symfony/framework-bundle 7.0.7 7.1.0
symfony/runtime 7.0.7 7.1.0
symfony/yaml 7.0.7 7.1.0

Updates google/cloud-firestore from 1.43.2 to 1.43.3

Release notes

Sourced from google/cloud-firestore's releases.

google/cloud-firestore v1.43.3

Miscellaneous Chores

Commits

Updates google/cloud-pubsub from 2.1.2 to 2.2.0

Release notes

Sourced from google/cloud-pubsub's releases.

google/cloud-pubsub v2.2.0

Features

  • Add service_account_email for export subscriptions (#7353) (f86b038)
Commits

Updates symfony/console from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/console's releases.

v7.1.0

Changelog (symfony/console@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/console@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/console@v7.0.7...v7.1.0-BETA1)

Changelog

Sourced from symfony/console's changelog.

CHANGELOG

7.1

  • Add ArgvInput::getRawTokens()

7.0

  • Add method __toString() to InputInterface
  • Remove Command::$defaultName and Command::$defaultDescription, use the AsCommand attribute instead
  • Require explicit argument when calling *Command::setApplication(), *FormatterStyle::setForeground/setBackground(), Helper::setHelpSet(), Input*::setDefault() and Question::setAutocompleterCallback/setValidator()
  • Remove StringInput::REGEX_STRING

6.4

  • Add SignalMap to map signal value to its name
  • Multi-line text in vertical tables is aligned properly
  • The application can also catch errors with Application::setCatchErrors(true)
  • Add RunCommandMessage and RunCommandMessageHandler
  • Dispatch ConsoleTerminateEvent after an exit on signal handling and add ConsoleTerminateEvent::getInterruptingSignal()

6.3

  • Add support for choosing exit code while handling signal, or to not exit at all
  • Add ProgressBar::setPlaceholderFormatter to set a placeholder attached to a instance, instead of being global.
  • Add ReStructuredTextDescriptor

6.2

  • Improve truecolor terminal detection in some cases
  • Add support for 256 color terminals (conversion from Ansi24 to Ansi8 if terminal is capable of it)
  • Deprecate calling *Command::setApplication(), *FormatterStyle::setForeground/setBackground(), Helper::setHelpSet(), Input*::setDefault(), Question::setAutocompleterCallback/setValidator()without any arguments
  • Change the signature of OutputFormatterStyleInterface::setForeground/setBackground() to setForeground/setBackground(?string)
  • Change the signature of HelperInterface::setHelperSet() to setHelperSet(?HelperSet)

6.1

  • Add support to display table vertically when calling setVertical()
  • Add method __toString() to InputInterface
  • Added OutputWrapper to prevent truncated URL in SymfonyStyle::createBlock.
  • Deprecate Command::$defaultName and Command::$defaultDescription, use the AsCommand attribute instead
  • Add suggested values for arguments and options in input definition, for input completion
  • Add $resumeAt parameter to ProgressBar#start(), so that one can easily 'resume' progress on longer tasks, and still get accurate getEstimate() and getRemaining() results.

... (truncated)

Commits
  • 5bcde9e Merge branch '7.0' into 7.1
  • 5ccbfd6 Merge branch '6.4' into 7.0
  • bd3fee3 Merge branch '5.4' into 6.4
  • 96dfcec minor #54785 Remove calls to TestCase::iniSet() and calls to deprecated met...
  • 58b1658 Remove calls to getMockForAbstractClass()
  • b695405 Remove calls to TestCase::iniSet() and calls to deprecated methods of `Mock...
  • 965f054 Cleanup past sponsors
  • d159174 Merge branch '7.0' into 7.1
  • 1b84910 [Console] Handle SIGQUIT signal
  • ae16627 Merge branch '7.0' into 7.1
  • Additional commits viewable in compare view

Updates symfony/dotenv from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/dotenv's releases.

v7.1.0

Changelog (symfony/dotenv@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/dotenv@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/dotenv@v7.0.7...v7.1.0-BETA1)

Changelog

Sourced from symfony/dotenv's changelog.

CHANGELOG

7.1

  • Add SYMFONY_DOTENV_PATH variable with the path to the .env file loaded by Dotenv::loadEnv() or Dotenv::bootEnv()

6.2

  • Add a new filter argument to debug:dotenv command to filter variable names

5.4

  • Add dotenv:dump command to compile the contents of the .env files into a PHP-optimized file called .env.local.php
  • Add debug:dotenv command to list all dotenv files with variables and values
  • Add $overrideExistingVars on Dotenv::bootEnv() and Dotenv::loadEnv()

5.1.0

  • added Dotenv::bootEnv() to check for .env.local.php before calling Dotenv::loadEnv()
  • added Dotenv::setProdEnvs() and Dotenv::usePutenv()
  • made Dotenv's constructor accept $envKey and $debugKey arguments, to define the name of the env vars that configure the env name and debug settings
  • deprecated passing $usePutenv argument to Dotenv's constructor

5.0.0

  • using putenv() is disabled by default

4.3.0

  • deprecated use of putenv() by default. This feature will be opted-in with a constructor argument to Dotenv

4.2.0

  • added Dotenv::overload() and $overrideExistingVars as optional parameter of Dotenv::populate()
  • added Dotenv::loadEnv() to load a .env file and its corresponding .env.local, .env.$env and .env.$env.local files if they exist

3.3.0

  • [BC BREAK] Since v3.3.7, the latest Dotenv files override the previous ones. Real env vars are not affected and are not overridden.
  • added the component
Commits

Updates symfony/framework-bundle from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/framework-bundle's releases.

v7.1.0

Changelog (symfony/framework-bundle@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/framework-bundle@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/framework-bundle@v7.0.7...v7.1.0-BETA1)

Changelog

Sourced from symfony/framework-bundle's changelog.

CHANGELOG

7.1

  • Add CheckAliasValidityPass to lint:container command
  • Add private_ranges as a shortcut for private IP address ranges to the trusted_proxies option
  • Mark classes ConfigBuilderCacheWarmer, Router, SerializerCacheWarmer, TranslationsCacheWarmer, Translator and ValidatorCacheWarmer as final
  • Move the Router cache_dir to kernel.build_dir
  • Deprecate the router.cache_dir config option
  • Add rate_limiter tags to rate limiter services
  • Add secrets:reveal command
  • Add rate_limiter option to http_client.default_options and http_client.scoped_clients
  • Attach the workflow's configuration to the workflow tag
  • Add the allowed_recipients option for mailer to allow some users to receive emails even if recipients is defined.
  • Reset env vars when resetting the container

7.0

  • Remove command translation:update, use translation:extract instead
  • Make the http_method_override config option default to false
  • Remove AbstractController::renderForm(), use render() instead
  • Remove the Symfony\Component\Serializer\Normalizer\ObjectNormalizer and Symfony\Component\Serializer\Normalizer\PropertyNormalizer autowiring aliases, type-hint against Symfony\Component\Serializer\Normalizer\NormalizerInterface or implement NormalizerAwareInterface instead
  • Remove the Http\Client\HttpClient service, use Psr\Http\Client\ClientInterface instead
  • Remove the integration of Doctrine annotations, use native attributes instead
  • Remove EnableLoggerDebugModePass, use argument $debug of HttpKernel's Logger instead
  • Remove AddDebugLogProcessorPass::configureLogger(), use HttpKernel's DebugLoggerConfigurator instead
  • Make the framework.handle_all_throwables config option default to true
  • Make the framework.php_errors.log config option default to true
  • Make the framework.session.cookie_secure config option default to auto
  • Make the framework.session.cookie_samesite config option default to lax
  • Make the framework.session.handler_id default to null if save_path is not set and to session.handler.native_file otherwise
  • Make the framework.uid.default_uuid_version config option default to 7
  • Make the framework.uid.time_based_uuid_version config option default to 7
  • Make the framework.validation.email_validation_mode config option default to html5
  • Remove the framework.validation.enable_annotations config option, use framework.validation.enable_attributes instead
  • Remove the framework.serializer.enable_annotations config option, use framework.serializer.enable_attributes instead
  • Remove the routing.loader.annotation service, use the routing.loader.attribute service instead
  • Remove the routing.loader.annotation.directory service, use the routing.loader.attribute.directory service instead
  • Remove the routing.loader.annotation.file service, use the routing.loader.attribute.file service instead
  • Remove AnnotatedRouteControllerLoader, use AttributeRouteControllerLoader instead
  • Remove AddExpressionLanguageProvidersPass, use Symfony\Component\Routing\DependencyInjection\AddExpressionLanguageProvidersPass instead
  • Remove DataCollectorTranslatorPass, use Symfony\Component\Translation\DependencyInjection\DataCollectorTranslatorPass instead
  • Remove LoggingTranslatorPass, use Symfony\Component\Translation\DependencyInjection\LoggingTranslatorPass instead
  • Remove WorkflowGuardListenerPass, use Symfony\Component\Workflow\DependencyInjection\WorkflowGuardListenerPass instead

... (truncated)

Commits
  • e8cba21 [DependencyInjection] Reset env vars when resetting the container
  • 8c5cd75 Merge branch '7.0' into 7.1
  • 4b41ae8 Merge branch '6.4' into 7.0
  • 570f8d4 Merge branch '5.4' into 6.4
  • 65e7423 bug #54791 [FrameworkBundle] move wiring of the property info extractor to th...
  • 87b6700 move wiring of the property info extractor to the ObjectNormalizer
  • 9e62703 minor #54768 Remove calls to onConsecutiveCalls() (alexandre-daubois)
  • c19afb1 Remove calls to onConsecutiveCalls()
  • 2b445c5 Merge branch '7.0' into 7.1
  • 6eb810f Merge branch '6.4' into 7.0
  • Additional commits viewable in compare view

Updates symfony/runtime from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/runtime's releases.

v7.1.0

Changelog (symfony/runtime@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/runtime@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/runtime@v7.0.7...v7.1.0-BETA1)

  • no significant changes
Commits

Updates symfony/yaml from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/yaml's releases.

v7.1.0

Changelog (symfony/yaml@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/yaml@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/yaml@v7.0.7...v7.1.0-BETA1)

Changelog

Sourced from symfony/yaml's changelog.

CHANGELOG

7.1

  • Add support for getting all the enum cases with !php/enum Foo

7.0

  • Remove the !php/const: tag, use !php/const instead (without the colon)

6.3

  • Add support to dump int keys as strings by using the Yaml::DUMP_NUMERIC_KEY_AS_STRING flag

6.2

  • Add support for !php/enum and !php/enum *->value
  • Deprecate the !php/const: tag in key which will be replaced by the !php/const tag (without the colon) since 3.4

6.1

  • In cases where it will likely improve readability, strings containing single quotes will be double-quoted

5.4

  • Add new lint:yaml dirname --exclude=/dirname/foo.yaml --exclude=/dirname/bar.yaml option to exclude one or more specific files from multiple file list
  • Allow negatable for the parse tags option with --no-parse-tags

5.3

  • Added github format support & autodetection to render errors as annotations when running the YAML linter command in a Github Action environment.

5.1.0

  • Added support for parsing numbers prefixed with 0o as octal numbers.

  • Deprecated support for parsing numbers starting with 0 as octal numbers. They will be parsed as strings as of Symfony 6.0. Prefix numbers with 0o so that they are parsed as octal numbers.

    Before:

... (truncated)

Commits
  • c5f718c Merge branch '7.0' into 7.1
  • c1e0024 Merge branch '7.0' into 7.1
  • 08a7843 Remove unnecessary empty usages
  • e5e14c8 use constructor property promotion
  • 7fc548d feature #52230 [Yaml] Allow to get all the enum cases (phansys)
  • d56caa8 dump enums with the !php/enum tag
  • 16eb674 Merge branch '7.0' into 7.1
  • 5d2b2a5 [Tests] Streamline
  • 2c98dad Code updates
  • dd03330 [Yaml] Allow Yaml component to get all the enum cases
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [google/cloud-firestore](https://github.com/googleapis/google-cloud-php-firestore) | `1.43.2` | `1.43.3` |
| [google/cloud-pubsub](https://github.com/googleapis/google-cloud-php-pubsub) | `2.1.2` | `2.2.0` |
| [symfony/console](https://github.com/symfony/console) | `7.0.7` | `7.1.0` |
| [symfony/dotenv](https://github.com/symfony/dotenv) | `7.0.7` | `7.1.0` |
| [symfony/framework-bundle](https://github.com/symfony/framework-bundle) | `7.0.7` | `7.1.0` |
| [symfony/runtime](https://github.com/symfony/runtime) | `7.0.7` | `7.1.0` |
| [symfony/yaml](https://github.com/symfony/yaml) | `7.0.7` | `7.1.0` |


Updates `google/cloud-firestore` from 1.43.2 to 1.43.3
- [Release notes](https://github.com/googleapis/google-cloud-php-firestore/releases)
- [Commits](googleapis/google-cloud-php-firestore@v1.43.2...v1.43.3)

Updates `google/cloud-pubsub` from 2.1.2 to 2.2.0
- [Release notes](https://github.com/googleapis/google-cloud-php-pubsub/releases)
- [Commits](googleapis/google-cloud-php-pubsub@v2.1.2...v2.2.0)

Updates `symfony/console` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/console/releases)
- [Changelog](https://github.com/symfony/console/blob/7.1/CHANGELOG.md)
- [Commits](symfony/console@v7.0.7...v7.1.0)

Updates `symfony/dotenv` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/dotenv/releases)
- [Changelog](https://github.com/symfony/dotenv/blob/7.1/CHANGELOG.md)
- [Commits](symfony/dotenv@v7.0.7...v7.1.0)

Updates `symfony/framework-bundle` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/framework-bundle/releases)
- [Changelog](https://github.com/symfony/framework-bundle/blob/7.1/CHANGELOG.md)
- [Commits](symfony/framework-bundle@v7.0.7...v7.1.0)

Updates `symfony/runtime` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/runtime/releases)
- [Changelog](https://github.com/symfony/runtime/blob/7.1/CHANGELOG.md)
- [Commits](symfony/runtime@v7.0.7...v7.1.0)

Updates `symfony/yaml` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/yaml/releases)
- [Changelog](https://github.com/symfony/yaml/blob/7.1/CHANGELOG.md)
- [Commits](symfony/yaml@v7.0.7...v7.1.0)

---
updated-dependencies:
- dependency-name: google/cloud-firestore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: google/cloud-pubsub
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/console
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/dotenv
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/framework-bundle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/runtime
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Jun 1, 2024
@pkruithof pkruithof added this pull request to the merge queue Jun 3, 2024
Merged via the queue into main with commit de4c103 Jun 3, 2024
1 check passed
@pkruithof pkruithof deleted the dependabot/composer/dependencies-4acd7fb905 branch June 3, 2024 07:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file php Pull requests that update Php code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant