Skip to content

Update dependency symfony/http-foundation to v5.4.46 [SECURITY] #272

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

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

fix(deps): update dependency symfony/http-foundation to v5.4.46 [secu…

8591a6a
Select commit
Loading
Failed to load commit list.
Open

Update dependency symfony/http-foundation to v5.4.46 [SECURITY] #272

fix(deps): update dependency symfony/http-foundation to v5.4.46 [secu…
8591a6a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch required action Nov 6, 2024 in 1m 1s

Build Errored

The build errored.

Details

This is a normal build for the renovate/packagist-symfony-http-foundation-vulnerability branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has six jobs, running in parallel.

Job PHP ENV OS State
1453.1 8.1 WP_DB_USER=wp Linux errored
1453.2 8.0 WP_DB_USER=wp Linux errored
1453.3 php_8_2 8.2 WP_DB_USER=wp Linux errored
1453.4 php_7_2 7.2 WP_DB_USER=wp Linux errored
1453.5 php_7_2_and_wp_5_9 7.2 WP_DB_USER=wp Linux errored
1453.6 bleeding edge 8.3 WP_DB_USER=wp Linux errored

Build Configuration

Build Option Setting
Language PHP
Operating System Linux (Focal)
PHP Versions 8.1, 8.0
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "version": "~> 1.0",
  "notifications": {
    "email": [
      {
        "on_success": "never",
        "on_failure": "change"
      }
    ]
  },
  "cache": {
    "directories": [
      "$HOME/.composer/cache"
    ]
  },
  "services": [
    "mysql"
  ],
  "env": [
    "global={:WP_DB_USER=>\"wp\"}={:WP_DB_PASS=>\"password\"}={:WP_DB_NAME=>\"wp_tests\"}={:WP_VERSION=>\"*\"}={:CF7_VERSION=>\"v5.7.3\"}={:PHPUNIT_VERSION=>\"^9.0\"}"
  ],
  "php": [
    "8.1",
    "8.0"
  ],
  "jobs": {
    "fast_finish": true,
    "include": [
      {
        "name": "php_8_2",
        "php": "8.2",
        "addons": {
          "apt": {
            "packages": [
              "libonig5"
            ]
          }
        }
      },
      {
        "name": "php_7_2",
        "dist": "xenial",
        "php": "7.2",
        "env": [
          {
            "PHPUNIT_VERSION": "^7.0"
          }
        ]
      },
      {
        "name": "php_7_2_and_wp_5_9",
        "dist": "xenial",
        "php": "7.2",
        "env": [
          {
            "WP_VERSION": "5.9.9",
            "CF7_VERSION": "v5.1.6",
            "PHPUNIT_VERSION": "^8.0"
          }
        ]
      },
      {
        "name": "bleeding edge",
        "php": "8.3",
        "dist": "jammy",
        "env": [
          {
            "CF7_VERSION": "master"
          }
        ],
        "addons": {
          "apt": {
            "packages": [
              "libonig5"
            ]
          }
        }
      }
    ]
  },
  "install": [
    "composer self-update --2",
    "composer require --ignore-platform-req=php --dev --with-dependencies roots/wordpress:${WP_VERSION} wp-phpunit/wp-phpunit:${WP_VERSION} phpunit/phpunit:${PHPUNIT_VERSION}",
    "composer show",
    "nvm install 16 && nvm use 16",
    "yarn install",
    "git clone --depth=50 --branch=${CF7_VERSION} https://github.com/rocklobster-in/contact-form-7"
  ],
  "before_script": [
    "mysql -u root -e \"CREATE USER ${WP_DB_USER} IDENTIFIED BY '${WP_DB_PASS}';\"",
    "mysql -u root -e \"GRANT ALL PRIVILEGES ON ${WP_DB_NAME}.* TO ${WP_DB_USER};\"",
    "mysql -u root -e \"CREATE DATABASE ${WP_DB_NAME};\"",
    "phpenv config-rm xdebug.ini || return 0"
  ],
  "script": [
    "composer test",
    "yarn test",
    "yarn build"
  ]
}