DEBUG: No dangling containers to remove INFO: Repository started { "renovateVersion": "34.11.1" } DEBUG: Using localDir: /mnt/renovate/gh/PicturePipe/hatch DEBUG: PackageFiles.clear() - Package files deleted DEBUG: initRepo("PicturePipe/hatch") DEBUG: Using queue: host=api.github.com, concurrency=10 DEBUG: PicturePipe/hatch default branch = develop DEBUG: Using app token for git init DEBUG: Repository cache is restored from revision 13 DEBUG: Resetting npmrc DEBUG: detectSemanticCommits() DEBUG: checkOnboarding() DEBUG: isOnboarded() DEBUG: Checking cached config file name DEBUG: Existing config file confirmed DEBUG: Repository config { "fileName": "renovate.json", "config": { "extends": [ "github>PicturePipe/renovate-config", "github>PicturePipe/renovate-config:poetry" ] } } DEBUG: Repo is onboarded DEBUG: migrateAndValidate() DEBUG: No config migration necessary DEBUG: massaged config { "config": { "extends": [ "github>whitesource/merge-confidence:beta", "github>PicturePipe/renovate-config", "github>PicturePipe/renovate-config:poetry" ] } } DEBUG: migrated config { "config": { "extends": [ "github>whitesource/merge-confidence:beta", "github>PicturePipe/renovate-config", "github>PicturePipe/renovate-config:poetry" ] } } DEBUG: Setting hostRules from config DEBUG: Found repo ignorePaths { "ignorePaths": [ "**/node_modules/**", "**/bower_components/**", "**/vendor/**", "**/examples/**", "**/__tests__/**", "**/test/**", "**/tests/**", "**/__fixtures__/**" ] } DEBUG: Using queue: host=api.github.com, concurrency=10 DEBUG: GitHub vulnerability details { "alerts": { "pip/py": { "<= 1.11.0": null }, "npm/minimatch": { "< 3.0.5": "3.0.5" }, "npm/socket.io-parser": { "< 4.0.5": "4.0.5" } } } DEBUG: Vulnerability alert has no firstPatchedVersion - skipping { "alert": { "dismissReason": null, "vulnerableManifestFilename": "poetry.lock", "vulnerableManifestPath": "poetry.lock", "vulnerableRequirements": "= 1.11.0", "securityAdvisory": { "description": "The py library through 1.11.0 for Python allows remote attackers to conduct a ReDoS (Regular expression Denial of Service) attack via a Subversion repository with crafted info data, because the InfoSvnCommand argument is mishandled.\n\nThe particular codepath in question is the regular expression at `py._path.svnurl.InfoSvnCommand.lspattern` and is only relevant when dealing with subversion (svn) projects. Notablely the codepath is not used in the popular pytest project. The developers of the pytest package have released version `7.2.0` which removes their dependency on `py`. Users of `pytest` seeing alerts relating to this advisory may update to version `7.2.0` of `pytest` to resolve this issue. See https://github.com/pytest-dev/py/issues/287#issuecomment-1290407715 for additional context.", "identifiers": [ { "type": "GHSA", "value": "GHSA-w596-4wvx-j9j6" }, { "type": "CVE", "value": "CVE-2022-42969" } ], "references": [ { "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-42969" }, { "url": "https://github.com/pytest-dev/py/issues/287" }, { "url": "https://github.com/pytest-dev/py/blob/cb87a83960523a2367d0f19226a73aed4ce4291d/py/_path/svnurl.py#L316" }, { "url": "https://github.com/pytest-dev/py/issues/288" }, { "url": "https://github.com/pytest-dev/pytest/issues/10392" }, { "url": "https://github.com/advisories/GHSA-w596-4wvx-j9j6" } ], "severity": "MODERATE" }, "securityVulnerability": { "package": { "name": "py", "ecosystem": "PIP" }, "firstPatchedVersion": null, "vulnerableVersionRange": "<= 1.11.0" } } } DEBUG: alert package rules { "alertPackageRules": [ { "matchDatasources": [ "npm" ], "matchPackageNames": [ "minimatch" ], "matchCurrentVersion": "= 3.0.4", "matchFiles": [ "package-lock.json" ], "allowedVersions": "3.0.5", "prBodyNotes": [ "### GitHub Vulnerability Alerts", "#### [CVE-2022-3517](https://nvd.nist.gov/vuln/detail/CVE-2022-3517)\n\nA vulnerability was found in the minimatch package. This flaw allows a Regular Expression Denial of Service (ReDoS) when calling the braceExpand function with specific arguments, resulting in a Denial of Service." ], "isVulnerabilityAlert": true, "force": { "groupName": null, "schedule": [ "at any time" ], "dependencyDashboardApproval": false, "stabilityDays": 0, "rangeStrategy": "update-lockfile", "commitMessageSuffix": "[SECURITY]", "branchTopic": "{{{datasource}}}-{{{depName}}}-vulnerability", "prCreation": "immediate", "labels": [ "renovate", "security" ], "reviewers": [ "team:@PicturePipe/software-development" ] } }, { "matchDatasources": [ "npm" ], "matchPackageNames": [ "socket.io-parser" ], "matchCurrentVersion": "= 4.0.4", "matchFiles": [ "package-lock.json" ], "allowedVersions": "4.0.5", "prBodyNotes": [ "### GitHub Vulnerability Alerts", "#### [CVE-2022-2421](https://nvd.nist.gov/vuln/detail/CVE-2022-2421)\n\nDue to improper type validation in the `socket.io-parser` library (which is used by the `socket.io` and `socket.io-client` packages to encode and decode Socket.IO packets), it is possible to overwrite the _placeholder object which allows an attacker to place references to functions at arbitrary places in the resulting query object.\n\nExample:\n\n```js\nconst decoder = new Decoder();\n\ndecoder.on(\\\"decoded\\\", (packet) => {\n console.log(packet.data); // prints [ 'hello', [Function: splice] ]\n })\n\ndecoder.add('51-[\\\"hello\\\",{\\\"_placeholder\\\":true,\\\"num\\\":\\\"splice\\\"}]');\ndecoder.add(Buffer.from(\\\"world\\\"));\n```\n\nThis bubbles up in the `socket.io` package:\n\n```js\nio.on(\\\"connection\\\", (socket) => {\n socket.on(\\\"hello\\\", (val) => {\n // here, \\\"val\\\" could be a reference instead of what the user expected\n });\n });\n```\n\nAt first sight, the potential impact seems rather limited, but please upgrade to a safe version as soon as possible.\n\nThis should be fixed by:\n\n- https://github.com/socketio/socket.io-parser/commit/b5d0cb7dc56a0601a09b056beaeeb0e43b160050, included in `socket.io-parser@4.2.1`\n- https://github.com/socketio/socket.io-parser/commit/b559f050ee02bd90bd853b9823f8de7fa94a80d4, included in `socket.io-parser@4.0.5`\n\n### Dependency analysis for the `socket.io` package\n\n| `socket.io` version | `socket.io-parser` version | Covered? |\n|---------------------|---------------------------------------------------------------------------------------------------------|------------------------|\n| `4.5.2...latest` | `~4.2.0` ([ref](https://github.com/socketio/socket.io/commit/9890b036cf942f6b6ad2afeb6a8361c32cd5d528)) | Yes :heavy_check_mark: |\n| `4.1.3...4.5.1` | `~4.0.4` ([ref](https://github.com/socketio/socket.io/commit/7c44893d7878cd5bba1eff43150c3e664f88fb57)) | Yes :heavy_check_mark: |\n| `3.0.5...4.1.2` | `~4.0.3` ([ref](https://github.com/socketio/socket.io/commit/752dfe3b1e5fecda53dae899b4a39e6fed5a1a17)) | Yes :heavy_check_mark: |\n| `3.0.0...3.0.4` | `~4.0.1` ([ref](https://github.com/socketio/socket.io/commit/1af3267e3f5f7884214cf2ca4d5282d620092fb0)) | Yes :heavy_check_mark: |\n\n### Dependency analysis for the `socket.io-client` package\n\n| `socket.io-client` version | `socket.io-parser` version | Covered? |\n|----------------------------|----------------------------------------------------------------------------------------------------------------|------------------------------------|\n| `4.5.0...latest` | `~4.2.0` ([ref](https://github.com/socketio/socket.io-client/commit/b862924b7f1720979e5db2f0154906b305d420e3)) | Yes :heavy_check_mark: |\n| `4.3.0...4.4.1` | `~4.1.1` ([ref](https://github.com/socketio/socket.io-client/commit/91b948b8607166fcc79f028a6428819277214188)) | No, but the impact is very limited |\n| `3.1.0...4.2.0` | `~4.0.4` ([ref](https://github.com/socketio/socket.io-client/commit/5d9b4eb42b1f5778e6f033096694acb331b132c4)) | Yes :heavy_check_mark: |\n| `3.0.5` | `~4.0.3` ([ref](https://github.com/socketio/socket.io-client/commit/cf9fc358365cc15a41260a51dc186c881bf086ca)) | Yes :heavy_check_mark: |\n| `3.0.0...3.0.4` | `~4.0.1` ([ref](https://github.com/socketio/socket.io-client/commit/b7e07ba633ceb9c1dc94cc894c10b9bfca536c7a)) | Yes :heavy_check_mark: |\n" ], "isVulnerabilityAlert": true, "force": { "groupName": null, "schedule": "[Circular]", "dependencyDashboardApproval": false, "stabilityDays": 0, "rangeStrategy": "update-lockfile", "commitMessageSuffix": "[SECURITY]", "branchTopic": "{{{datasource}}}-{{{depName}}}-vulnerability", "prCreation": "immediate", "labels": "[Circular]", "reviewers": "[Circular]" } } ] } DEBUG: findIssue(Dependency Dashboard) DEBUG: Retrieving issueList DEBUG: Retrieved 2 issues DEBUG: Found issue 1527 DEBUG: No baseBranches DEBUG: extract() DEBUG: Setting current branch to develop DEBUG: Initializing git repository into /mnt/renovate/gh/PicturePipe/hatch DEBUG: Performing blobless clone DEBUG: git clone completed { "durationMs": 2510 } DEBUG: latest repository commit { "latestCommit": { "hash": "647c43b26618a003376bc59dc31153d343622343", "date": "2022-11-01T14:45:34+01:00", "message": "Merge pull request #1698 from PicturePipe/renovate/psycopg2-2.x", "refs": "HEAD -> develop, origin/develop, origin/HEAD", "body": "Update dependency psycopg2 to v2.9.5", "author_name": "Christian Franke", "author_email": "christian.franke@picturepipe.com" } } DEBUG: latest commit { "branchName": "develop", "latestCommitDate": "2022-11-01T14:45:34+01:00" } DEBUG: Using file match: (^|/)tasks/[^/]+\.ya?ml$ for manager ansible DEBUG: Using file match: (^|/)requirements\.ya?ml$ for manager ansible-galaxy DEBUG: Using file match: (^|/)galaxy\.ya?ml$ for manager ansible-galaxy DEBUG: Using file match: (^|/)\.tool-versions$ for manager asdf DEBUG: Using file match: azure.*pipelines?.*\.ya?ml$ for manager azure-pipelines DEBUG: Using file match: (^|/)batect(-bundle)?\.yml$ for manager batect DEBUG: Using file match: (^|/)batect$ for manager batect-wrapper DEBUG: Using file match: (^|/)WORKSPACE(|\.bazel)$ for manager bazel DEBUG: Using file match: \.bzl$ for manager bazel DEBUG: Using file match: (^|\/)\.bazelversion$ for manager bazelisk DEBUG: Using file match: (^|/)\.?bitbucket-pipelines\.ya?ml$ for manager bitbucket-pipelines DEBUG: Using file match: buildkite\.ya?ml for manager buildkite DEBUG: Using file match: \.buildkite/.+\.ya?ml$ for manager buildkite DEBUG: Using file match: (^|/)Gemfile$ for manager bundler DEBUG: Using file match: \.cake$ for manager cake DEBUG: Using file match: (^|/)Cargo\.toml$ for manager cargo DEBUG: Using file match: (^|/)\.circleci/config\.yml$ for manager circleci DEBUG: Using file match: (^|/)cloudbuild\.ya?ml for manager cloudbuild DEBUG: Using file match: (^|/)Podfile$ for manager cocoapods DEBUG: Using file match: (^|/)([\w-]*)composer\.json$ for manager composer DEBUG: Using file match: (^|/)conanfile\.(txt|py)$ for manager conan DEBUG: Using file match: (^|/)(?:deps|bb)\.edn$ for manager deps-edn DEBUG: Using file match: (^|/)(?:docker-)?compose[^/]*\.ya?ml$ for manager docker-compose DEBUG: Using file match: (^|/|\.)Dockerfile$ for manager dockerfile DEBUG: Using file match: (^|/)Dockerfile[^/]*$ for manager dockerfile DEBUG: Using file match: (^|/)\.drone\.yml$ for manager droneci DEBUG: Using file match: (^|/)fleet\.ya?ml for manager fleet DEBUG: Using file match: (^|\/)flux-system\/(?:.+\/)?gotk-components\.yaml$ for manager flux DEBUG: Using file match: (^|\/)\.fvm\/fvm_config\.json$ for manager fvm DEBUG: Using file match: (^|/)\.gitmodules$ for manager git-submodules DEBUG: Using file match: ^(workflow-templates|\.github\/workflows)\/[^/]+\.ya?ml$ for manager github-actions DEBUG: Using file match: (^|\/)action\.ya?ml$ for manager github-actions DEBUG: Using file match: \.gitlab-ci\.yml$ for manager gitlabci DEBUG: Using file match: \.gitlab-ci\.yml$ for manager gitlabci-include DEBUG: Using file match: (^|/)go\.mod$ for manager gomod DEBUG: Using file match: \.gradle(\.kts)?$ for manager gradle DEBUG: Using file match: (^|\/)gradle\.properties$ for manager gradle DEBUG: Using file match: (^|\/)gradle\/.+\.toml$ for manager gradle DEBUG: Using file match: \.versions\.toml$ for manager gradle DEBUG: Using file match: (^|/)gradle/wrapper/gradle-wrapper\.properties$ for manager gradle-wrapper DEBUG: Using file match: (^|/)requirements\.yaml$ for manager helm-requirements DEBUG: Using file match: (^|/)values\.yaml$ for manager helm-values DEBUG: Using file match: (^|/)helmfile\.yaml$ for manager helmfile DEBUG: Using file match: (^|/)Chart\.yaml$ for manager helmv3 DEBUG: Using file match: (^|/)bin/hermit$ for manager hermit DEBUG: Using file match: ^Formula/[^/]+[.]rb$ for manager homebrew DEBUG: Using file match: \.html?$ for manager html DEBUG: Using file match: (^|/)plugins\.(txt|ya?ml)$ for manager jenkins DEBUG: Using file match: (^|/)jsonnetfile\.json$ for manager jsonnet-bundler DEBUG: Using file match: ^.+\.main\.kts$ for manager kotlin-script DEBUG: Using file match: (^|/)kustomization\.ya?ml$ for manager kustomize DEBUG: Using file match: (^|/)project\.clj$ for manager leiningen DEBUG: Using file match: (^|/|\.)pom\.xml$ for manager maven DEBUG: Using file match: ^(((\.mvn)|(\.m2))/)?settings\.xml$ for manager maven DEBUG: Using file match: (^|/)package\.js$ for manager meteor DEBUG: Using file match: (^|\/)Mintfile$ for manager mint DEBUG: Using file match: (^|/)mix\.exs$ for manager mix DEBUG: Using file match: (^|/)\.node-version$ for manager nodenv DEBUG: Using file match: (^|/)package\.json$ for manager npm DEBUG: Using file match: \.(?:cs|fs|vb)proj$ for manager nuget DEBUG: Using file match: \.(?:props|targets)$ for manager nuget DEBUG: Using file match: (^|\/)dotnet-tools\.json$ for manager nuget DEBUG: Using file match: (^|\/)global\.json$ for manager nuget DEBUG: Using file match: (^|/)\.nvmrc$ for manager nvm DEBUG: Using file match: (^|/)([\w-]*)requirements\.(txt|pip)$ for manager pip_requirements DEBUG: Using file match: (^|/)requirements(/*[\w-]*).(txt|pip)$ for manager pip_requirements DEBUG: Using file match: (^|/)setup\.py$ for manager pip_setup DEBUG: Using file match: (^|/)Pipfile$ for manager pipenv DEBUG: Using file match: (^|/)pyproject\.toml$ for manager poetry DEBUG: Using file match: (^|/)\.pre-commit-config\.yaml$ for manager pre-commit DEBUG: Using file match: (^|/)pubspec\.ya?ml$ for manager pub DEBUG: Using file match: (^|\/)Puppetfile$ for manager puppet DEBUG: Using file match: (^|/)\.python-version$ for manager pyenv DEBUG: Using file match: (^|/)\.ruby-version$ for manager ruby-version DEBUG: Using file match: \.sbt$ for manager sbt DEBUG: Using file match: project/[^/]*.scala$ for manager sbt DEBUG: Using file match: (^|/)setup\.cfg$ for manager setup-cfg DEBUG: Using file match: (^|/)Package\.swift for manager swift DEBUG: Using file match: \.tf$ for manager terraform DEBUG: Using file match: (^|/)\.terraform-version$ for manager terraform-version DEBUG: Using file match: (^|/)terragrunt\.hcl$ for manager terragrunt DEBUG: Using file match: (^|/)\.terragrunt-version$ for manager terragrunt-version DEBUG: Using file match: \.tflint\.hcl$ for manager tflint-plugin DEBUG: Using file match: ^\.travis\.yml$ for manager travis DEBUG: Using file match: (^|/)\.vela\.ya?ml$ for manager velaci DEBUG: Using file match: (^|\/)\.woodpecker[^/]*\.ya?ml$ for manager woodpecker DEBUG: Matched 1 file(s) for manager circleci: .circleci/config.yml DEBUG: Matched 1 file(s) for manager docker-compose: oidc-devserver/docker-compose.yml DEBUG: Matched 1 file(s) for manager dockerfile: oidc-devserver/login-consent-node/Dockerfile DEBUG: Matched 60 file(s) for manager html: apps/auth_common/templates/auth_common/authentication_error.html, apps/auth_token/templates/admin/auth_token/token/change_list.html, apps/auth_token/templates/admin/auth_token/token/generate_success.html, apps/auth_token/templates/admin/auth_token/token/submit_line.html, apps/base/templates/base/edit_handlers/encodings_panel.html, apps/base/templates/base/film_contentpackage_preview.html, apps/base/templates/base/film_detail.html, apps/base/templates/base/filmlist.html, apps/base/templates/base/filmlist_navigation_genre.html, apps/base/templates/base/filmlist_search.html, apps/base/templates/base/tag_filmselections_list.html, apps/base/templates/modeladmin/base/film/edit.html, apps/base/templates/modeladmin/base/film/encoding/create.html, apps/base/templates/modeladmin/base/film/encoding/preview.html, apps/base/templates/modeladmin/base/film/encoding/review.html, apps/base/templates/modeladmin/base/film/index.html, apps/base/templates/modeladmin/base/importlog/inspect.html, apps/base/templates/modeladmin/base/ppimporterror/inspect.html, apps/base/templates/partials/filmlist_item.html, apps/base/templates/partials/filmlist_page.html, apps/base/templates/partials/filmnavigation.html, apps/base/templates/partials/playback_login_button.html, apps/base/templates/partials/player.html, apps/editablepages/templates/editablepages/block_login_button.html, apps/editablepages/templates/editablepages/editable_page.html, apps/editablepages/templates/editablepages/site_page.html, apps/editablepages/templates/wagtailadmin/base.html, apps/editablepages/templates/wagtailadmin/home.html, apps/editablepages/templates/wagtailadmin/login.html, apps/editablepages/templates/wagtailadmin/pages/copy-featured-films-carousels.html, apps/github_admin_auth/templates/account/base.html, apps/github_admin_auth/templates/admin/login.html, apps/github_admin_auth/templates/socialaccount/authentication_error.html, apps/github_admin_auth/templates/wagtailadmin/login.html, apps/menu/templates/menu/tag_render_menu.html, apps/stats/templates/stats/report.html, apps/themes/templates/themes/style.html, apps/uploader/templates/uploader/edit_handlers/panel.html, apps/users/templates/wagtailusers/users/create.html, apps/users/templates/wagtailusers/users/edit.html, apps/wagtail_contactform/templates/wagtail_contactform/contactform.html, apps/wagtail_contactform/templates/wagtail_contactform/contactform_success.html, apps/wma_export/templates/wma_export/export.html, chromecast-receiver/index.html, hatch/templates/403.html, hatch/templates/404.html, hatch/templates/429.html, hatch/templates/500.html, hatch/templates/admin/base_site.html, hatch/templates/base.html, hatch/templates/footer.html, hatch/templates/hatch/is_su.html, hatch/templates/messages.html, hatch/templates/modals.html, hatch/templates/navigation.html, hatch/templates/partials/pageheader.html, hatch/templates/registration/login.html, src/fonts/Noway-Light-webfont/noway-light-demo.html, src/fonts/Noway-Medium-webfont/noway-medium-demo.html, src/fonts/Noway-Regular-webfont/noway-regular-demo.html DEBUG: Matched 1 file(s) for manager npm: package.json DEBUG: pip_requirements is disabled DEBUG: Matched 1 file(s) for manager poetry: pyproject.toml DEBUG: Matched 1 file(s) for manager pyenv: .python-version DEBUG: Matched 1 file(s) for manager setup-cfg: setup.cfg DEBUG: orbNoop DEBUG: CircleCI docker image { "depName": "cimg/python", "currentValue": "3.10.5", "currentDigest": "sha256:b93c48f0ee1697ecbe3c742c5d1f276f4aef1eaf14e82099127951fae0a64a67" } DEBUG: CircleCI docker image { "depName": "cimg/base", "currentValue": "2021.12", "currentDigest": "sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048" } DEBUG: CircleCI docker image { "depName": "cimg/base", "currentValue": "2021.12", "currentDigest": "sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048" } DEBUG: CircleCI docker image { "depName": "cimg/python", "currentValue": "3.10.5", "currentDigest": "sha256:b93c48f0ee1697ecbe3c742c5d1f276f4aef1eaf14e82099127951fae0a64a67" } DEBUG: CircleCI docker image { "depName": "postgres", "currentValue": "12.8-alpine", "currentDigest": "sha256:6f03854b0a6223f3b5efb98fe8a4d08af758d0625a6134dcae12c0a651f9e526" } DEBUG: CircleCI docker image { "depName": "circleci/node", "currentValue": "12.22.7-browsers", "currentDigest": "sha256:8662afdce3da2c4cd785e34fdc673555bea846259fa28e4097220c7aa6b3ec0e" } DEBUG: CircleCI docker image { "depName": "cimg/base", "currentValue": "2021.12", "currentDigest": "sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048" } DEBUG: CircleCI docker image { "depName": "cimg/aws", "currentValue": "2022.09.1", "currentDigest": "sha256:ce31e687164b139e2c2a690773bc90b8f318de22b0e42e92eb555c7ecc8ca8fa" } DEBUG: docker-compose.extractPackageFile() DEBUG: npm file package.json has name "hatch" DEBUG: Detecting pnpm Workspaces DEBUG: Detecting Lerna and Yarn Workspaces DEBUG: Finding locked versions DEBUG: Found package-lock.json for package.json DEBUG: Found circleci package files DEBUG: Found docker-compose package files DEBUG: Found dockerfile package files DEBUG: Found npm package files DEBUG: Found poetry package files DEBUG: Found pyenv package files DEBUG: Found 6 package file(s) INFO: Dependency extraction complete { "baseBranch": "develop", "stats": { "managers": { "circleci": { "fileCount": 1, "depCount": 12 }, "docker-compose": { "fileCount": 1, "depCount": 4 }, "dockerfile": { "fileCount": 1, "depCount": 1 }, "npm": { "fileCount": 1, "depCount": 62 }, "poetry": { "fileCount": 1, "depCount": 67 }, "pyenv": { "fileCount": 1, "depCount": 1 } }, "total": { "fileCount": 6, "depCount": 147 } } } DEBUG: Setting npmrc DEBUG: Using queue: host=registry.npmjs.org, concurrency=10 DEBUG: Using queue: host=pypi.org, concurrency=10 DEBUG: getLabels(https://index.docker.io, oryd/hydra-login-consent-node, latest) DEBUG: getManifestResponse(https://index.docker.io, oryd/hydra-login-consent-node, latest, get) DEBUG: Using queue: host=index.docker.io, concurrency=10 DEBUG: getLabels(https://index.docker.io, oryd/hydra, latest) DEBUG: getManifestResponse(https://index.docker.io, oryd/hydra, latest, get) DEBUG: Falling back to npm semver syntax for allowedVersions { "depName": "cimg/python" } DEBUG: Falling back to npm semver syntax for allowedVersions { "depName": "cimg/python" } DEBUG: getDigest(https://index.docker.io, cimg/python, 3.10.5) DEBUG: getDigest(https://index.docker.io, cimg/python, 3.10.5) DEBUG: getDigest(https://index.docker.io, library/postgres, 12.12-alpine) DEBUG: getDigest(https://index.docker.io, library/postgres, 12.12-alpine) DEBUG: Falling back to npm semver syntax for allowedVersions { "depName": "python" } DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "cimg/python" } DEBUG: getManifestResponse(https://index.docker.io, cimg/python, 3.10.5, get) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "cimg/python" } DEBUG: getManifestResponse(https://index.docker.io, cimg/python, 3.10.5, get) DEBUG: getManifestResponse(https://index.docker.io, library/postgres, 12.12-alpine, head) DEBUG: getManifestResponse(https://index.docker.io, library/postgres, 12.12-alpine, head) DEBUG: getDigest(https://index.docker.io, cimg/base, 2022.10) DEBUG: getDigest(https://index.docker.io, cimg/base, 2022.10) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "cimg/base" } DEBUG: getManifestResponse(https://index.docker.io, cimg/base, 2022.10, get) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "cimg/base" } DEBUG: getManifestResponse(https://index.docker.io, cimg/base, 2022.10, get) DEBUG: Using queue: host=auth.docker.io, concurrency=10 DEBUG: Got docker digest sha256:b93c48f0ee1697ecbe3c742c5d1f276f4aef1eaf14e82099127951fae0a64a67 DEBUG: Got docker digest sha256:b93c48f0ee1697ecbe3c742c5d1f276f4aef1eaf14e82099127951fae0a64a67 DEBUG: Got docker digest sha256:720164c3e16847ced6554e95e6580a93d448e81331b936a3843fba30791520a6 DEBUG: Got docker digest sha256:720164c3e16847ced6554e95e6580a93d448e81331b936a3843fba30791520a6 DEBUG: Got docker digest sha256:06398adf86069c9c2d707bc1fa6621338ae53c6601fbae318eb09e9daa50534b DEBUG: Got docker digest sha256:06398adf86069c9c2d707bc1fa6621338ae53c6601fbae318eb09e9daa50534b DEBUG: getManifestResponse(https://index.docker.io, oryd/hydra, sha256:be7649996fe46599943d404171c1c7315f7bd4b315c63c2335a8423bbd6bdfa3, get) DEBUG: getDigest(https://index.docker.io, cimg/base, 2021.12) DEBUG: getDigest(https://index.docker.io, cimg/base, 2021.12) DEBUG: getDigest(https://index.docker.io, cimg/base, 2021.12) DEBUG: getDigest(https://index.docker.io, library/postgres, 15.0-alpine) DEBUG: getDigest(https://index.docker.io, library/postgres, 15.0-alpine) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "cimg/base" } DEBUG: getManifestResponse(https://index.docker.io, cimg/base, 2021.12, get) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "cimg/base" } DEBUG: getManifestResponse(https://index.docker.io, cimg/base, 2021.12, get) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "cimg/base" } DEBUG: getManifestResponse(https://index.docker.io, cimg/base, 2021.12, get) DEBUG: getManifestResponse(https://index.docker.io, library/postgres, 15.0-alpine, head) DEBUG: getManifestResponse(https://index.docker.io, library/postgres, 15.0-alpine, head) DEBUG: Falling back to npm semver syntax for allowedVersions { "depName": "circleci/node" } DEBUG: getDigest(https://index.docker.io, circleci/node, 12.22.7-browsers) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "circleci/node" } DEBUG: getManifestResponse(https://index.docker.io, circleci/node, 12.22.7-browsers, get) DEBUG: Got docker digest sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048 DEBUG: Got docker digest sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048 DEBUG: Got docker digest sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048 DEBUG: Got docker digest sha256:09d57b502063c77d8896683ff5126187025d7b2e2b4378a896b90dced36bc083 DEBUG: Got docker digest sha256:09d57b502063c77d8896683ff5126187025d7b2e2b4378a896b90dced36bc083 DEBUG: getDigest(https://index.docker.io, library/postgres, 12.8-alpine) DEBUG: getDigest(https://index.docker.io, library/postgres, 12.8-alpine) DEBUG: getDigest(https://index.docker.io, oryd/hydra-login-consent-node, v2.0.1) DEBUG: getManifestResponse(https://index.docker.io, library/postgres, 12.8-alpine, head) DEBUG: getManifestResponse(https://index.docker.io, library/postgres, 12.8-alpine, head) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "oryd/hydra-login-consent-node" } DEBUG: getManifestResponse(https://index.docker.io, oryd/hydra-login-consent-node, v2.0.1, get) DEBUG: Got docker digest sha256:5279a048edc0ff73fdc789ce4edb8c57b1172904147b0ee6441fb10cf047cc0a DEBUG: Got docker digest sha256:6f03854b0a6223f3b5efb98fe8a4d08af758d0625a6134dcae12c0a651f9e526 DEBUG: Got docker digest sha256:6f03854b0a6223f3b5efb98fe8a4d08af758d0625a6134dcae12c0a651f9e526 DEBUG: getDigest(https://index.docker.io, oryd/hydra, v2.0.1) DEBUG: getDigest(https://index.docker.io, oryd/hydra, v2.0.1) DEBUG: getDigest(https://index.docker.io, oryd/hydra, v2.0.1) DEBUG: Got docker digest sha256:8662afdce3da2c4cd785e34fdc673555bea846259fa28e4097220c7aa6b3ec0e DEBUG: getDigest(https://index.docker.io, oryd/hydra-login-consent-node, v1.11.10) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "oryd/hydra-login-consent-node" } DEBUG: getManifestResponse(https://index.docker.io, oryd/hydra-login-consent-node, v1.11.10, get) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "oryd/hydra" } DEBUG: getManifestResponse(https://index.docker.io, oryd/hydra, v2.0.1, get) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "oryd/hydra" } DEBUG: getManifestResponse(https://index.docker.io, oryd/hydra, v2.0.1, get) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "oryd/hydra" } DEBUG: getManifestResponse(https://index.docker.io, oryd/hydra, v2.0.1, get) DEBUG: Got docker digest sha256:465b8e7c99cd42754621c8c9df144cbb145a922d5ed5bba79cc717d7d7e6b387 DEBUG: Got docker digest sha256:be7649996fe46599943d404171c1c7315f7bd4b315c63c2335a8423bbd6bdfa3 DEBUG: Got docker digest sha256:be7649996fe46599943d404171c1c7315f7bd4b315c63c2335a8423bbd6bdfa3 DEBUG: Got docker digest sha256:be7649996fe46599943d404171c1c7315f7bd4b315c63c2335a8423bbd6bdfa3 DEBUG: getDigest(https://index.docker.io, oryd/hydra, v1.11.10) DEBUG: getDigest(https://index.docker.io, oryd/hydra, v1.11.10) DEBUG: getDigest(https://index.docker.io, oryd/hydra, v1.11.10) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "oryd/hydra" } DEBUG: getManifestResponse(https://index.docker.io, oryd/hydra, v1.11.10, get) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "oryd/hydra" } DEBUG: getManifestResponse(https://index.docker.io, oryd/hydra, v1.11.10, get) DEBUG: Architecture-specific digest or missing docker-content-digest header - pulling full manifest { "registryHost": "https://index.docker.io", "dockerRepository": "oryd/hydra" } DEBUG: getManifestResponse(https://index.docker.io, oryd/hydra, v1.11.10, get) DEBUG: getDigest(https://index.docker.io, cimg/aws, 2022.10.1) DEBUG: getManifestResponse(https://index.docker.io, cimg/aws, 2022.10.1, head) DEBUG: Got docker digest sha256:b5a9184a8e4e766dd47cc1368c552f17c8d8dbd9c472141c3f40023c633ee4d4 DEBUG: Got docker digest sha256:b5a9184a8e4e766dd47cc1368c552f17c8d8dbd9c472141c3f40023c633ee4d4 DEBUG: Got docker digest sha256:b5a9184a8e4e766dd47cc1368c552f17c8d8dbd9c472141c3f40023c633ee4d4 DEBUG: Got docker digest sha256:ba369457e84888247daa176c47e6f4af490db26a8fff2a8cc73abe0e7b81c18f DEBUG: getDigest(https://index.docker.io, cimg/aws, 2022.09.1) DEBUG: getManifestResponse(https://index.docker.io, cimg/aws, 2022.09.1, head) DEBUG: Got docker digest sha256:ce31e687164b139e2c2a690773bc90b8f318de22b0e42e92eb555c7ecc8ca8fa DEBUG: PackageFiles.add() - Package file saved for base branch { "baseBranch": "develop" } DEBUG: Package releases lookups complete { "baseBranch": "develop" } DEBUG: branchifyUpgrades DEBUG: Using group branchName template DEBUG: Dependency @uppy/aws-s3-multipart is part of group uppy monorepo DEBUG: Using group branchName template DEBUG: Dependency @uppy/aws-s3-multipart is part of group uppy monorepo DEBUG: Using group branchName template DEBUG: Dependency @uppy/core is part of group uppy monorepo DEBUG: Using group branchName template DEBUG: Dependency @uppy/core is part of group uppy monorepo DEBUG: Using group branchName template DEBUG: Dependency @uppy/dashboard is part of group uppy monorepo DEBUG: Using group branchName template DEBUG: Dependency @uppy/dashboard is part of group uppy monorepo DEBUG: Using group branchName template DEBUG: Dependency @uppy/url is part of group uppy monorepo DEBUG: Using group branchName template DEBUG: Dependency @uppy/url is part of group uppy monorepo DEBUG: Using group branchName template DEBUG: Dependency @babel/core is part of group babel monorepo DEBUG: Using group branchName template DEBUG: Dependency @babel/preset-env is part of group babel monorepo DEBUG: Using group branchName template DEBUG: Dependency babel-loader is part of group babel monorepo DEBUG: Using group branchName template DEBUG: Dependency babel-loader is part of group babel monorepo DEBUG: 111 flattened updates found: python, python, shellcheck, do-exclusively, cimg/base, cimg/base, postgres, postgres, cimg/base, cimg/aws, postgres, postgres, oryd/hydra, oryd/hydra, oryd/hydra, oryd/hydra-login-consent-node, @uppy/aws-s3-multipart, @uppy/aws-s3-multipart, @uppy/core, @uppy/core, @uppy/dashboard, @uppy/dashboard, @uppy/url, @uppy/url, foundation-sites, jquery, uuid, video.js, videojs-contrib-eme, videojs-contrib-eme, videojs-hotkeys, webvtt-parser, @babel/core, @babel/preset-env, autoprefixer, babel-loader, babel-loader, browserslist, css-loader, css-minimizer-webpack-plugin, eslint-plugin-mocha, karma, markdownlint-cli, mini-css-extract-plugin, mocha, postcss, postcss-loader, prettier, sass, sass-loader, sass-loader, stylelint, stylelint-config-recommended-scss, stylelint-config-standard, stylelint-no-unsupported-browser-features, stylelint-no-unsupported-browser-features, stylelint-scss, terser-webpack-plugin, webpack, webpack-bundle-analyzer, webpack-bundle-tracker, webpack-cli, xo, node, node, Django, dj-database-url, django-anymail, django-contact-form, django-countries, django-modeltranslation, django-storages, django-webpack-loader, requests, sentry-sdk, wagtail, wagtail, whitenoise, rules, django-allauth, PyGithub, geoip2, pymarc, django-import-export, django-import-export, django-select2, django-su, django-colorfield, djangorestframework, uvicorn, starlette, jsonnet, coverage, django-debug-toolbar, flake8, pytest-django, pytest, watchdog, pytest-factoryboy, responses, pytest-responses, pytest-cov, mutmut, pgcli, pytest-mock, time-machine, ipython, ipython, wagtail-factories, wagtail-factories, django-extensions DEBUG: Returning 97 branch(es) DEBUG: config.repoIsOnboarded=true DEBUG: packageFiles with updates { "baseBranch": "develop", "config": { "circleci": [ { "packageFile": ".circleci/config.yml", "deps": [ { "depType": "orb", "depName": "codecov", "currentValue": "3.2.4", "datasource": "orb", "packageName": "codecov/codecov", "commitMessageTopic": "{{{depName}}} orb", "versioning": "npm", "rangeStrategy": "pin", "depIndex": 0, "updates": [], "warnings": [], "homepage": "https://circleci.com/developer/orbs/orb/codecov/codecov", "currentVersion": "3.2.4", "fixedVersion": "3.2.4" }, { "depType": "orb", "depName": "python", "currentValue": "1.4.0", "datasource": "orb", "packageName": "circleci/python", "commitMessageTopic": "{{{depName}}} orb", "versioning": "npm", "rangeStrategy": "pin", "depIndex": 1, "updates": [ { "bucket": "non-major", "newVersion": "1.5.0", "newValue": "1.5.0", "releaseTimestamp": "2021-11-19T15:06:38.367Z", "newMajor": 1, "newMinor": 5, "updateType": "minor", "branchName": "renovate/python-1.x" }, { "bucket": "major", "newVersion": "2.1.1", "newValue": "2.1.1", "releaseTimestamp": "2022-09-15T21:12:00.247Z", "newMajor": 2, "newMinor": 1, "updateType": "major", "branchName": "renovate/python-2.x" } ], "warnings": [], "homepage": "https://circleci.com/developer/orbs/orb/circleci/python", "currentVersion": "1.4.0", "isSingleVersion": true, "fixedVersion": "1.4.0" }, { "depType": "orb", "depName": "shellcheck", "currentValue": "2.2.4", "datasource": "orb", "packageName": "circleci/shellcheck", "commitMessageTopic": "{{{depName}}} orb", "versioning": "npm", "rangeStrategy": "pin", "depIndex": 2, "updates": [ { "bucket": "major", "newVersion": "3.1.2", "newValue": "3.1.2", "releaseTimestamp": "2022-10-06T18:13:09.313Z", "newMajor": 3, "newMinor": 1, "updateType": "major", "branchName": "renovate/shellcheck-3.x" } ], "warnings": [], "homepage": "https://circleci.com/developer/orbs/orb/circleci/shellcheck", "currentVersion": "2.2.4", "isSingleVersion": true, "fixedVersion": "2.2.4" }, { "depType": "orb", "depName": "do-exclusively", "currentValue": "0.1.0", "datasource": "orb", "packageName": "hatch-team/do-exclusively", "commitMessageTopic": "{{{depName}}} orb", "versioning": "npm", "rangeStrategy": "pin", "depIndex": 3, "updates": [ { "bucket": "non-major", "newVersion": "0.3.0", "newValue": "0.3.0", "releaseTimestamp": "2022-06-21T04:52:26.212Z", "newMajor": 0, "newMinor": 3, "updateType": "minor", "branchName": "renovate/do-exclusively-0.x" } ], "warnings": [], "homepage": "https://circleci.com/developer/orbs/orb/hatch-team/do-exclusively", "currentVersion": "0.1.0", "isSingleVersion": true, "fixedVersion": "0.1.0" }, { "depName": "cimg/python", "currentValue": "3.10.5", "currentDigest": "sha256:b93c48f0ee1697ecbe3c742c5d1f276f4aef1eaf14e82099127951fae0a64a67", "replaceString": "cimg/python:3.10.5@sha256:b93c48f0ee1697ecbe3c742c5d1f276f4aef1eaf14e82099127951fae0a64a67", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "docker", "versioning": "regex:^(?\\d+)\\.(?\\d+)\\.(?\\d+)(?(a|b|rc)\\d+)?(-(?.*))?$", "depIndex": 4, "updates": [], "warnings": [], "currentVersion": "3.10.5", "fixedVersion": "3.10.5" }, { "depName": "cimg/base", "currentValue": "2021.12", "currentDigest": "sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048", "replaceString": "cimg/base:2021.12@sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "docker", "versioning": "docker", "depIndex": 5, "updates": [ { "bucket": "major", "newVersion": "2022.10", "newValue": "2022.10", "newMajor": 2022, "newMinor": 10, "updateType": "major", "newDigest": "sha256:720164c3e16847ced6554e95e6580a93d448e81331b936a3843fba30791520a6", "branchName": "renovate/cimg-base-2022.x" } ], "warnings": [], "currentVersion": "2021.12", "isSingleVersion": true, "fixedVersion": "2021.12" }, { "depName": "cimg/base", "currentValue": "2021.12", "currentDigest": "sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048", "replaceString": "cimg/base:2021.12@sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "docker", "versioning": "docker", "depIndex": 6, "updates": [ { "bucket": "major", "newVersion": "2022.10", "newValue": "2022.10", "newMajor": 2022, "newMinor": 10, "updateType": "major", "newDigest": "sha256:720164c3e16847ced6554e95e6580a93d448e81331b936a3843fba30791520a6", "branchName": "renovate/cimg-base-2022.x" } ], "warnings": [], "currentVersion": "2021.12", "isSingleVersion": true, "fixedVersion": "2021.12" }, { "depName": "cimg/python", "currentValue": "3.10.5", "currentDigest": "sha256:b93c48f0ee1697ecbe3c742c5d1f276f4aef1eaf14e82099127951fae0a64a67", "replaceString": "cimg/python:3.10.5@sha256:b93c48f0ee1697ecbe3c742c5d1f276f4aef1eaf14e82099127951fae0a64a67", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "docker", "versioning": "regex:^(?\\d+)\\.(?\\d+)\\.(?\\d+)(?(a|b|rc)\\d+)?(-(?.*))?$", "depIndex": 7, "updates": [], "warnings": [], "currentVersion": "3.10.5", "fixedVersion": "3.10.5" }, { "depName": "postgres", "currentValue": "12.8-alpine", "currentDigest": "sha256:6f03854b0a6223f3b5efb98fe8a4d08af758d0625a6134dcae12c0a651f9e526", "replaceString": "postgres:12.8-alpine@sha256:6f03854b0a6223f3b5efb98fe8a4d08af758d0625a6134dcae12c0a651f9e526", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "docker", "versioning": "docker", "depIndex": 8, "updates": [ { "bucket": "non-major", "newVersion": "12.12", "newValue": "12.12-alpine", "newMajor": 12, "newMinor": 12, "updateType": "minor", "newDigest": "sha256:06398adf86069c9c2d707bc1fa6621338ae53c6601fbae318eb09e9daa50534b", "branchName": "renovate/postgres-12.x" }, { "bucket": "major", "newVersion": "15.0", "newValue": "15.0-alpine", "newMajor": 15, "newMinor": 0, "updateType": "major", "newDigest": "sha256:09d57b502063c77d8896683ff5126187025d7b2e2b4378a896b90dced36bc083", "branchName": "renovate/postgres-15.x" } ], "warnings": [], "currentVersion": "12.8", "isSingleVersion": true, "fixedVersion": "12.8-alpine" }, { "depName": "circleci/node", "currentValue": "12.22.7-browsers", "currentDigest": "sha256:8662afdce3da2c4cd785e34fdc673555bea846259fa28e4097220c7aa6b3ec0e", "replaceString": "circleci/node:12.22.7-browsers@sha256:8662afdce3da2c4cd785e34fdc673555bea846259fa28e4097220c7aa6b3ec0e", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "docker", "versioning": "docker", "depIndex": 9, "updates": [], "warnings": [], "currentVersion": "12.22.7", "fixedVersion": "12.22.7-browsers" }, { "depName": "cimg/base", "currentValue": "2021.12", "currentDigest": "sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048", "replaceString": "cimg/base:2021.12@sha256:9d94b570bdd6809833d5e12d2ca1cb56de77d71dfe1d7e2fe44070b7fbbed048", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "docker", "versioning": "docker", "depIndex": 10, "updates": [ { "bucket": "major", "newVersion": "2022.10", "newValue": "2022.10", "newMajor": 2022, "newMinor": 10, "updateType": "major", "newDigest": "sha256:720164c3e16847ced6554e95e6580a93d448e81331b936a3843fba30791520a6", "branchName": "renovate/cimg-base-2022.x" } ], "warnings": [], "currentVersion": "2021.12", "isSingleVersion": true, "fixedVersion": "2021.12" }, { "depName": "cimg/aws", "currentValue": "2022.09.1", "currentDigest": "sha256:ce31e687164b139e2c2a690773bc90b8f318de22b0e42e92eb555c7ecc8ca8fa", "replaceString": "cimg/aws:2022.09.1@sha256:ce31e687164b139e2c2a690773bc90b8f318de22b0e42e92eb555c7ecc8ca8fa", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "docker", "versioning": "docker", "depIndex": 11, "updates": [ { "bucket": "non-major", "newVersion": "2022.10.1", "newValue": "2022.10.1", "newMajor": 2022, "newMinor": 10, "updateType": "minor", "newDigest": "sha256:ba369457e84888247daa176c47e6f4af490db26a8fff2a8cc73abe0e7b81c18f", "branchName": "renovate/cimg-aws-2022.x" } ], "warnings": [], "currentVersion": "2022.09.1", "isSingleVersion": true, "fixedVersion": "2022.09.1" } ] } ], "docker-compose": [ { "packageFile": "oidc-devserver/docker-compose.yml", "deps": [ { "depName": "postgres", "currentValue": "12.8-alpine", "currentDigest": "sha256:6f03854b0a6223f3b5efb98fe8a4d08af758d0625a6134dcae12c0a651f9e526", "replaceString": "postgres:12.8-alpine@sha256:6f03854b0a6223f3b5efb98fe8a4d08af758d0625a6134dcae12c0a651f9e526", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depIndex": 0, "updates": [ { "bucket": "non-major", "newVersion": "12.12", "newValue": "12.12-alpine", "newMajor": 12, "newMinor": 12, "updateType": "minor", "newDigest": "sha256:06398adf86069c9c2d707bc1fa6621338ae53c6601fbae318eb09e9daa50534b", "branchName": "renovate/postgres-12.x" }, { "bucket": "major", "newVersion": "15.0", "newValue": "15.0-alpine", "newMajor": 15, "newMinor": 0, "updateType": "major", "newDigest": "sha256:09d57b502063c77d8896683ff5126187025d7b2e2b4378a896b90dced36bc083", "branchName": "renovate/postgres-15.x" } ], "warnings": [], "versioning": "docker", "currentVersion": "12.8", "isSingleVersion": true, "fixedVersion": "12.8-alpine" }, { "depName": "oryd/hydra", "currentValue": "v1.11.10", "currentDigest": "sha256:b5a9184a8e4e766dd47cc1368c552f17c8d8dbd9c472141c3f40023c633ee4d4", "replaceString": "oryd/hydra:v1.11.10@sha256:b5a9184a8e4e766dd47cc1368c552f17c8d8dbd9c472141c3f40023c633ee4d4", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depIndex": 1, "updates": [ { "bucket": "major", "newVersion": "v2.0.1", "newValue": "v2.0.1", "newMajor": 2, "newMinor": 0, "updateType": "major", "newDigest": "sha256:be7649996fe46599943d404171c1c7315f7bd4b315c63c2335a8423bbd6bdfa3", "branchName": "renovate/oryd-hydra-2.x" } ], "warnings": [], "versioning": "docker", "currentVersion": "v1.11.10", "isSingleVersion": true, "fixedVersion": "v1.11.10" }, { "depName": "oryd/hydra", "currentValue": "v1.11.10", "currentDigest": "sha256:b5a9184a8e4e766dd47cc1368c552f17c8d8dbd9c472141c3f40023c633ee4d4", "replaceString": "oryd/hydra:v1.11.10@sha256:b5a9184a8e4e766dd47cc1368c552f17c8d8dbd9c472141c3f40023c633ee4d4", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depIndex": 2, "updates": [ { "bucket": "major", "newVersion": "v2.0.1", "newValue": "v2.0.1", "newMajor": 2, "newMinor": 0, "updateType": "major", "newDigest": "sha256:be7649996fe46599943d404171c1c7315f7bd4b315c63c2335a8423bbd6bdfa3", "branchName": "renovate/oryd-hydra-2.x" } ], "warnings": [], "versioning": "docker", "currentVersion": "v1.11.10", "isSingleVersion": true, "fixedVersion": "v1.11.10" }, { "depName": "oryd/hydra", "currentValue": "v1.11.10", "currentDigest": "sha256:b5a9184a8e4e766dd47cc1368c552f17c8d8dbd9c472141c3f40023c633ee4d4", "replaceString": "oryd/hydra:v1.11.10@sha256:b5a9184a8e4e766dd47cc1368c552f17c8d8dbd9c472141c3f40023c633ee4d4", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depIndex": 3, "updates": [ { "bucket": "major", "newVersion": "v2.0.1", "newValue": "v2.0.1", "newMajor": 2, "newMinor": 0, "updateType": "major", "newDigest": "sha256:be7649996fe46599943d404171c1c7315f7bd4b315c63c2335a8423bbd6bdfa3", "branchName": "renovate/oryd-hydra-2.x" } ], "warnings": [], "versioning": "docker", "currentVersion": "v1.11.10", "isSingleVersion": true, "fixedVersion": "v1.11.10" } ] } ], "dockerfile": [ { "packageFile": "oidc-devserver/login-consent-node/Dockerfile", "deps": [ { "depName": "oryd/hydra-login-consent-node", "currentValue": "v1.11.10", "currentDigest": "sha256:465b8e7c99cd42754621c8c9df144cbb145a922d5ed5bba79cc717d7d7e6b387", "replaceString": "oryd/hydra-login-consent-node:v1.11.10@sha256:465b8e7c99cd42754621c8c9df144cbb145a922d5ed5bba79cc717d7d7e6b387", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "final", "depIndex": 0, "updates": [ { "bucket": "major", "newVersion": "v2.0.1", "newValue": "v2.0.1", "newMajor": 2, "newMinor": 0, "updateType": "major", "newDigest": "sha256:5279a048edc0ff73fdc789ce4edb8c57b1172904147b0ee6441fb10cf047cc0a", "branchName": "renovate/oryd-hydra-login-consent-node-2.x" } ], "warnings": [], "versioning": "docker", "currentVersion": "v1.11.10", "isSingleVersion": true, "fixedVersion": "v1.11.10" } ] } ], "npm": [ { "packageFile": "package.json", "deps": [ { "depType": "dependencies", "depName": "@standardbroadcast/videojs-chromecast", "currentValue": "git+https://github.com/PicturePipe/videojs-chromecast.git", "skipReason": "unknown-version", "prettyDepType": "dependency", "lockedVersion": null, "depIndex": 0, "updates": [] }, { "depType": "dependencies", "depName": "@uppy/aws-s3-multipart", "currentValue": "2.2.0", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "2.2.0", "depIndex": 1, "updates": [ { "bucket": "non-major", "newVersion": "2.4.3", "newValue": "2.4.3", "releaseTimestamp": "2022-08-17T17:51:48.451Z", "newMajor": 2, "newMinor": 4, "updateType": "minor", "branchName": "renovate/uppy-monorepo" }, { "bucket": "major", "newVersion": "3.0.2", "newValue": "3.0.2", "releaseTimestamp": "2022-09-25T19:06:50.509Z", "newMajor": 3, "newMinor": 0, "updateType": "major", "branchName": "renovate/major-uppy-monorepo" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/transloadit/uppy", "homepage": "https://uppy.io", "currentVersion": "2.2.0", "isSingleVersion": true, "fixedVersion": "2.2.0" }, { "depType": "dependencies", "depName": "@uppy/core", "currentValue": "2.1.5", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "2.1.5", "depIndex": 2, "updates": [ { "bucket": "non-major", "newVersion": "2.3.4", "newValue": "2.3.4", "releaseTimestamp": "2022-09-25T18:49:21.978Z", "newMajor": 2, "newMinor": 3, "updateType": "minor", "branchName": "renovate/uppy-monorepo" }, { "bucket": "major", "newVersion": "3.0.4", "newValue": "3.0.4", "releaseTimestamp": "2022-10-24T18:39:33.625Z", "newMajor": 3, "newMinor": 0, "updateType": "major", "branchName": "renovate/major-uppy-monorepo" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/transloadit/uppy", "homepage": "https://uppy.io", "currentVersion": "2.1.5", "isSingleVersion": true, "fixedVersion": "2.1.5" }, { "depType": "dependencies", "depName": "@uppy/dashboard", "currentValue": "2.1.4", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "2.1.4", "depIndex": 3, "updates": [ { "bucket": "non-major", "newVersion": "2.4.3", "newValue": "2.4.3", "releaseTimestamp": "2022-09-25T18:49:25.194Z", "newMajor": 2, "newMinor": 4, "updateType": "minor", "branchName": "renovate/uppy-monorepo" }, { "bucket": "major", "newVersion": "3.1.0", "newValue": "3.1.0", "releaseTimestamp": "2022-09-25T19:07:07.556Z", "newMajor": 3, "newMinor": 1, "updateType": "major", "branchName": "renovate/major-uppy-monorepo" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/transloadit/uppy", "homepage": "https://uppy.io", "currentVersion": "2.1.4", "isSingleVersion": true, "fixedVersion": "2.1.4" }, { "depType": "dependencies", "depName": "@uppy/url", "currentValue": "2.0.5", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "2.0.5", "depIndex": 4, "updates": [ { "bucket": "non-major", "newVersion": "2.2.1", "newValue": "2.2.1", "releaseTimestamp": "2022-08-17T17:53:18.416Z", "newMajor": 2, "newMinor": 2, "updateType": "minor", "branchName": "renovate/uppy-monorepo" }, { "bucket": "major", "newVersion": "3.1.0", "newValue": "3.1.0", "releaseTimestamp": "2022-10-19T19:55:18.617Z", "newMajor": 3, "newMinor": 1, "updateType": "major", "branchName": "renovate/major-uppy-monorepo" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/transloadit/uppy", "homepage": "https://uppy.io", "currentVersion": "2.0.5", "isSingleVersion": true, "fixedVersion": "2.0.5" }, { "depType": "dependencies", "depName": "foundation-icon-fonts", "currentValue": "0.1.1", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "0.1.1", "depIndex": 5, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/zurb/foundation-icon-fonts", "currentVersion": "0.1.1", "fixedVersion": "0.1.1" }, { "depType": "dependencies", "depName": "foundation-sites", "currentValue": "6.7.4", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "6.7.4", "depIndex": 6, "updates": [ { "bucket": "non-major", "newVersion": "6.7.5", "newValue": "6.7.5", "releaseTimestamp": "2022-07-12T18:54:30.091Z", "newMajor": 6, "newMinor": 7, "updateType": "patch", "branchName": "renovate/foundation-sites-6.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/foundation/foundation-sites", "homepage": "https://get.foundation/sites", "currentVersion": "6.7.4", "isSingleVersion": true, "fixedVersion": "6.7.4" }, { "depType": "dependencies", "depName": "jquery", "currentValue": "3.6.0", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "3.6.0", "depIndex": 7, "updates": [ { "bucket": "non-major", "newVersion": "3.6.1", "newValue": "3.6.1", "releaseTimestamp": "2022-08-26T17:54:24.768Z", "newMajor": 3, "newMinor": 6, "updateType": "patch", "branchName": "renovate/jquery-3.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/jquery/jquery", "homepage": "https://jquery.com", "currentVersion": "3.6.0", "isSingleVersion": true, "fixedVersion": "3.6.0" }, { "depType": "dependencies", "depName": "js-cookie", "currentValue": "3.0.1", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "3.0.1", "depIndex": 8, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/js-cookie/js-cookie", "currentVersion": "3.0.1", "fixedVersion": "3.0.1" }, { "depType": "dependencies", "depName": "lodash", "currentValue": "4.17.21", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "4.17.21", "depIndex": 9, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/lodash/lodash", "homepage": "https://lodash.com/", "currentVersion": "4.17.21", "fixedVersion": "4.17.21" }, { "depType": "dependencies", "depName": "select2", "currentValue": "4.0.13", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "4.0.13", "depIndex": 10, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/select2/select2", "homepage": "https://select2.org", "currentVersion": "4.0.13", "fixedVersion": "4.0.13" }, { "depType": "dependencies", "depName": "slick-carousel", "currentValue": "1.8.1", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "1.8.1", "depIndex": 11, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/kenwheeler/slick", "currentVersion": "1.8.1", "fixedVersion": "1.8.1" }, { "depType": "dependencies", "depName": "uuid", "currentValue": "8.3.2", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "8.3.2", "depIndex": 12, "updates": [ { "bucket": "major", "newVersion": "9.0.0", "newValue": "9.0.0", "releaseTimestamp": "2022-09-05T20:03:54.869Z", "newMajor": 9, "newMinor": 0, "updateType": "major", "branchName": "renovate/uuid-9.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/uuidjs/uuid", "currentVersion": "8.3.2", "isSingleVersion": true, "fixedVersion": "8.3.2" }, { "depType": "dependencies", "depName": "video.js", "currentValue": "7.18.1", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "7.18.1", "depIndex": 13, "updates": [ { "bucket": "non-major", "newVersion": "7.20.3", "newValue": "7.20.3", "releaseTimestamp": "2022-09-09T18:05:35.610Z", "newMajor": 7, "newMinor": 20, "updateType": "minor", "branchName": "renovate/video.js-7.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/videojs/video.js", "homepage": "https://videojs.com", "currentVersion": "7.18.1", "isSingleVersion": true, "fixedVersion": "7.18.1" }, { "depType": "dependencies", "depName": "videojs-contrib-eme", "currentValue": "4.0.0", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "4.0.0", "depIndex": 14, "updates": [ { "bucket": "non-major", "newVersion": "4.0.1", "newValue": "4.0.1", "releaseTimestamp": "2022-04-22T16:58:04.525Z", "newMajor": 4, "newMinor": 0, "updateType": "patch", "branchName": "renovate/videojs-contrib-eme-4.x" }, { "bucket": "major", "newVersion": "5.0.1", "newValue": "5.0.1", "releaseTimestamp": "2022-08-24T18:35:04.416Z", "newMajor": 5, "newMinor": 0, "updateType": "major", "branchName": "renovate/videojs-contrib-eme-5.x" } ], "warnings": [], "versioning": "npm", "currentVersion": "4.0.0", "isSingleVersion": true, "fixedVersion": "4.0.0" }, { "depType": "dependencies", "depName": "videojs-hotkeys", "currentValue": "0.2.27", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "0.2.27", "depIndex": 15, "updates": [ { "bucket": "non-major", "newVersion": "0.2.28", "newValue": "0.2.28", "releaseTimestamp": "2022-08-28T02:07:52.965Z", "newMajor": 0, "newMinor": 2, "updateType": "patch", "branchName": "renovate/videojs-hotkeys-0.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/ctd1500/videojs-hotkeys", "currentVersion": "0.2.27", "isSingleVersion": true, "fixedVersion": "0.2.27" }, { "depType": "dependencies", "depName": "webvtt-parser", "currentValue": "2.1.2", "datasource": "npm", "prettyDepType": "dependency", "lockedVersion": "2.1.2", "depIndex": 16, "updates": [ { "bucket": "non-major", "newVersion": "2.2.0", "newValue": "2.2.0", "releaseTimestamp": "2022-08-17T07:08:39.071Z", "newMajor": 2, "newMinor": 2, "updateType": "minor", "branchName": "renovate/webvtt-parser-2.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/w3c/webvtt.js", "currentVersion": "2.1.2", "isSingleVersion": true, "fixedVersion": "2.1.2" }, { "depType": "devDependencies", "depName": "@babel/core", "currentValue": "7.16.12", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "7.16.12", "depIndex": 17, "updates": [ { "bucket": "non-major", "newVersion": "7.19.6", "newValue": "7.19.6", "releaseTimestamp": "2022-10-20T09:03:36.074Z", "newMajor": 7, "newMinor": 19, "updateType": "minor", "branchName": "renovate/babel-monorepo" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/babel/babel", "sourceDirectory": "packages/babel-core", "homepage": "https://babel.dev/docs/en/next/babel-core", "currentVersion": "7.16.12", "isSingleVersion": true, "fixedVersion": "7.16.12" }, { "depType": "devDependencies", "depName": "@babel/preset-env", "currentValue": "7.16.11", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "7.16.11", "depIndex": 18, "updates": [ { "bucket": "non-major", "newVersion": "7.19.4", "newValue": "7.19.4", "releaseTimestamp": "2022-10-10T10:47:26.107Z", "newMajor": 7, "newMinor": 19, "updateType": "minor", "branchName": "renovate/babel-monorepo" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/babel/babel", "sourceDirectory": "packages/babel-preset-env", "homepage": "https://babel.dev/docs/en/next/babel-preset-env", "currentVersion": "7.16.11", "isSingleVersion": true, "fixedVersion": "7.16.11" }, { "depType": "devDependencies", "depName": "autoprefixer", "currentValue": "10.4.2", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "10.4.2", "depIndex": 19, "updates": [ { "bucket": "non-major", "newVersion": "10.4.13", "newValue": "10.4.13", "releaseTimestamp": "2022-10-27T20:30:36.946Z", "newMajor": 10, "newMinor": 4, "updateType": "patch", "branchName": "renovate/autoprefixer-10.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/postcss/autoprefixer", "currentVersion": "10.4.2", "isSingleVersion": true, "fixedVersion": "10.4.2" }, { "depType": "devDependencies", "depName": "babel-loader", "currentValue": "8.2.3", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "8.2.3", "depIndex": 20, "updates": [ { "bucket": "non-major", "newVersion": "8.2.5", "newValue": "8.2.5", "releaseTimestamp": "2022-04-19T21:10:09.878Z", "newMajor": 8, "newMinor": 2, "updateType": "patch", "branchName": "renovate/babel-monorepo" }, { "bucket": "major", "newVersion": "9.0.1", "newValue": "9.0.1", "releaseTimestamp": "2022-10-31T18:10:10.326Z", "newMajor": 9, "newMinor": 0, "updateType": "major", "branchName": "renovate/major-babel-monorepo" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/babel/babel-loader", "currentVersion": "8.2.3", "isSingleVersion": true, "fixedVersion": "8.2.3" }, { "depType": "devDependencies", "depName": "babel-plugin-istanbul", "currentValue": "6.1.1", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "6.1.1", "depIndex": 21, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/istanbuljs/babel-plugin-istanbul", "currentVersion": "6.1.1", "fixedVersion": "6.1.1" }, { "depType": "devDependencies", "depName": "browserslist", "currentValue": "4.19.1", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "4.19.1", "depIndex": 22, "updates": [ { "bucket": "non-major", "newVersion": "4.21.4", "newValue": "4.21.4", "releaseTimestamp": "2022-09-15T10:38:46.616Z", "newMajor": 4, "newMinor": 21, "updateType": "minor", "branchName": "renovate/browserslist-4.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/browserslist/browserslist", "currentVersion": "4.19.1", "isSingleVersion": true, "fixedVersion": "4.19.1" }, { "depType": "devDependencies", "depName": "chai", "currentValue": "4.3.6", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "4.3.6", "depIndex": 23, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/chaijs/chai", "homepage": "http://chaijs.com", "currentVersion": "4.3.6", "fixedVersion": "4.3.6" }, { "depType": "devDependencies", "depName": "clean-webpack-plugin", "currentValue": "4.0.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "4.0.0", "depIndex": 24, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/johnagan/clean-webpack-plugin", "currentVersion": "4.0.0", "fixedVersion": "4.0.0" }, { "depType": "devDependencies", "depName": "css-loader", "currentValue": "6.5.1", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "6.5.1", "depIndex": 25, "updates": [ { "bucket": "non-major", "newVersion": "6.7.1", "newValue": "6.7.1", "releaseTimestamp": "2022-03-08T12:27:24.211Z", "newMajor": 6, "newMinor": 7, "updateType": "minor", "branchName": "renovate/css-loader-6.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/webpack-contrib/css-loader", "currentVersion": "6.5.1", "isSingleVersion": true, "fixedVersion": "6.5.1" }, { "depType": "devDependencies", "depName": "css-minimizer-webpack-plugin", "currentValue": "3.4.1", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "3.4.1", "depIndex": 26, "updates": [ { "bucket": "major", "newVersion": "4.2.2", "newValue": "4.2.2", "releaseTimestamp": "2022-10-13T15:28:21.932Z", "newMajor": 4, "newMinor": 2, "updateType": "major", "branchName": "renovate/css-minimizer-webpack-plugin-4.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/webpack-contrib/css-minimizer-webpack-plugin", "currentVersion": "3.4.1", "isSingleVersion": true, "fixedVersion": "3.4.1" }, { "depType": "devDependencies", "depName": "docdash", "currentValue": "1.2.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "1.2.0", "depIndex": 27, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/clenemt/docdash", "currentVersion": "1.2.0", "fixedVersion": "1.2.0" }, { "depType": "devDependencies", "depName": "eslint-plugin-mocha", "currentValue": "10.0.3", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "10.0.3", "depIndex": 28, "updates": [ { "bucket": "non-major", "newVersion": "10.1.0", "newValue": "10.1.0", "releaseTimestamp": "2022-07-20T07:33:49.425Z", "newMajor": 10, "newMinor": 1, "updateType": "minor", "branchName": "renovate/eslint-plugin-mocha-10.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/lo1tuma/eslint-plugin-mocha", "currentVersion": "10.0.3", "isSingleVersion": true, "fixedVersion": "10.0.3" }, { "depType": "devDependencies", "depName": "karma", "currentValue": "6.3.17", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "6.3.17", "depIndex": 29, "updates": [ { "bucket": "non-major", "newVersion": "6.4.1", "newValue": "6.4.1", "releaseTimestamp": "2022-09-19T19:43:07.115Z", "newMajor": 6, "newMinor": 4, "updateType": "minor", "branchName": "renovate/karma-6.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/karma-runner/karma", "homepage": "https://karma-runner.github.io/", "currentVersion": "6.3.17", "isSingleVersion": true, "fixedVersion": "6.3.17" }, { "depType": "devDependencies", "depName": "karma-coverage-istanbul-reporter", "currentValue": "3.0.3", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "3.0.3", "depIndex": 30, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/mattlewis92/karma-coverage-istanbul-reporter", "currentVersion": "3.0.3", "fixedVersion": "3.0.3" }, { "depType": "devDependencies", "depName": "karma-firefox-launcher", "currentValue": "2.1.2", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "2.1.2", "depIndex": 31, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/karma-runner/karma-firefox-launcher", "currentVersion": "2.1.2", "fixedVersion": "2.1.2" }, { "depType": "devDependencies", "depName": "karma-html2js-preprocessor", "currentValue": "1.1.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "1.1.0", "depIndex": 32, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/karma-runner/karma-html2js-preprocessor", "currentVersion": "1.1.0", "fixedVersion": "1.1.0" }, { "depType": "devDependencies", "depName": "karma-junit-reporter", "currentValue": "2.0.1", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "2.0.1", "depIndex": 33, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/karma-runner/karma-junit-reporter", "currentVersion": "2.0.1", "fixedVersion": "2.0.1" }, { "depType": "devDependencies", "depName": "karma-mocha", "currentValue": "2.0.1", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "2.0.1", "depIndex": 34, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/karma-runner/karma-mocha", "currentVersion": "2.0.1", "fixedVersion": "2.0.1" }, { "depType": "devDependencies", "depName": "karma-mocha-reporter", "currentValue": "2.2.5", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "2.2.5", "depIndex": 35, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/litixsoft/karma-mocha-reporter", "homepage": "http://www.litixsoft.de/index.php?lang=en#modules", "currentVersion": "2.2.5", "fixedVersion": "2.2.5" }, { "depType": "devDependencies", "depName": "karma-webpack", "currentValue": "5.0.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "5.0.0", "depIndex": 36, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/webpack-contrib/karma-webpack", "currentVersion": "5.0.0", "fixedVersion": "5.0.0" }, { "depType": "devDependencies", "depName": "markdownlint-cli", "currentValue": "0.30.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "0.30.0", "depIndex": 37, "updates": [ { "bucket": "non-major", "newVersion": "0.32.2", "newValue": "0.32.2", "releaseTimestamp": "2022-08-20T22:30:22.679Z", "newMajor": 0, "newMinor": 32, "updateType": "minor", "branchName": "renovate/markdownlint-cli-0.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/igorshubovych/markdownlint-cli", "currentVersion": "0.30.0", "isSingleVersion": true, "fixedVersion": "0.30.0" }, { "depType": "devDependencies", "depName": "mini-css-extract-plugin", "currentValue": "2.4.1", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "2.4.1", "depIndex": 38, "updates": [ { "bucket": "non-major", "newVersion": "2.6.1", "newValue": "2.6.1", "releaseTimestamp": "2022-06-15T19:13:28.119Z", "newMajor": 2, "newMinor": 6, "updateType": "minor", "branchName": "renovate/mini-css-extract-plugin-2.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/webpack-contrib/mini-css-extract-plugin", "currentVersion": "2.4.1", "isSingleVersion": true, "fixedVersion": "2.4.1" }, { "depType": "devDependencies", "depName": "mocha", "currentValue": "9.2.2", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "9.2.2", "depIndex": 39, "updates": [ { "bucket": "major", "newVersion": "10.1.0", "newValue": "10.1.0", "releaseTimestamp": "2022-10-15T20:58:49.031Z", "newMajor": 10, "newMinor": 1, "updateType": "major", "branchName": "renovate/mocha-10.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/mochajs/mocha", "homepage": "https://mochajs.org/", "currentVersion": "9.2.2", "isSingleVersion": true, "fixedVersion": "9.2.2" }, { "depType": "devDependencies", "depName": "npm-run-all", "currentValue": "4.1.5", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "4.1.5", "depIndex": 40, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/mysticatea/npm-run-all", "currentVersion": "4.1.5", "fixedVersion": "4.1.5" }, { "depType": "devDependencies", "depName": "postcss", "currentValue": "8.4.5", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "8.4.5", "depIndex": 41, "updates": [ { "bucket": "non-major", "newVersion": "8.4.18", "newValue": "8.4.18", "releaseTimestamp": "2022-10-12T19:28:58.006Z", "newMajor": 8, "newMinor": 4, "updateType": "patch", "branchName": "renovate/postcss-8.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/postcss/postcss", "homepage": "https://postcss.org/", "currentVersion": "8.4.5", "isSingleVersion": true, "fixedVersion": "8.4.5" }, { "depType": "devDependencies", "depName": "postcss-loader", "currentValue": "6.2.1", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "6.2.1", "depIndex": 42, "updates": [ { "bucket": "major", "newVersion": "7.0.1", "newValue": "7.0.1", "releaseTimestamp": "2022-07-11T17:02:09.735Z", "newMajor": 7, "newMinor": 0, "updateType": "major", "branchName": "renovate/postcss-loader-7.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/webpack-contrib/postcss-loader", "currentVersion": "6.2.1", "isSingleVersion": true, "fixedVersion": "6.2.1" }, { "depType": "devDependencies", "depName": "prettier", "currentValue": "2.5.1", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "2.5.1", "depIndex": 43, "updates": [ { "bucket": "non-major", "newVersion": "2.7.1", "newValue": "2.7.1", "releaseTimestamp": "2022-06-16T05:43:52.397Z", "newMajor": 2, "newMinor": 7, "updateType": "minor", "branchName": "renovate/prettier-2.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/prettier/prettier", "homepage": "https://prettier.io", "currentVersion": "2.5.1", "isSingleVersion": true, "fixedVersion": "2.5.1" }, { "depType": "devDependencies", "depName": "sass", "currentValue": "1.49.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "1.49.0", "depIndex": 44, "updates": [ { "bucket": "non-major", "newVersion": "1.55.0", "newValue": "1.55.0", "releaseTimestamp": "2022-09-21T22:47:50.235Z", "newMajor": 1, "newMinor": 55, "updateType": "minor", "branchName": "renovate/sass-1.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/sass/dart-sass", "currentVersion": "1.49.0", "isSingleVersion": true, "fixedVersion": "1.49.0" }, { "depType": "devDependencies", "depName": "sass-loader", "currentValue": "12.4.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "12.4.0", "depIndex": 45, "updates": [ { "bucket": "non-major", "newVersion": "12.6.0", "newValue": "12.6.0", "releaseTimestamp": "2022-02-15T11:13:21.844Z", "newMajor": 12, "newMinor": 6, "updateType": "minor", "branchName": "renovate/sass-loader-12.x" }, { "bucket": "major", "newVersion": "13.1.0", "newValue": "13.1.0", "releaseTimestamp": "2022-10-06T21:13:00.953Z", "newMajor": 13, "newMinor": 1, "updateType": "major", "branchName": "renovate/sass-loader-13.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/webpack-contrib/sass-loader", "currentVersion": "12.4.0", "isSingleVersion": true, "fixedVersion": "12.4.0" }, { "depType": "devDependencies", "depName": "style-loader", "currentValue": "3.3.1", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "3.3.1", "depIndex": 46, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/webpack-contrib/style-loader", "currentVersion": "3.3.1", "fixedVersion": "3.3.1" }, { "depType": "devDependencies", "depName": "stylelint", "currentValue": "14.3.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "14.3.0", "depIndex": 47, "updates": [ { "bucket": "non-major", "newVersion": "14.14.0", "newValue": "14.14.0", "releaseTimestamp": "2022-10-15T12:19:16.633Z", "newMajor": 14, "newMinor": 14, "updateType": "minor", "branchName": "renovate/stylelint-14.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/stylelint/stylelint", "homepage": "https://stylelint.io", "currentVersion": "14.3.0", "isSingleVersion": true, "fixedVersion": "14.3.0" }, { "depType": "devDependencies", "depName": "stylelint-config-prettier", "currentValue": "9.0.3", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "9.0.3", "depIndex": 48, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/prettier/stylelint-config-prettier", "currentVersion": "9.0.3", "fixedVersion": "9.0.3" }, { "depType": "devDependencies", "depName": "stylelint-config-recommended-scss", "currentValue": "5.0.2", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "5.0.2", "depIndex": 49, "updates": [ { "bucket": "major", "newVersion": "8.0.0", "newValue": "8.0.0", "releaseTimestamp": "2022-10-24T14:14:23.821Z", "newMajor": 8, "newMinor": 0, "updateType": "major", "branchName": "renovate/stylelint-config-recommended-scss-8.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/stylelint-scss/stylelint-config-recommended-scss", "currentVersion": "5.0.2", "isSingleVersion": true, "fixedVersion": "5.0.2" }, { "depType": "devDependencies", "depName": "stylelint-config-standard", "currentValue": "24.0.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "24.0.0", "depIndex": 50, "updates": [ { "bucket": "major", "newVersion": "29.0.0", "newValue": "29.0.0", "releaseTimestamp": "2022-10-15T13:05:25.704Z", "newMajor": 29, "newMinor": 0, "updateType": "major", "branchName": "renovate/stylelint-config-standard-29.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/stylelint/stylelint-config-standard", "currentVersion": "24.0.0", "isSingleVersion": true, "fixedVersion": "24.0.0" }, { "depType": "devDependencies", "depName": "stylelint-no-unsupported-browser-features", "currentValue": "5.0.3", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "5.0.3", "depIndex": 51, "updates": [ { "bucket": "non-major", "newVersion": "5.0.4", "newValue": "5.0.4", "releaseTimestamp": "2022-09-13T16:30:55.818Z", "newMajor": 5, "newMinor": 0, "updateType": "patch", "branchName": "renovate/stylelint-no-unsupported-browser-features-5.x" }, { "bucket": "major", "newVersion": "6.0.1", "newValue": "6.0.1", "releaseTimestamp": "2022-10-01T09:57:33.793Z", "newMajor": 6, "newMinor": 0, "updateType": "major", "branchName": "renovate/stylelint-no-unsupported-browser-features-6.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/ismay/stylelint-no-unsupported-browser-features", "currentVersion": "5.0.3", "isSingleVersion": true, "fixedVersion": "5.0.3" }, { "depType": "devDependencies", "depName": "stylelint-prettier", "currentValue": "2.0.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "2.0.0", "depIndex": 52, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/prettier/stylelint-prettier", "currentVersion": "2.0.0", "fixedVersion": "2.0.0" }, { "depType": "devDependencies", "depName": "stylelint-scss", "currentValue": "4.1.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "4.1.0", "depIndex": 53, "updates": [ { "bucket": "non-major", "newVersion": "4.3.0", "newValue": "4.3.0", "releaseTimestamp": "2022-07-08T12:25:44.884Z", "newMajor": 4, "newMinor": 3, "updateType": "minor", "branchName": "renovate/stylelint-scss-4.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/stylelint-scss/stylelint-scss", "currentVersion": "4.1.0", "isSingleVersion": true, "fixedVersion": "4.1.0" }, { "depType": "devDependencies", "depName": "terser-webpack-plugin", "currentValue": "5.3.1", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "5.3.1", "depIndex": 54, "updates": [ { "bucket": "non-major", "newVersion": "5.3.6", "newValue": "5.3.6", "releaseTimestamp": "2022-08-29T18:15:26.890Z", "newMajor": 5, "newMinor": 3, "updateType": "patch", "branchName": "renovate/terser-webpack-plugin-5.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/webpack-contrib/terser-webpack-plugin", "currentVersion": "5.3.1", "isSingleVersion": true, "fixedVersion": "5.3.1" }, { "depType": "devDependencies", "depName": "webpack", "currentValue": "5.67.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "5.67.0", "depIndex": 55, "updates": [ { "bucket": "non-major", "newVersion": "5.74.0", "newValue": "5.74.0", "releaseTimestamp": "2022-07-25T08:00:33.823Z", "newMajor": 5, "newMinor": 74, "updateType": "minor", "branchName": "renovate/webpack-5.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/webpack/webpack", "currentVersion": "5.67.0", "isSingleVersion": true, "fixedVersion": "5.67.0" }, { "depType": "devDependencies", "depName": "webpack-bundle-analyzer", "currentValue": "4.5.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "4.5.0", "depIndex": 56, "updates": [ { "bucket": "non-major", "newVersion": "4.7.0", "newValue": "4.7.0", "releaseTimestamp": "2022-10-26T07:08:59.099Z", "newMajor": 4, "newMinor": 7, "updateType": "minor", "branchName": "renovate/webpack-bundle-analyzer-4.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/webpack-contrib/webpack-bundle-analyzer", "currentVersion": "4.5.0", "isSingleVersion": true, "fixedVersion": "4.5.0" }, { "depType": "devDependencies", "depName": "webpack-bundle-tracker", "currentValue": "1.4.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "1.4.0", "depIndex": 57, "updates": [ { "bucket": "non-major", "newVersion": "1.6.0", "newValue": "1.6.0", "releaseTimestamp": "2022-06-20T14:56:04.602Z", "newMajor": 1, "newMinor": 6, "updateType": "minor", "branchName": "renovate/webpack-bundle-tracker-1.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/django-webpack/webpack-bundle-tracker", "currentVersion": "1.4.0", "isSingleVersion": true, "fixedVersion": "1.4.0" }, { "depType": "devDependencies", "depName": "webpack-cli", "currentValue": "4.9.2", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "4.9.2", "depIndex": 58, "updates": [ { "bucket": "non-major", "newVersion": "4.10.0", "newValue": "4.10.0", "releaseTimestamp": "2022-06-13T00:40:03.051Z", "newMajor": 4, "newMinor": 10, "updateType": "minor", "branchName": "renovate/webpack-cli-4.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/webpack/webpack-cli", "homepage": "https://github.com/webpack/webpack-cli/tree/master/packages/webpack-cli", "currentVersion": "4.9.2", "isSingleVersion": true, "fixedVersion": "4.9.2" }, { "depType": "devDependencies", "depName": "webpack-merge", "currentValue": "5.8.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "5.8.0", "depIndex": 59, "updates": [], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/survivejs/webpack-merge", "currentVersion": "5.8.0", "fixedVersion": "5.8.0" }, { "depType": "devDependencies", "depName": "xo", "currentValue": "0.47.0", "datasource": "npm", "prettyDepType": "devDependency", "lockedVersion": "0.47.0", "depIndex": 60, "updates": [ { "bucket": "non-major", "newVersion": "0.52.4", "newValue": "0.52.4", "releaseTimestamp": "2022-10-04T12:15:14.670Z", "newMajor": 0, "newMinor": 52, "updateType": "minor", "branchName": "renovate/xo-0.x" } ], "warnings": [], "versioning": "npm", "sourceUrl": "https://github.com/xojs/xo", "currentVersion": "0.47.0", "isSingleVersion": true, "fixedVersion": "0.47.0" }, { "depType": "volta", "depName": "node", "currentValue": "12.22.11", "datasource": "github-tags", "packageName": "nodejs/node", "versioning": "node", "commitMessageTopic": "Node.js", "prettyDepType": "volta", "lockedVersion": null, "depIndex": 61, "updates": [ { "bucket": "non-major", "newVersion": "v12.22.12", "newValue": "12.22.12", "releaseTimestamp": "2022-04-05T12:08:12.000Z", "newMajor": 12, "newMinor": 22, "updateType": "patch", "branchName": "renovate/node-12.x" }, { "bucket": "major", "newVersion": "v18.12.0", "newValue": "18.12.0", "releaseTimestamp": "2022-10-25T21:11:12.000Z", "newMajor": 18, "newMinor": 12, "updateType": "major", "branchName": "renovate/node-18.x" } ], "warnings": [], "sourceUrl": "https://github.com/nodejs/node", "currentVersion": "12.22.11", "isSingleVersion": true, "fixedVersion": "12.22.11" } ], "packageJsonName": "hatch", "packageFileVersion": "1.0.0", "npmrc": "***********", "npmLock": "package-lock.json", "managerData": { "yarnZeroInstall": false, "hasPackageManager": false }, "skipInstalls": true, "constraints": { "npm": "<7" }, "lockFiles": [ "package-lock.json" ] } ], "poetry": [ { "packageFile": "pyproject.toml", "deps": [ { "depName": "Django", "depType": "dependencies", "currentValue": "3.2.16", "managerData": { "nestedVersion": true }, "datasource": "pypi", "versioning": "pep440", "depIndex": 0, "updates": [ { "bucket": "major", "newVersion": "4.1.3", "newValue": "4.1.3", "releaseTimestamp": "2022-11-01T06:18:15.000Z", "newMajor": 4, "newMinor": 1, "updateType": "major", "branchName": "renovate/django-4.x" } ], "warnings": [], "sourceUrl": "https://github.com/django/django", "homepage": "https://www.djangoproject.com/", "changelogUrl": "https://github.com/django/django/tree/master/docs/releases", "currentVersion": "3.2.16", "isSingleVersion": true, "fixedVersion": "3.2.16" }, { "depName": "dj-database-url", "depType": "dependencies", "currentValue": "0.5.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.5.0", "versioning": "pep440", "depIndex": 1, "updates": [ { "bucket": "major", "newVersion": "1.0.0", "newValue": "1.0.0", "releaseTimestamp": "2022-07-29T12:29:50.000Z", "newMajor": 1, "newMinor": 0, "updateType": "major", "branchName": "renovate/dj-database-url-1.x" } ], "warnings": [], "sourceUrl": "https://github.com/jazzband/dj-database-url", "currentVersion": "0.5.0", "isSingleVersion": true, "fixedVersion": "0.5.0" }, { "depName": "django-anymail", "depType": "dependencies", "currentValue": "8.4", "managerData": { "nestedVersion": true }, "datasource": "pypi", "lockedVersion": "8.4", "versioning": "pep440", "depIndex": 2, "updates": [ { "bucket": "non-major", "newVersion": "8.6", "newValue": "8.6", "releaseTimestamp": "2022-05-15T17:17:03.000Z", "newMajor": 8, "newMinor": 6, "updateType": "minor", "branchName": "renovate/django-anymail-8.x" } ], "warnings": [], "sourceUrl": "https://github.com/anymail/django-anymail", "changelogUrl": "https://anymail.readthedocs.io/en/v8.6/changelog/", "currentVersion": "8.4", "isSingleVersion": true, "fixedVersion": "8.4" }, { "depName": "django-contact-form", "depType": "dependencies", "currentValue": "1.9", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "1.9", "versioning": "pep440", "depIndex": 3, "updates": [ { "bucket": "major", "newVersion": "2.0.1", "newValue": "2.0.1", "releaseTimestamp": "2022-05-31T05:52:30.000Z", "newMajor": 2, "newMinor": 0, "updateType": "major", "branchName": "renovate/django-contact-form-2.x" } ], "warnings": [], "sourceUrl": "https://github.com/ubernostrum/django-contact-form", "currentVersion": "1.9", "isSingleVersion": true, "fixedVersion": "1.9" }, { "depName": "django-countries", "depType": "dependencies", "currentValue": "7.2.1", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "7.2.1", "versioning": "pep440", "depIndex": 4, "updates": [ { "bucket": "non-major", "newVersion": "7.4.2", "newValue": "7.4.2", "releaseTimestamp": "2022-10-09T20:58:18.000Z", "newMajor": 7, "newMinor": 4, "updateType": "minor", "branchName": "renovate/django-countries-7.x" } ], "warnings": [], "sourceUrl": "https://github.com/SmileyChris/django-countries", "currentVersion": "7.2.1", "isSingleVersion": true, "fixedVersion": "7.2.1" }, { "depName": "django-el-pagination", "depType": "dependencies", "currentValue": "3.3.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "3.3.0", "versioning": "pep440", "depIndex": 5, "updates": [], "warnings": [], "sourceUrl": "https://github.com/shtalinberg/django-el-pagination", "currentVersion": "3.3.0", "fixedVersion": "3.3.0" }, { "depName": "django-lockdown", "depType": "dependencies", "currentValue": "4.0.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "4.0.0", "versioning": "pep440", "depIndex": 6, "updates": [], "warnings": [], "sourceUrl": "https://github.com/Dunedan/django-lockdown", "currentVersion": "4.0.0", "fixedVersion": "4.0.0" }, { "depName": "django-modeltranslation", "depType": "dependencies", "currentValue": "0.17.5", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.17.5", "versioning": "pep440", "depIndex": 7, "updates": [ { "bucket": "non-major", "newVersion": "0.18.5", "newValue": "0.18.5", "releaseTimestamp": "2022-10-12T12:21:32.000Z", "newMajor": 0, "newMinor": 18, "updateType": "minor", "branchName": "renovate/django-modeltranslation-0.x" } ], "warnings": [], "sourceUrl": "https://github.com/deschler/django-modeltranslation", "currentVersion": "0.17.5", "isSingleVersion": true, "fixedVersion": "0.17.5" }, { "depName": "django-slugger", "depType": "dependencies", "currentValue": "1.1.2", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "1.1.2", "versioning": "pep440", "depIndex": 8, "updates": [], "warnings": [], "sourceUrl": "https://gitlab.com/dspechnikov/django-slugger", "currentVersion": "1.1.2", "fixedVersion": "1.1.2" }, { "depName": "django-storages", "depType": "dependencies", "currentValue": "1.11.1", "managerData": { "nestedVersion": true }, "datasource": "pypi", "lockedVersion": "1.11.1", "versioning": "pep440", "depIndex": 9, "updates": [ { "bucket": "non-major", "newVersion": "1.13.1", "newValue": "1.13.1", "releaseTimestamp": "2022-08-06T11:45:50.000Z", "newMajor": 1, "newMinor": 13, "updateType": "minor", "branchName": "renovate/django-storages-1.x" } ], "warnings": [], "sourceUrl": "https://github.com/jschneier/django-storages", "changelogUrl": "https://github.com/jschneier/django-storages/blob/master/CHANGELOG.rst", "currentVersion": "1.11.1", "isSingleVersion": true, "fixedVersion": "1.11.1" }, { "depName": "django-webpack-loader", "depType": "dependencies", "currentValue": "1.4.1", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "1.4.1", "versioning": "pep440", "depIndex": 10, "updates": [ { "bucket": "non-major", "newVersion": "1.6.0", "newValue": "1.6.0", "releaseTimestamp": "2022-06-20T16:09:50.000Z", "newMajor": 1, "newMinor": 6, "updateType": "minor", "branchName": "renovate/django-webpack-loader-1.x" } ], "warnings": [], "sourceUrl": "https://github.com/django-webpack/django-webpack-loader", "currentVersion": "1.4.1", "isSingleVersion": true, "fixedVersion": "1.4.1" }, { "depName": "furl", "depType": "dependencies", "currentValue": "2.1.3", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "2.1.3", "versioning": "pep440", "depIndex": 11, "updates": [], "warnings": [], "sourceUrl": "https://github.com/gruns/furl", "currentVersion": "2.1.3", "fixedVersion": "2.1.3" }, { "depName": "gunicorn", "depType": "dependencies", "currentValue": "20.1.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "20.1.0", "versioning": "pep440", "depIndex": 12, "updates": [], "warnings": [], "sourceUrl": "https://github.com/benoitc/gunicorn", "homepage": "https://gunicorn.org", "currentVersion": "20.1.0", "fixedVersion": "20.1.0" }, { "depName": "mozilla-django-oidc", "depType": "dependencies", "currentValue": "2.0.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "2.0.0", "versioning": "pep440", "depIndex": 13, "updates": [], "warnings": [], "sourceUrl": "https://github.com/mozilla/mozilla-django-oidc", "currentVersion": "2.0.0", "fixedVersion": "2.0.0" }, { "depName": "progress", "depType": "dependencies", "currentValue": "1.6", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "1.6", "versioning": "pep440", "depIndex": 14, "updates": [], "warnings": [], "sourceUrl": "https://github.com/verigak/progress", "currentVersion": "1.6", "fixedVersion": "1.6" }, { "depName": "psycopg2", "depType": "dependencies", "currentValue": "2.9.5", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "2.9.5", "versioning": "pep440", "depIndex": 15, "updates": [], "warnings": [], "sourceUrl": "https://github.com/psycopg/psycopg2", "homepage": "https://psycopg.org/", "changelogUrl": "https://initd.org/psycopg/articles/tag/release/", "currentVersion": "2.9.5", "fixedVersion": "2.9.5" }, { "depName": "requests", "depType": "dependencies", "currentValue": "2.26.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "2.26.0", "versioning": "pep440", "depIndex": 16, "updates": [ { "bucket": "non-major", "newVersion": "2.28.1", "newValue": "2.28.1", "releaseTimestamp": "2022-06-29T15:13:40.000Z", "newMajor": 2, "newMinor": 28, "updateType": "minor", "branchName": "renovate/requests-2.x" } ], "warnings": [], "sourceUrl": "https://github.com/psf/requests", "homepage": "https://requests.readthedocs.io", "changelogUrl": "https://github.com/psf/requests/blob/master/HISTORY.md", "currentVersion": "2.26.0", "isSingleVersion": true, "fixedVersion": "2.26.0" }, { "depName": "sentry-sdk", "depType": "dependencies", "currentValue": "1.5.8", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "1.5.8", "versioning": "pep440", "depIndex": 17, "updates": [ { "bucket": "non-major", "newVersion": "1.10.1", "newValue": "1.10.1", "releaseTimestamp": "2022-10-21T14:39:28.000Z", "newMajor": 1, "newMinor": 10, "updateType": "minor", "branchName": "renovate/sentry-sdk-1.x" } ], "warnings": [], "sourceUrl": "https://github.com/getsentry/sentry-python", "changelogUrl": "https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md", "currentVersion": "1.5.8", "isSingleVersion": true, "fixedVersion": "1.5.8" }, { "depName": "wagtail", "depType": "dependencies", "currentValue": "2.15.2", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "2.15.2", "versioning": "pep440", "depIndex": 18, "updates": [ { "bucket": "non-major", "newVersion": "2.16.3", "newValue": "2.16.3", "releaseTimestamp": "2022-09-05T13:18:43.000Z", "newMajor": 2, "newMinor": 16, "updateType": "minor", "branchName": "renovate/wagtail-2.x" }, { "bucket": "major", "newVersion": "4.1", "newValue": "4.1", "releaseTimestamp": "2022-11-01T11:51:51.000Z", "newMajor": 4, "newMinor": 1, "updateType": "major", "branchName": "renovate/wagtail-4.x" } ], "warnings": [], "sourceUrl": "https://github.com/wagtail/wagtail", "homepage": "https://wagtail.org/", "changelogUrl": "https://github.com/wagtail/wagtail/tree/master/docs/releases", "currentVersion": "2.15.2", "isSingleVersion": true, "fixedVersion": "2.15.2" }, { "depName": "whitenoise", "depType": "dependencies", "currentValue": "5.3.0", "managerData": { "nestedVersion": true }, "datasource": "pypi", "lockedVersion": "5.3.0", "versioning": "pep440", "depIndex": 19, "updates": [ { "bucket": "major", "newVersion": "6.2.0", "newValue": "6.2.0", "releaseTimestamp": "2022-06-05T15:29:23.000Z", "newMajor": 6, "newMinor": 2, "updateType": "major", "branchName": "renovate/whitenoise-6.x" } ], "warnings": [], "sourceUrl": "https://github.com/evansd/whitenoise", "changelogUrl": "https://whitenoise.evans.io/en/stable/changelog.html", "currentVersion": "5.3.0", "isSingleVersion": true, "fixedVersion": "5.3.0" }, { "depName": "envparse", "depType": "dependencies", "currentValue": "0.2.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.2.0", "versioning": "pep440", "depIndex": 20, "updates": [], "warnings": [], "sourceUrl": "https://github.com/rconradharris/envparse", "currentVersion": "0.2.0", "fixedVersion": "0.2.0" }, { "depName": "rules", "depType": "dependencies", "currentValue": "3.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "3.0", "versioning": "pep440", "depIndex": 21, "updates": [ { "bucket": "non-major", "newVersion": "3.3", "newValue": "3.3", "releaseTimestamp": "2022-03-23T08:54:01.000Z", "newMajor": 3, "newMinor": 3, "updateType": "minor", "branchName": "renovate/rules-3.x" } ], "warnings": [], "sourceUrl": "https://github.com/dfunckt/django-rules", "currentVersion": "3.0", "isSingleVersion": true, "fixedVersion": "3.0" }, { "depName": "django-allauth", "depType": "dependencies", "currentValue": "0.49.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.49.0", "versioning": "pep440", "depIndex": 22, "updates": [ { "bucket": "non-major", "newVersion": "0.51.0", "newValue": "0.51.0", "releaseTimestamp": "2022-06-07T09:47:35.000Z", "newMajor": 0, "newMinor": 51, "updateType": "minor", "branchName": "renovate/django-allauth-0.x" } ], "warnings": [], "sourceUrl": "https://github.com/pennersr/django-allauth", "homepage": "http://www.intenct.nl/projects/django-allauth/", "changelogUrl": "https://github.com/pennersr/django-allauth/blob/master/ChangeLog.rst", "currentVersion": "0.49.0", "isSingleVersion": true, "fixedVersion": "0.49.0" }, { "depName": "PyGithub", "depType": "dependencies", "currentValue": "1.55", "managerData": { "nestedVersion": false }, "datasource": "pypi", "versioning": "pep440", "depIndex": 23, "updates": [ { "bucket": "non-major", "newVersion": "1.56", "newValue": "1.56", "releaseTimestamp": "2022-10-13T01:24:43.000Z", "newMajor": 1, "newMinor": 56, "updateType": "minor", "branchName": "renovate/pygithub-1.x" } ], "warnings": [], "sourceUrl": "https://github.com/pygithub/pygithub", "currentVersion": "1.55", "isSingleVersion": true, "fixedVersion": "1.55" }, { "depName": "geoip2", "depType": "dependencies", "currentValue": "4.4.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "4.4.0", "versioning": "pep440", "depIndex": 24, "updates": [ { "bucket": "non-major", "newVersion": "4.6.0", "newValue": "4.6.0", "releaseTimestamp": "2022-06-21T16:18:49.000Z", "newMajor": 4, "newMinor": 6, "updateType": "minor", "branchName": "renovate/geoip2-4.x" } ], "warnings": [], "sourceUrl": "https://github.com/maxmind/GeoIP2-python", "homepage": "http://www.maxmind.com/", "currentVersion": "4.4.0", "isSingleVersion": true, "fixedVersion": "4.4.0" }, { "depName": "django-honeypot", "depType": "dependencies", "currentValue": "1.0.3", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "1.0.3", "versioning": "pep440", "depIndex": 25, "updates": [], "warnings": [], "sourceUrl": "https://github.com/jamesturk/django-honeypot", "currentVersion": "1.0.3", "fixedVersion": "1.0.3" }, { "depName": "pymarc", "depType": "dependencies", "currentValue": "4.1.3", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "4.1.3", "versioning": "pep440", "depIndex": 26, "updates": [ { "bucket": "non-major", "newVersion": "4.2.1", "newValue": "4.2.1", "releaseTimestamp": "2022-10-17T20:22:45.000Z", "newMajor": 4, "newMinor": 2, "updateType": "minor", "branchName": "renovate/pymarc-4.x" } ], "warnings": [], "sourceUrl": "https://gitlab.com/pymarc/pymarc", "currentVersion": "4.1.3", "isSingleVersion": true, "fixedVersion": "4.1.3" }, { "depName": "marcx", "depType": "dependencies", "currentValue": "0.2.12", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.2.12", "versioning": "pep440", "depIndex": 27, "updates": [], "warnings": [], "sourceUrl": "https://github.com/ubleipzig/marcx", "currentVersion": "0.2.12", "fixedVersion": "0.2.12" }, { "depName": "langdetect", "depType": "dependencies", "currentValue": "1.0.9", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "1.0.9", "versioning": "pep440", "depIndex": 28, "updates": [], "warnings": [], "sourceUrl": "https://github.com/Mimino666/langdetect", "currentVersion": "1.0.9", "fixedVersion": "1.0.9" }, { "depName": "django-import-export", "depType": "dependencies", "currentValue": "2.7.1", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "2.7.1", "versioning": "pep440", "depIndex": 29, "updates": [ { "bucket": "non-major", "newVersion": "2.9.0", "newValue": "2.9.0", "releaseTimestamp": "2022-09-14T19:59:32.000Z", "newMajor": 2, "newMinor": 9, "updateType": "minor", "branchName": "renovate/django-import-export-2.x" }, { "bucket": "major", "newVersion": "3.0.1", "newValue": "3.0.1", "releaseTimestamp": "2022-10-18T20:13:40.000Z", "newMajor": 3, "newMinor": 0, "updateType": "major", "branchName": "renovate/django-import-export-3.x" } ], "warnings": [], "sourceUrl": "https://github.com/django-import-export/django-import-export", "changelogUrl": "https://django-import-export.readthedocs.io/en/stable/changelog.html", "currentVersion": "2.7.1", "isSingleVersion": true, "fixedVersion": "2.7.1" }, { "depName": "django-select2", "depType": "dependencies", "currentValue": "7.9.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "7.9.0", "versioning": "pep440", "depIndex": 30, "updates": [ { "bucket": "non-major", "newVersion": "7.11.0", "newValue": "7.11.0", "releaseTimestamp": "2022-10-30T22:03:39.000Z", "newMajor": 7, "newMinor": 11, "updateType": "minor", "branchName": "renovate/django-select2-7.x" } ], "warnings": [], "sourceUrl": "https://github.com/codingjoe/django-select2", "currentVersion": "7.9.0", "isSingleVersion": true, "fixedVersion": "7.9.0" }, { "depName": "netaddr", "depType": "dependencies", "currentValue": "0.8.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.8.0", "versioning": "pep440", "depIndex": 31, "updates": [], "warnings": [], "sourceUrl": "https://github.com/drkjam/netaddr", "currentVersion": "0.8.0", "fixedVersion": "0.8.0" }, { "depName": "django-su", "depType": "dependencies", "currentValue": "0.9.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.9.0", "versioning": "pep440", "depIndex": 32, "updates": [ { "bucket": "major", "newVersion": "1.0.0", "newValue": "1.0.0", "releaseTimestamp": "2022-04-01T14:56:01.000Z", "newMajor": 1, "newMinor": 0, "updateType": "major", "branchName": "renovate/django-su-1.x" } ], "warnings": [], "sourceUrl": "https://github.com/adamcharnock/django-su", "currentVersion": "0.9.0", "isSingleVersion": true, "fixedVersion": "0.9.0" }, { "depName": "srt", "depType": "dependencies", "currentValue": "3.5.2", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "3.5.2", "versioning": "pep440", "depIndex": 33, "updates": [], "warnings": [], "sourceUrl": "https://github.com/cdown/srt", "currentVersion": "3.5.2", "fixedVersion": "3.5.2" }, { "depName": "colour", "depType": "dependencies", "currentValue": "0.1.5", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.1.5", "versioning": "pep440", "depIndex": 34, "updates": [], "warnings": [], "sourceUrl": "https://github.com/vaab/colour", "currentVersion": "0.1.5", "fixedVersion": "0.1.5" }, { "depName": "django-colorfield", "depType": "dependencies", "currentValue": "0.4.3", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.4.3", "versioning": "pep440", "depIndex": 35, "updates": [ { "bucket": "non-major", "newVersion": "0.7.2", "newValue": "0.7.2", "releaseTimestamp": "2022-07-19T08:19:36.000Z", "newMajor": 0, "newMinor": 7, "updateType": "minor", "branchName": "renovate/django-colorfield-0.x" } ], "warnings": [], "sourceUrl": "https://github.com/fabiocaccamo/django-colorfield", "currentVersion": "0.4.3", "isSingleVersion": true, "fixedVersion": "0.4.3" }, { "depName": "djangorestframework", "depType": "dependencies", "currentValue": "3.12.4", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "3.12.4", "versioning": "pep440", "depIndex": 36, "updates": [ { "bucket": "non-major", "newVersion": "3.14.0", "newValue": "3.14.0", "releaseTimestamp": "2022-09-22T11:38:41.000Z", "newMajor": 3, "newMinor": 14, "updateType": "minor", "branchName": "renovate/djangorestframework-3.x" } ], "warnings": [], "sourceUrl": "https://github.com/encode/django-rest-framework", "homepage": "https://www.django-rest-framework.org/", "changelogUrl": "https://www.django-rest-framework.org/community/release-notes/", "currentVersion": "3.12.4", "isSingleVersion": true, "fixedVersion": "3.12.4" }, { "depName": "PyJWT", "depType": "dependencies", "currentValue": "^2.4.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "versioning": "poetry", "depIndex": 37, "updates": [], "warnings": [], "sourceUrl": "https://github.com/jpadilla/pyjwt", "currentVersion": "2.6.0" }, { "depName": "uvicorn", "depType": "dependencies", "currentValue": "^0.17.5", "managerData": { "nestedVersion": true }, "datasource": "pypi", "lockedVersion": "0.17.6", "versioning": "poetry", "depIndex": 38, "updates": [ { "bucket": "non-major", "newVersion": "0.19.0", "newValue": "^0.19.0", "releaseTimestamp": "2022-10-19T19:59:41.000Z", "newMajor": 0, "newMinor": 19, "updateType": "minor", "isRange": true, "branchName": "renovate/uvicorn-0.x" } ], "warnings": [], "sourceUrl": "https://github.com/encode/uvicorn", "changelogUrl": "https://github.com/encode/uvicorn/blob/master/CHANGELOG.md", "currentVersion": "0.17.6", "isSingleVersion": false, "fixedVersion": "0.17.6" }, { "depName": "starlette", "depType": "dependencies", "currentValue": "^0.18.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.18.0", "versioning": "poetry", "depIndex": 39, "updates": [ { "bucket": "non-major", "newVersion": "0.21.0", "newValue": "^0.21.0", "releaseTimestamp": "2022-09-26T17:10:58.000Z", "newMajor": 0, "newMinor": 21, "updateType": "minor", "isRange": true, "branchName": "renovate/starlette-0.x" } ], "warnings": [], "sourceUrl": "https://github.com/encode/starlette", "currentVersion": "0.18.0", "isSingleVersion": false, "fixedVersion": "0.18.0" }, { "depName": "websockets", "depType": "dependencies", "currentValue": "^10.2", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "10.2", "versioning": "poetry", "depIndex": 40, "updates": [], "warnings": [], "sourceUrl": "https://github.com/aaugustin/websockets", "changelogUrl": "https://websockets.readthedocs.io/en/stable/project/changelog.html", "currentVersion": "10.2", "fixedVersion": "10.2" }, { "depName": "jsonnet", "depType": "dependencies", "currentValue": "^0.18.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.18.0", "versioning": "poetry", "depIndex": 41, "updates": [ { "bucket": "non-major", "newVersion": "0.19.1", "newValue": "^0.19.0", "releaseTimestamp": "2022-10-27T19:42:32.000Z", "newMajor": 0, "newMinor": 19, "updateType": "minor", "isRange": true, "branchName": "renovate/jsonnet-0.x" } ], "warnings": [], "sourceUrl": "https://github.com/google/jsonnet", "homepage": "https://jsonnet.org", "currentVersion": "0.18.0", "isSingleVersion": false, "fixedVersion": "0.18.0" }, { "depName": "python-magic", "depType": "dependencies", "currentValue": "^0.4.25", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.4.25", "versioning": "poetry", "depIndex": 42, "updates": [], "warnings": [], "sourceUrl": "https://github.com/ahupp/python-magic", "currentVersion": "0.4.25", "fixedVersion": "0.4.25" }, { "depName": "PyMuPDF", "depType": "dependencies", "currentValue": "^1.19.6", "managerData": { "nestedVersion": false }, "datasource": "pypi", "versioning": "poetry", "depIndex": 43, "updates": [], "warnings": [], "sourceUrl": "https://github.com/pymupdf/PyMuPDF", "changelogUrl": "https://pymupdf.readthedocs.io/en/latest/changes.html", "currentVersion": "1.20.2" }, { "depName": "coverage", "depType": "dev-dependencies", "currentValue": "5.5", "managerData": { "nestedVersion": true }, "datasource": "pypi", "lockedVersion": "5.5", "versioning": "pep440", "depIndex": 44, "updates": [ { "bucket": "major", "newVersion": "6.5.0", "newValue": "6.5.0", "releaseTimestamp": "2022-09-29T20:04:39.000Z", "newMajor": 6, "newMinor": 5, "updateType": "major", "branchName": "renovate/coverage-6.x" } ], "warnings": [], "sourceUrl": "https://github.com/nedbat/coveragepy", "currentVersion": "5.5", "isSingleVersion": true, "fixedVersion": "5.5" }, { "depName": "django-debug-toolbar", "depType": "dev-dependencies", "currentValue": "3.2.4", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "3.2.4", "versioning": "pep440", "depIndex": 45, "updates": [ { "bucket": "non-major", "newVersion": "3.7.0", "newValue": "3.7.0", "releaseTimestamp": "2022-09-25T16:07:07.000Z", "newMajor": 3, "newMinor": 7, "updateType": "minor", "branchName": "renovate/django-debug-toolbar-3.x" } ], "warnings": [], "sourceUrl": "https://github.com/jazzband/django-debug-toolbar", "changelogUrl": "https://django-debug-toolbar.readthedocs.io/en/latest/changes.html", "currentVersion": "3.2.4", "isSingleVersion": true, "fixedVersion": "3.2.4" }, { "depName": "django-pdb", "depType": "dev-dependencies", "currentValue": "0.6.2", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.6.2", "versioning": "pep440", "depIndex": 46, "updates": [], "warnings": [], "sourceUrl": "https://github.com/tomchristie/django-pdb", "currentVersion": "0.6.2", "fixedVersion": "0.6.2" }, { "depName": "flake8", "depType": "dev-dependencies", "currentValue": "3.9.2", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "3.9.2", "versioning": "pep440", "depIndex": 47, "updates": [ { "bucket": "major", "newVersion": "5.0.4", "newValue": "5.0.4", "releaseTimestamp": "2022-08-03T23:21:25.000Z", "newMajor": 5, "newMinor": 0, "updateType": "major", "branchName": "renovate/flake8-5.x" } ], "warnings": [], "sourceUrl": "https://github.com/pycqa/flake8", "changelogUrl": "https://flake8.pycqa.org/en/latest/release-notes/index.html", "currentVersion": "3.9.2", "isSingleVersion": true, "fixedVersion": "3.9.2" }, { "depName": "pdbpp", "depType": "dev-dependencies", "currentValue": "0.10.3", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.10.3", "versioning": "pep440", "depIndex": 48, "updates": [], "warnings": [], "sourceUrl": "https://github.com/antocuni/pdb", "currentVersion": "0.10.3", "fixedVersion": "0.10.3" }, { "depName": "pytest-django", "depType": "dev-dependencies", "currentValue": "4.4.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "4.4.0", "versioning": "pep440", "depIndex": 49, "updates": [ { "bucket": "non-major", "newVersion": "4.5.2", "newValue": "4.5.2", "releaseTimestamp": "2021-12-07T14:26:57.000Z", "newMajor": 4, "newMinor": 5, "updateType": "minor", "branchName": "renovate/pytest-django-4.x" } ], "warnings": [], "sourceUrl": "https://github.com/pytest-dev/pytest-django", "homepage": "https://pytest-django.readthedocs.io/", "changelogUrl": "https://pytest-django.readthedocs.io/en/latest/changelog.html", "currentVersion": "4.4.0", "isSingleVersion": true, "fixedVersion": "4.4.0" }, { "depName": "pytest", "depType": "dev-dependencies", "currentValue": "6.2.5", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "6.2.5", "versioning": "pep440", "depIndex": 50, "updates": [ { "bucket": "major", "newVersion": "7.2.0", "newValue": "7.2.0", "releaseTimestamp": "2022-10-25T07:58:10.000Z", "newMajor": 7, "newMinor": 2, "updateType": "major", "branchName": "renovate/pytest-7.x" } ], "warnings": [], "sourceUrl": "https://github.com/pytest-dev/pytest", "homepage": "https://docs.pytest.org/en/latest/", "changelogUrl": "https://docs.pytest.org/en/stable/changelog.html", "currentVersion": "6.2.5", "isSingleVersion": true, "fixedVersion": "6.2.5" }, { "depName": "watchdog", "depType": "dev-dependencies", "currentValue": "2.1.7", "managerData": { "nestedVersion": true }, "datasource": "pypi", "lockedVersion": "2.1.7", "versioning": "pep440", "depIndex": 51, "updates": [ { "bucket": "non-major", "newVersion": "2.1.9", "newValue": "2.1.9", "releaseTimestamp": "2022-06-10T10:28:22.000Z", "newMajor": 2, "newMinor": 1, "updateType": "patch", "branchName": "renovate/watchdog-2.x" } ], "warnings": [], "sourceUrl": "https://github.com/gorakhargosh/watchdog", "changelogUrl": "https://github.com/gorakhargosh/watchdog/blob/master/changelog.rst", "currentVersion": "2.1.7", "isSingleVersion": true, "fixedVersion": "2.1.7" }, { "depName": "honcho", "depType": "dev-dependencies", "currentValue": "1.1.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "1.1.0", "versioning": "pep440", "depIndex": 52, "updates": [], "warnings": [], "sourceUrl": "https://github.com/nickstenning/honcho", "currentVersion": "1.1.0", "fixedVersion": "1.1.0" }, { "depName": "pytest-factoryboy", "depType": "dev-dependencies", "currentValue": "2.1.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "2.1.0", "versioning": "pep440", "depIndex": 53, "updates": [ { "bucket": "non-major", "newVersion": "2.5.0", "newValue": "2.5.0", "releaseTimestamp": "2022-06-14T18:08:49.000Z", "newMajor": 2, "newMinor": 5, "updateType": "minor", "branchName": "renovate/pytest-factoryboy-2.x" } ], "warnings": [], "sourceUrl": "https://github.com/pytest-dev/pytest-factoryboy", "homepage": "https://pytest-factoryboy.readthedocs.io/", "currentVersion": "2.1.0", "isSingleVersion": true, "fixedVersion": "2.1.0" }, { "depName": "responses", "depType": "dev-dependencies", "currentValue": "0.14.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.14.0", "versioning": "pep440", "depIndex": 54, "updates": [ { "bucket": "non-major", "newVersion": "0.22.0", "newValue": "0.22.0", "releaseTimestamp": "2022-10-11T16:34:46.000Z", "newMajor": 0, "newMinor": 22, "updateType": "minor", "branchName": "renovate/responses-0.x" } ], "warnings": [], "sourceUrl": "https://github.com/getsentry/responses", "changelogUrl": "https://github.com/getsentry/responses/blob/master/CHANGES", "currentVersion": "0.14.0", "isSingleVersion": true, "fixedVersion": "0.14.0" }, { "depName": "pytest-responses", "depType": "dev-dependencies", "currentValue": "0.5.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.5.0", "versioning": "pep440", "depIndex": 55, "updates": [ { "bucket": "non-major", "newVersion": "0.5.1", "newValue": "0.5.1", "releaseTimestamp": "2022-10-11T17:15:40.000Z", "newMajor": 0, "newMinor": 5, "updateType": "patch", "branchName": "renovate/pytest-responses-0.x" } ], "warnings": [], "sourceUrl": "https://github.com/getsentry/pytest-responses", "currentVersion": "0.5.0", "isSingleVersion": true, "fixedVersion": "0.5.0" }, { "depName": "pytest-cov", "depType": "dev-dependencies", "currentValue": "2.12.1", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "2.12.1", "versioning": "pep440", "depIndex": 56, "updates": [ { "bucket": "major", "newVersion": "4.0.0", "newValue": "4.0.0", "releaseTimestamp": "2022-09-28T18:39:21.000Z", "newMajor": 4, "newMinor": 0, "updateType": "major", "branchName": "renovate/pytest-cov-4.x" } ], "warnings": [], "sourceUrl": "https://github.com/pytest-dev/pytest-cov", "changelogUrl": "https://pytest-cov.readthedocs.io/en/latest/changelog.html", "currentVersion": "2.12.1", "isSingleVersion": true, "fixedVersion": "2.12.1" }, { "depName": "mutmut", "depType": "dev-dependencies", "currentValue": "2.2.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "2.2.0", "versioning": "pep440", "depIndex": 57, "updates": [ { "bucket": "non-major", "newVersion": "2.4.2", "newValue": "2.4.2", "releaseTimestamp": "2022-10-29T19:16:17.000Z", "newMajor": 2, "newMinor": 4, "updateType": "minor", "branchName": "renovate/mutmut-2.x" } ], "warnings": [], "sourceUrl": "https://github.com/boxed/mutmut", "currentVersion": "2.2.0", "isSingleVersion": true, "fixedVersion": "2.2.0" }, { "depName": "pgcli", "depType": "dev-dependencies", "currentValue": "3.2.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "3.2.0", "versioning": "pep440", "depIndex": 58, "updates": [ { "bucket": "non-major", "newVersion": "3.5.0", "newValue": "3.5.0", "releaseTimestamp": "2022-09-15T22:29:04.000Z", "newMajor": 3, "newMinor": 5, "updateType": "minor", "branchName": "renovate/pgcli-3.x" } ], "warnings": [], "homepage": "http://pgcli.com", "currentVersion": "3.2.0", "isSingleVersion": true, "fixedVersion": "3.2.0" }, { "depName": "pytest-mock", "depType": "dev-dependencies", "currentValue": "3.6.1", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "3.6.1", "versioning": "pep440", "depIndex": 59, "updates": [ { "bucket": "non-major", "newVersion": "3.10.0", "newValue": "3.10.0", "releaseTimestamp": "2022-10-05T18:52:50.000Z", "newMajor": 3, "newMinor": 10, "updateType": "minor", "branchName": "renovate/pytest-mock-3.x" } ], "warnings": [], "sourceUrl": "https://github.com/pytest-dev/pytest-mock", "currentVersion": "3.6.1", "isSingleVersion": true, "fixedVersion": "3.6.1" }, { "depName": "lxml", "depType": "dev-dependencies", "currentValue": "4.9.1", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "4.9.1", "versioning": "pep440", "depIndex": 60, "updates": [], "warnings": [], "sourceUrl": "https://github.com/lxml/lxml", "homepage": "https://lxml.de/", "changelogUrl": "https://git.launchpad.net/lxml/plain/CHANGES.txt", "currentVersion": "4.9.1", "fixedVersion": "4.9.1" }, { "depName": "time-machine", "depType": "dev-dependencies", "currentValue": "2.4.0", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "2.4.0", "versioning": "pep440", "depIndex": 61, "updates": [ { "bucket": "non-major", "newVersion": "2.8.2", "newValue": "2.8.2", "releaseTimestamp": "2022-09-29T09:14:20.000Z", "newMajor": 2, "newMinor": 8, "updateType": "minor", "branchName": "renovate/time-machine-2.x" } ], "warnings": [], "sourceUrl": "https://github.com/adamchainz/time-machine", "changelogUrl": "https://github.com/adamchainz/time-machine/blob/main/HISTORY.rst", "currentVersion": "2.4.0", "isSingleVersion": true, "fixedVersion": "2.4.0" }, { "depName": "ipython", "depType": "dev-dependencies", "currentValue": "7.31.1", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "7.31.1", "versioning": "pep440", "depIndex": 62, "updates": [ { "bucket": "non-major", "newVersion": "7.34.0", "newValue": "7.34.0", "releaseTimestamp": "2022-05-28T12:30:07.000Z", "newMajor": 7, "newMinor": 34, "updateType": "minor", "branchName": "renovate/ipython-7.x" }, { "bucket": "major", "newVersion": "8.6.0", "newValue": "8.6.0", "releaseTimestamp": "2022-10-30T09:34:03.000Z", "newMajor": 8, "newMinor": 6, "updateType": "major", "branchName": "renovate/ipython-8.x" } ], "warnings": [], "sourceUrl": "https://github.com/ipython/ipython", "homepage": "https://ipython.org", "currentVersion": "7.31.1", "isSingleVersion": true, "fixedVersion": "7.31.1" }, { "depName": "wagtail-factories", "depType": "dev-dependencies", "currentValue": "2.0.1", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "2.0.1", "versioning": "pep440", "depIndex": 63, "updates": [ { "bucket": "non-major", "newVersion": "2.1.0", "newValue": "2.1.0", "releaseTimestamp": "2022-07-01T15:39:30.000Z", "newMajor": 2, "newMinor": 1, "updateType": "minor", "branchName": "renovate/wagtail-factories-2.x" }, { "bucket": "major", "newVersion": "3.1.0", "newValue": "3.1.0", "releaseTimestamp": "2022-07-28T14:53:32.000Z", "newMajor": 3, "newMinor": 1, "updateType": "major", "branchName": "renovate/wagtail-factories-3.x" } ], "warnings": [], "sourceUrl": "https://github.com/wagtail/wagtail-factories", "currentVersion": "2.0.1", "isSingleVersion": true, "fixedVersion": "2.0.1" }, { "depName": "factory-boy", "depType": "dev-dependencies", "currentValue": "3.2.1", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "3.2.1", "versioning": "pep440", "depIndex": 64, "updates": [], "warnings": [], "sourceUrl": "https://github.com/FactoryBoy/factory_boy", "currentVersion": "3.2.1", "fixedVersion": "3.2.1" }, { "depName": "django-debug-toolbar-force", "depType": "dev-dependencies", "currentValue": "0.1.8", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "0.1.8", "versioning": "pep440", "depIndex": 65, "updates": [], "warnings": [], "sourceUrl": "https://github.com/barseghyanartur/django-debug-toolbar-force", "currentVersion": "0.1.8", "fixedVersion": "0.1.8" }, { "depName": "django-extensions", "depType": "dev-dependencies", "currentValue": "3.1.5", "managerData": { "nestedVersion": false }, "datasource": "pypi", "lockedVersion": "3.1.5", "versioning": "pep440", "depIndex": 66, "updates": [ { "bucket": "non-major", "newVersion": "3.2.1", "newValue": "3.2.1", "releaseTimestamp": "2022-09-09T11:09:47.000Z", "newMajor": 3, "newMinor": 2, "updateType": "minor", "branchName": "renovate/django-extensions-3.x" } ], "warnings": [], "sourceUrl": "https://github.com/django-extensions/django-extensions", "changelogUrl": "https://github.com/django-extensions/django-extensions/blob/main/CHANGELOG.md", "currentVersion": "3.1.5", "isSingleVersion": true, "fixedVersion": "3.1.5" } ], "extractedConstraints": { "python": "^3.10" }, "lockFiles": [ "poetry.lock" ] } ], "pyenv": [ { "packageFile": ".python-version", "deps": [ { "depName": "python", "currentValue": "3.10.5", "datasource": "docker", "depIndex": 0, "updates": [], "warnings": [], "versioning": "regex:^(?\\d+)\\.(?\\d+)\\.(?\\d+)(?(a|b|rc)\\d+)?(-(?.*))?$", "currentVersion": "3.10.5", "fixedVersion": "3.10.5" } ] } ] } } DEBUG: processRepo() DEBUG: Processing 97 branches: renovate/autoprefixer-10.x, renovate/babel-monorepo, renovate/browserslist-4.x, renovate/cimg-aws-2022.x, renovate/cimg-base-2022.x, renovate/coverage-6.x, renovate/css-loader-6.x, renovate/css-minimizer-webpack-plugin-4.x, renovate/dj-database-url-1.x, renovate/django-4.x, renovate/django-allauth-0.x, renovate/django-anymail-8.x, renovate/django-colorfield-0.x, renovate/django-contact-form-2.x, renovate/django-countries-7.x, renovate/django-debug-toolbar-3.x, renovate/django-extensions-3.x, renovate/django-import-export-2.x, renovate/django-import-export-3.x, renovate/django-modeltranslation-0.x, renovate/django-select2-7.x, renovate/django-storages-1.x, renovate/django-su-1.x, renovate/django-webpack-loader-1.x, renovate/djangorestframework-3.x, renovate/do-exclusively-0.x, renovate/eslint-plugin-mocha-10.x, renovate/flake8-5.x, renovate/foundation-sites-6.x, renovate/geoip2-4.x, renovate/ipython-7.x, renovate/ipython-8.x, renovate/jquery-3.x, renovate/jsonnet-0.x, renovate/karma-6.x, renovate/major-babel-monorepo, renovate/major-uppy-monorepo, renovate/markdownlint-cli-0.x, renovate/mini-css-extract-plugin-2.x, renovate/mocha-10.x, renovate/mutmut-2.x, renovate/node-12.x, renovate/node-18.x, renovate/oryd-hydra-2.x, renovate/oryd-hydra-login-consent-node-2.x, renovate/pgcli-3.x, renovate/postcss-8.x, renovate/postcss-loader-7.x, renovate/postgres-12.x, renovate/postgres-15.x, renovate/prettier-2.x, renovate/pygithub-1.x, renovate/pymarc-4.x, renovate/pytest-7.x, renovate/pytest-cov-4.x, renovate/pytest-django-4.x, renovate/pytest-factoryboy-2.x, renovate/pytest-mock-3.x, renovate/pytest-responses-0.x, renovate/python-1.x, renovate/python-2.x, renovate/requests-2.x, renovate/responses-0.x, renovate/rules-3.x, renovate/sass-1.x, renovate/sass-loader-12.x, renovate/sass-loader-13.x, renovate/sentry-sdk-1.x, renovate/shellcheck-3.x, renovate/starlette-0.x, renovate/stylelint-14.x, renovate/stylelint-config-recommended-scss-8.x, renovate/stylelint-config-standard-29.x, renovate/stylelint-no-unsupported-browser-features-5.x, renovate/stylelint-no-unsupported-browser-features-6.x, renovate/stylelint-scss-4.x, renovate/terser-webpack-plugin-5.x, renovate/time-machine-2.x, renovate/uppy-monorepo, renovate/uuid-9.x, renovate/uvicorn-0.x, renovate/video.js-7.x, renovate/videojs-contrib-eme-4.x, renovate/videojs-contrib-eme-5.x, renovate/videojs-hotkeys-0.x, renovate/wagtail-2.x, renovate/wagtail-4.x, renovate/wagtail-factories-2.x, renovate/wagtail-factories-3.x, renovate/watchdog-2.x, renovate/webpack-5.x, renovate/webpack-bundle-analyzer-4.x, renovate/webpack-bundle-tracker-1.x, renovate/webpack-cli-4.x, renovate/webvtt-parser-2.x, renovate/whitenoise-6.x, renovate/xo-0.x DEBUG: Calculating hourly PRs remaining DEBUG: getPrList success { "pullsTotal": 440, "requestsTotal": 1, "apiQuotaAffected": true } DEBUG: currentHourStart=2022-11-01T13:00:00.000+00:00 DEBUG: PR hourly limit remaining: 0 DEBUG: Calculating prConcurrentLimit (10) DEBUG: getBranchPr(renovate/node-12.x) DEBUG: findPr(renovate/node-12.x, undefined, open) DEBUG: Found PR #1693 DEBUG: getBranchPr(renovate/autoprefixer-10.x) DEBUG: findPr(renovate/autoprefixer-10.x, undefined, open) DEBUG: Found PR #1663 DEBUG: getBranchPr(renovate/foundation-sites-6.x) DEBUG: findPr(renovate/foundation-sites-6.x, undefined, open) DEBUG: Found PR #1695 DEBUG: getBranchPr(renovate/jquery-3.x) DEBUG: findPr(renovate/jquery-3.x, undefined, open) DEBUG: Found PR #1697 DEBUG: getBranchPr(renovate/postcss-8.x) DEBUG: findPr(renovate/postcss-8.x, undefined, open) DEBUG: Found PR #1648 DEBUG: getBranchPr(renovate/pytest-responses-0.x) DEBUG: findPr(renovate/pytest-responses-0.x, undefined, open) DEBUG: findPr(renovate/pytest-responses-0.x, undefined, closed) DEBUG: getBranchPr(renovate/stylelint-no-unsupported-browser-features-5.x) DEBUG: findPr(renovate/stylelint-no-unsupported-browser-features-5.x, undefined, open) DEBUG: findPr(renovate/stylelint-no-unsupported-browser-features-5.x, undefined, closed) DEBUG: getBranchPr(renovate/terser-webpack-plugin-5.x) DEBUG: findPr(renovate/terser-webpack-plugin-5.x, undefined, open) DEBUG: findPr(renovate/terser-webpack-plugin-5.x, undefined, closed) DEBUG: getBranchPr(renovate/videojs-contrib-eme-4.x) DEBUG: findPr(renovate/videojs-contrib-eme-4.x, undefined, open) DEBUG: findPr(renovate/videojs-contrib-eme-4.x, undefined, closed) DEBUG: getBranchPr(renovate/videojs-hotkeys-0.x) DEBUG: findPr(renovate/videojs-hotkeys-0.x, undefined, open) DEBUG: findPr(renovate/videojs-hotkeys-0.x, undefined, closed) DEBUG: getBranchPr(renovate/watchdog-2.x) DEBUG: findPr(renovate/watchdog-2.x, undefined, open) DEBUG: findPr(renovate/watchdog-2.x, undefined, closed) DEBUG: getBranchPr(renovate/babel-monorepo) DEBUG: findPr(renovate/babel-monorepo, undefined, open) DEBUG: findPr(renovate/babel-monorepo, undefined, closed) DEBUG: Found PR #1172 DEBUG: getBranchPr(renovate/cimg-aws-2022.x) DEBUG: findPr(renovate/cimg-aws-2022.x, undefined, open) DEBUG: findPr(renovate/cimg-aws-2022.x, undefined, closed) DEBUG: getBranchPr(renovate/pygithub-1.x) DEBUG: findPr(renovate/pygithub-1.x, undefined, open) DEBUG: findPr(renovate/pygithub-1.x, undefined, closed) DEBUG: Found PR #1426 DEBUG: getBranchPr(renovate/browserslist-4.x) DEBUG: findPr(renovate/browserslist-4.x, undefined, open) DEBUG: findPr(renovate/browserslist-4.x, undefined, closed) DEBUG: Found PR #1347 DEBUG: getBranchPr(renovate/css-loader-6.x) DEBUG: findPr(renovate/css-loader-6.x, undefined, open) DEBUG: findPr(renovate/css-loader-6.x, undefined, closed) DEBUG: Found PR #1556 DEBUG: getBranchPr(renovate/django-allauth-0.x) DEBUG: findPr(renovate/django-allauth-0.x, undefined, open) DEBUG: findPr(renovate/django-allauth-0.x, undefined, closed) DEBUG: Found PR #1203 DEBUG: getBranchPr(renovate/django-anymail-8.x) DEBUG: findPr(renovate/django-anymail-8.x, undefined, open) DEBUG: findPr(renovate/django-anymail-8.x, undefined, closed) DEBUG: Found PR #1205 DEBUG: getBranchPr(renovate/django-colorfield-0.x) DEBUG: findPr(renovate/django-colorfield-0.x, undefined, open) DEBUG: findPr(renovate/django-colorfield-0.x, undefined, closed) DEBUG: getBranchPr(renovate/django-countries-7.x) DEBUG: findPr(renovate/django-countries-7.x, undefined, open) DEBUG: findPr(renovate/django-countries-7.x, undefined, closed) DEBUG: getBranchPr(renovate/django-debug-toolbar-3.x) DEBUG: findPr(renovate/django-debug-toolbar-3.x, undefined, open) DEBUG: findPr(renovate/django-debug-toolbar-3.x, undefined, closed) DEBUG: Found PR #1515 DEBUG: getBranchPr(renovate/django-extensions-3.x) DEBUG: findPr(renovate/django-extensions-3.x, undefined, open) DEBUG: findPr(renovate/django-extensions-3.x, undefined, closed) DEBUG: getBranchPr(renovate/django-import-export-2.x) DEBUG: findPr(renovate/django-import-export-2.x, undefined, open) DEBUG: findPr(renovate/django-import-export-2.x, undefined, closed) DEBUG: getBranchPr(renovate/django-modeltranslation-0.x) DEBUG: findPr(renovate/django-modeltranslation-0.x, undefined, open) DEBUG: findPr(renovate/django-modeltranslation-0.x, undefined, closed) DEBUG: Found PR #1171 DEBUG: getBranchPr(renovate/django-select2-7.x) DEBUG: findPr(renovate/django-select2-7.x, undefined, open) DEBUG: findPr(renovate/django-select2-7.x, undefined, closed) DEBUG: Found PR #1624 DEBUG: getBranchPr(renovate/django-storages-1.x) DEBUG: findPr(renovate/django-storages-1.x, undefined, open) DEBUG: findPr(renovate/django-storages-1.x, undefined, closed) DEBUG: getBranchPr(renovate/django-webpack-loader-1.x) DEBUG: findPr(renovate/django-webpack-loader-1.x, undefined, open) DEBUG: findPr(renovate/django-webpack-loader-1.x, undefined, closed) DEBUG: getBranchPr(renovate/djangorestframework-3.x) DEBUG: findPr(renovate/djangorestframework-3.x, undefined, open) DEBUG: findPr(renovate/djangorestframework-3.x, undefined, closed) DEBUG: getBranchPr(renovate/eslint-plugin-mocha-10.x) DEBUG: findPr(renovate/eslint-plugin-mocha-10.x, undefined, open) DEBUG: findPr(renovate/eslint-plugin-mocha-10.x, undefined, closed) DEBUG: getBranchPr(renovate/geoip2-4.x) DEBUG: findPr(renovate/geoip2-4.x, undefined, open) DEBUG: findPr(renovate/geoip2-4.x, undefined, closed) DEBUG: getBranchPr(renovate/ipython-7.x) DEBUG: findPr(renovate/ipython-7.x, undefined, open) DEBUG: findPr(renovate/ipython-7.x, undefined, closed) DEBUG: getBranchPr(renovate/jsonnet-0.x) DEBUG: findPr(renovate/jsonnet-0.x, undefined, open) DEBUG: findPr(renovate/jsonnet-0.x, undefined, closed) DEBUG: getBranchPr(renovate/karma-6.x) DEBUG: findPr(renovate/karma-6.x, undefined, open) DEBUG: findPr(renovate/karma-6.x, undefined, closed) DEBUG: getBranchPr(renovate/markdownlint-cli-0.x) DEBUG: findPr(renovate/markdownlint-cli-0.x, undefined, open) DEBUG: findPr(renovate/markdownlint-cli-0.x, undefined, closed) DEBUG: getBranchPr(renovate/mini-css-extract-plugin-2.x) DEBUG: findPr(renovate/mini-css-extract-plugin-2.x, undefined, open) DEBUG: Found PR #1561 DEBUG: getBranchPr(renovate/mutmut-2.x) DEBUG: findPr(renovate/mutmut-2.x, undefined, open) DEBUG: findPr(renovate/mutmut-2.x, undefined, closed) DEBUG: getBranchPr(renovate/pgcli-3.x) DEBUG: findPr(renovate/pgcli-3.x, undefined, open) DEBUG: findPr(renovate/pgcli-3.x, undefined, closed) DEBUG: Found PR #1517 DEBUG: getBranchPr(renovate/prettier-2.x) DEBUG: findPr(renovate/prettier-2.x, undefined, open) DEBUG: findPr(renovate/prettier-2.x, undefined, closed) DEBUG: Found PR #1175 DEBUG: getBranchPr(renovate/pymarc-4.x) DEBUG: findPr(renovate/pymarc-4.x, undefined, open) DEBUG: findPr(renovate/pymarc-4.x, undefined, closed) DEBUG: Found PR #1621 DEBUG: getBranchPr(renovate/pytest-django-4.x) DEBUG: findPr(renovate/pytest-django-4.x, undefined, open) DEBUG: findPr(renovate/pytest-django-4.x, undefined, closed) DEBUG: Found PR #1206 DEBUG: getBranchPr(renovate/pytest-factoryboy-2.x) DEBUG: findPr(renovate/pytest-factoryboy-2.x, undefined, open) DEBUG: findPr(renovate/pytest-factoryboy-2.x, undefined, closed) DEBUG: getBranchPr(renovate/pytest-mock-3.x) DEBUG: findPr(renovate/pytest-mock-3.x, undefined, open) DEBUG: findPr(renovate/pytest-mock-3.x, undefined, closed) DEBUG: Found PR #1186 DEBUG: getBranchPr(renovate/requests-2.x) DEBUG: findPr(renovate/requests-2.x, undefined, open) DEBUG: findPr(renovate/requests-2.x, undefined, closed) DEBUG: Found PR #1187 DEBUG: getBranchPr(renovate/responses-0.x) DEBUG: findPr(renovate/responses-0.x, undefined, open) DEBUG: findPr(renovate/responses-0.x, undefined, closed) DEBUG: Found PR #1188 DEBUG: getBranchPr(renovate/rules-3.x) DEBUG: findPr(renovate/rules-3.x, undefined, open) DEBUG: findPr(renovate/rules-3.x, undefined, closed) DEBUG: getBranchPr(renovate/sass-1.x) DEBUG: findPr(renovate/sass-1.x, undefined, open) DEBUG: Found PR #1650 DEBUG: getBranchPr(renovate/sass-loader-12.x) DEBUG: findPr(renovate/sass-loader-12.x, undefined, open) DEBUG: findPr(renovate/sass-loader-12.x, undefined, closed) DEBUG: getBranchPr(renovate/sentry-sdk-1.x) DEBUG: findPr(renovate/sentry-sdk-1.x, undefined, open) DEBUG: findPr(renovate/sentry-sdk-1.x, undefined, closed) DEBUG: getBranchPr(renovate/starlette-0.x) DEBUG: findPr(renovate/starlette-0.x, undefined, open) DEBUG: findPr(renovate/starlette-0.x, undefined, closed) DEBUG: getBranchPr(renovate/stylelint-14.x) DEBUG: findPr(renovate/stylelint-14.x, undefined, open) DEBUG: findPr(renovate/stylelint-14.x, undefined, closed) DEBUG: getBranchPr(renovate/stylelint-scss-4.x) DEBUG: findPr(renovate/stylelint-scss-4.x, undefined, open) DEBUG: findPr(renovate/stylelint-scss-4.x, undefined, closed) DEBUG: getBranchPr(renovate/time-machine-2.x) DEBUG: findPr(renovate/time-machine-2.x, undefined, open) DEBUG: findPr(renovate/time-machine-2.x, undefined, closed) DEBUG: getBranchPr(renovate/uvicorn-0.x) DEBUG: findPr(renovate/uvicorn-0.x, undefined, open) DEBUG: findPr(renovate/uvicorn-0.x, undefined, closed) DEBUG: getBranchPr(renovate/video.js-7.x) DEBUG: findPr(renovate/video.js-7.x, undefined, open) DEBUG: findPr(renovate/video.js-7.x, undefined, closed) DEBUG: getBranchPr(renovate/wagtail-2.x) DEBUG: findPr(renovate/wagtail-2.x, undefined, open) DEBUG: Found PR #1625 DEBUG: getBranchPr(renovate/wagtail-factories-2.x) DEBUG: findPr(renovate/wagtail-factories-2.x, undefined, open) DEBUG: findPr(renovate/wagtail-factories-2.x, undefined, closed) DEBUG: getBranchPr(renovate/webpack-5.x) DEBUG: findPr(renovate/webpack-5.x, undefined, open) DEBUG: findPr(renovate/webpack-5.x, undefined, closed) DEBUG: getBranchPr(renovate/webpack-bundle-analyzer-4.x) DEBUG: findPr(renovate/webpack-bundle-analyzer-4.x, undefined, open) DEBUG: findPr(renovate/webpack-bundle-analyzer-4.x, undefined, closed) DEBUG: getBranchPr(renovate/webpack-bundle-tracker-1.x) DEBUG: findPr(renovate/webpack-bundle-tracker-1.x, undefined, open) DEBUG: findPr(renovate/webpack-bundle-tracker-1.x, undefined, closed) DEBUG: getBranchPr(renovate/webpack-cli-4.x) DEBUG: findPr(renovate/webpack-cli-4.x, undefined, open) DEBUG: findPr(renovate/webpack-cli-4.x, undefined, closed) DEBUG: Found PR #1524 DEBUG: getBranchPr(renovate/webvtt-parser-2.x) DEBUG: findPr(renovate/webvtt-parser-2.x, undefined, open) DEBUG: findPr(renovate/webvtt-parser-2.x, undefined, closed) DEBUG: getBranchPr(renovate/xo-0.x) DEBUG: findPr(renovate/xo-0.x, undefined, open) DEBUG: findPr(renovate/xo-0.x, undefined, closed) DEBUG: Found PR #1191 DEBUG: getBranchPr(renovate/do-exclusively-0.x) DEBUG: findPr(renovate/do-exclusively-0.x, undefined, open) DEBUG: findPr(renovate/do-exclusively-0.x, undefined, closed) DEBUG: getBranchPr(renovate/postgres-12.x) DEBUG: findPr(renovate/postgres-12.x, undefined, open) DEBUG: findPr(renovate/postgres-12.x, undefined, closed) DEBUG: getBranchPr(renovate/python-1.x) DEBUG: findPr(renovate/python-1.x, undefined, open) DEBUG: findPr(renovate/python-1.x, undefined, closed) DEBUG: getBranchPr(renovate/uppy-monorepo) DEBUG: findPr(renovate/uppy-monorepo, undefined, open) DEBUG: Found PR #1669 DEBUG: getBranchPr(renovate/node-18.x) DEBUG: findPr(renovate/node-18.x, undefined, open) DEBUG: findPr(renovate/node-18.x, undefined, closed) DEBUG: getBranchPr(renovate/cimg-base-2022.x) DEBUG: findPr(renovate/cimg-base-2022.x, undefined, open) DEBUG: findPr(renovate/cimg-base-2022.x, undefined, closed) DEBUG: getBranchPr(renovate/django-4.x) DEBUG: findPr(renovate/django-4.x, undefined, open) DEBUG: findPr(renovate/django-4.x, undefined, closed) DEBUG: getBranchPr(renovate/major-babel-monorepo) DEBUG: findPr(renovate/major-babel-monorepo, undefined, open) DEBUG: findPr(renovate/major-babel-monorepo, undefined, closed) DEBUG: getBranchPr(renovate/coverage-6.x) DEBUG: findPr(renovate/coverage-6.x, undefined, open) DEBUG: findPr(renovate/coverage-6.x, undefined, closed) DEBUG: getBranchPr(renovate/css-minimizer-webpack-plugin-4.x) DEBUG: findPr(renovate/css-minimizer-webpack-plugin-4.x, undefined, open) DEBUG: findPr(renovate/css-minimizer-webpack-plugin-4.x, undefined, closed) DEBUG: getBranchPr(renovate/dj-database-url-1.x) DEBUG: findPr(renovate/dj-database-url-1.x, undefined, open) DEBUG: findPr(renovate/dj-database-url-1.x, undefined, closed) DEBUG: getBranchPr(renovate/django-contact-form-2.x) DEBUG: findPr(renovate/django-contact-form-2.x, undefined, open) DEBUG: findPr(renovate/django-contact-form-2.x, undefined, closed) DEBUG: getBranchPr(renovate/django-import-export-3.x) DEBUG: findPr(renovate/django-import-export-3.x, undefined, open) DEBUG: findPr(renovate/django-import-export-3.x, undefined, closed) DEBUG: getBranchPr(renovate/django-su-1.x) DEBUG: findPr(renovate/django-su-1.x, undefined, open) DEBUG: findPr(renovate/django-su-1.x, undefined, closed) DEBUG: getBranchPr(renovate/flake8-5.x) DEBUG: findPr(renovate/flake8-5.x, undefined, open) DEBUG: findPr(renovate/flake8-5.x, undefined, closed) DEBUG: getBranchPr(renovate/ipython-8.x) DEBUG: findPr(renovate/ipython-8.x, undefined, open) DEBUG: findPr(renovate/ipython-8.x, undefined, closed) DEBUG: getBranchPr(renovate/mocha-10.x) DEBUG: findPr(renovate/mocha-10.x, undefined, open) DEBUG: findPr(renovate/mocha-10.x, undefined, closed) DEBUG: getBranchPr(renovate/postcss-loader-7.x) DEBUG: findPr(renovate/postcss-loader-7.x, undefined, open) DEBUG: findPr(renovate/postcss-loader-7.x, undefined, closed) DEBUG: getBranchPr(renovate/pytest-7.x) DEBUG: findPr(renovate/pytest-7.x, undefined, open) DEBUG: findPr(renovate/pytest-7.x, undefined, closed) DEBUG: getBranchPr(renovate/pytest-cov-4.x) DEBUG: findPr(renovate/pytest-cov-4.x, undefined, open) DEBUG: findPr(renovate/pytest-cov-4.x, undefined, closed) DEBUG: getBranchPr(renovate/sass-loader-13.x) DEBUG: findPr(renovate/sass-loader-13.x, undefined, open) DEBUG: findPr(renovate/sass-loader-13.x, undefined, closed) DEBUG: getBranchPr(renovate/stylelint-config-recommended-scss-8.x) DEBUG: findPr(renovate/stylelint-config-recommended-scss-8.x, undefined, open) DEBUG: findPr(renovate/stylelint-config-recommended-scss-8.x, undefined, closed) DEBUG: getBranchPr(renovate/stylelint-config-standard-29.x) DEBUG: findPr(renovate/stylelint-config-standard-29.x, undefined, open) DEBUG: findPr(renovate/stylelint-config-standard-29.x, undefined, closed) DEBUG: getBranchPr(renovate/stylelint-no-unsupported-browser-features-6.x) DEBUG: findPr(renovate/stylelint-no-unsupported-browser-features-6.x, undefined, open) DEBUG: findPr(renovate/stylelint-no-unsupported-browser-features-6.x, undefined, closed) DEBUG: getBranchPr(renovate/uuid-9.x) DEBUG: findPr(renovate/uuid-9.x, undefined, open) DEBUG: findPr(renovate/uuid-9.x, undefined, closed) DEBUG: getBranchPr(renovate/videojs-contrib-eme-5.x) DEBUG: findPr(renovate/videojs-contrib-eme-5.x, undefined, open) DEBUG: findPr(renovate/videojs-contrib-eme-5.x, undefined, closed) DEBUG: getBranchPr(renovate/wagtail-4.x) DEBUG: findPr(renovate/wagtail-4.x, undefined, open) DEBUG: findPr(renovate/wagtail-4.x, undefined, closed) DEBUG: getBranchPr(renovate/wagtail-factories-3.x) DEBUG: findPr(renovate/wagtail-factories-3.x, undefined, open) DEBUG: findPr(renovate/wagtail-factories-3.x, undefined, closed) DEBUG: getBranchPr(renovate/whitenoise-6.x) DEBUG: findPr(renovate/whitenoise-6.x, undefined, open) DEBUG: findPr(renovate/whitenoise-6.x, undefined, closed) DEBUG: getBranchPr(renovate/oryd-hydra-2.x) DEBUG: findPr(renovate/oryd-hydra-2.x, undefined, open) DEBUG: findPr(renovate/oryd-hydra-2.x, undefined, closed) DEBUG: getBranchPr(renovate/oryd-hydra-login-consent-node-2.x) DEBUG: findPr(renovate/oryd-hydra-login-consent-node-2.x, undefined, open) DEBUG: findPr(renovate/oryd-hydra-login-consent-node-2.x, undefined, closed) DEBUG: getBranchPr(renovate/postgres-15.x) DEBUG: findPr(renovate/postgres-15.x, undefined, open) DEBUG: findPr(renovate/postgres-15.x, undefined, closed) DEBUG: getBranchPr(renovate/python-2.x) DEBUG: findPr(renovate/python-2.x, undefined, open) DEBUG: findPr(renovate/python-2.x, undefined, closed) DEBUG: getBranchPr(renovate/shellcheck-3.x) DEBUG: findPr(renovate/shellcheck-3.x, undefined, open) DEBUG: findPr(renovate/shellcheck-3.x, undefined, closed) DEBUG: getBranchPr(renovate/major-uppy-monorepo) DEBUG: findPr(renovate/major-uppy-monorepo, undefined, open) DEBUG: findPr(renovate/major-uppy-monorepo, undefined, closed) DEBUG: 9 PRs are currently open DEBUG: PR concurrent limit remaining: 1 DEBUG: Calculated maximum PRs remaining this run: 0 DEBUG: PullRequests limit = 0 DEBUG: Calculating hourly PRs remaining DEBUG: currentHourStart=2022-11-01T13:00:00.000+00:00 DEBUG: PR hourly limit remaining: 0 DEBUG: Calculating branchConcurrentLimit (10) DEBUG: 9 already existing branches found: renovate/node-12.x,renovate/autoprefixer-10.x,renovate/foundation-sites-6.x,renovate/jquery-3.x,renovate/postcss-8.x,renovate/mini-css-extract-plugin-2.x,renovate/sass-1.x,renovate/wagtail-2.x,renovate/uppy-monorepo DEBUG: Branch concurrent limit remaining: 1 DEBUG: Calculated maximum branches remaining this run: 0 DEBUG: Branches limit = 0 DEBUG: syncBranchState()(branch="renovate/node-12.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/node-12.x") DEBUG: branch.isUpToDate(): using cached result "true"(branch="renovate/node-12.x") DEBUG: getBranchPr(renovate/node-12.x)(branch="renovate/node-12.x") DEBUG: findPr(renovate/node-12.x, undefined, open)(branch="renovate/node-12.x") DEBUG: Found PR #1693(branch="renovate/node-12.x") DEBUG: branchExists=true(branch="renovate/node-12.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/node-12.x") DEBUG: PR rebase requested=false(branch="renovate/node-12.x") DEBUG: Checking if PR has been edited(branch="renovate/node-12.x") DEBUG: branch.isModified(): using cached result "false"(branch="renovate/node-12.x") DEBUG: Found existing branch PR(branch="renovate/node-12.x") DEBUG: Checking schedule(at any time, Europe/Berlin)(branch="renovate/node-12.x") DEBUG: No schedule defined(branch="renovate/node-12.x") DEBUG: Branch already exists(branch="renovate/node-12.x") DEBUG: getBranchPr(renovate/node-12.x)(branch="renovate/node-12.x") DEBUG: findPr(renovate/node-12.x, undefined, open)(branch="renovate/node-12.x") DEBUG: Found PR #1693(branch="renovate/node-12.x") DEBUG: Found branch protection(branch="renovate/node-12.x") DEBUG: Skipping behind base branch check due to rebaseWhen=auto(branch="renovate/node-12.x") DEBUG: isBranchConflicted(develop, renovate/node-12.x)(branch="renovate/node-12.x") DEBUG: branch.isConflicted(): using git to calculate(branch="renovate/node-12.x") DEBUG: Setting git author name(branch="renovate/node-12.x") { "gitAuthorName": "Renovate Bot" } DEBUG: Setting git author email(branch="renovate/node-12.x") { "gitAuthorEmail": "bot@renovateapp.com" } DEBUG: branch.isConflicted(): false(branch="renovate/node-12.x") DEBUG: Branch does not need rebasing(branch="renovate/node-12.x") DEBUG: Using reuseExistingBranch: true(branch="renovate/node-12.x") DEBUG: Checking if we can automerge branch(branch="renovate/node-12.x") DEBUG: mergeStatus=no automerge(branch="renovate/node-12.x") DEBUG: Ensuring PR(branch="renovate/node-12.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/node-12.x") DEBUG: getBranchPr(renovate/node-12.x)(branch="renovate/node-12.x") DEBUG: findPr(renovate/node-12.x, undefined, open)(branch="renovate/node-12.x") DEBUG: Found PR #1693(branch="renovate/node-12.x") DEBUG: Found existing PR(branch="renovate/node-12.x") DEBUG: Fetching changelog: https://github.com/nodejs/node (12.22.11 -> v12.22.12)(branch="renovate/node-12.x") DEBUG: Processing existing PR(branch="renovate/node-12.x") DEBUG: Pull Request #1693 does not need updating(branch="renovate/node-12.x") DEBUG: PR is not configured for automerge(branch="renovate/node-12.x") DEBUG: syncBranchState()(branch="renovate/autoprefixer-10.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/autoprefixer-10.x") DEBUG: branch.isUpToDate(): using cached result "true"(branch="renovate/autoprefixer-10.x") DEBUG: getBranchPr(renovate/autoprefixer-10.x)(branch="renovate/autoprefixer-10.x") DEBUG: findPr(renovate/autoprefixer-10.x, undefined, open)(branch="renovate/autoprefixer-10.x") DEBUG: Found PR #1663(branch="renovate/autoprefixer-10.x") DEBUG: branchExists=true(branch="renovate/autoprefixer-10.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/autoprefixer-10.x") DEBUG: PR rebase requested=false(branch="renovate/autoprefixer-10.x") DEBUG: Checking if PR has been edited(branch="renovate/autoprefixer-10.x") DEBUG: branch.isModified(): using cached result "false"(branch="renovate/autoprefixer-10.x") DEBUG: Found existing branch PR(branch="renovate/autoprefixer-10.x") DEBUG: Checking schedule(at any time, Europe/Berlin)(branch="renovate/autoprefixer-10.x") DEBUG: No schedule defined(branch="renovate/autoprefixer-10.x") DEBUG: Branch already exists(branch="renovate/autoprefixer-10.x") DEBUG: getBranchPr(renovate/autoprefixer-10.x)(branch="renovate/autoprefixer-10.x") DEBUG: findPr(renovate/autoprefixer-10.x, undefined, open)(branch="renovate/autoprefixer-10.x") DEBUG: Found PR #1663(branch="renovate/autoprefixer-10.x") DEBUG: Skipping behind base branch check due to rebaseWhen=auto(branch="renovate/autoprefixer-10.x") DEBUG: isBranchConflicted(develop, renovate/autoprefixer-10.x)(branch="renovate/autoprefixer-10.x") DEBUG: branch.isConflicted(): using git to calculate(branch="renovate/autoprefixer-10.x") DEBUG: branch.isConflicted(): false(branch="renovate/autoprefixer-10.x") DEBUG: Branch does not need rebasing(branch="renovate/autoprefixer-10.x") DEBUG: Using reuseExistingBranch: true(branch="renovate/autoprefixer-10.x") DEBUG: Checking if we can automerge branch(branch="renovate/autoprefixer-10.x") DEBUG: mergeStatus=no automerge(branch="renovate/autoprefixer-10.x") DEBUG: Ensuring PR(branch="renovate/autoprefixer-10.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/autoprefixer-10.x") DEBUG: getBranchPr(renovate/autoprefixer-10.x)(branch="renovate/autoprefixer-10.x") DEBUG: findPr(renovate/autoprefixer-10.x, undefined, open)(branch="renovate/autoprefixer-10.x") DEBUG: Found PR #1663(branch="renovate/autoprefixer-10.x") DEBUG: Found existing PR(branch="renovate/autoprefixer-10.x") DEBUG: Fetching changelog: https://github.com/postcss/autoprefixer (10.4.2 -> 10.4.13)(branch="renovate/autoprefixer-10.x") DEBUG: Processing existing PR(branch="renovate/autoprefixer-10.x") DEBUG: Pull Request #1663 does not need updating(branch="renovate/autoprefixer-10.x") DEBUG: PR is not configured for automerge(branch="renovate/autoprefixer-10.x") DEBUG: syncBranchState()(branch="renovate/foundation-sites-6.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/foundation-sites-6.x") DEBUG: branch.isUpToDate(): using cached result "true"(branch="renovate/foundation-sites-6.x") DEBUG: getBranchPr(renovate/foundation-sites-6.x)(branch="renovate/foundation-sites-6.x") DEBUG: findPr(renovate/foundation-sites-6.x, undefined, open)(branch="renovate/foundation-sites-6.x") DEBUG: Found PR #1695(branch="renovate/foundation-sites-6.x") DEBUG: branchExists=true(branch="renovate/foundation-sites-6.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/foundation-sites-6.x") DEBUG: PR rebase requested=false(branch="renovate/foundation-sites-6.x") DEBUG: Checking if PR has been edited(branch="renovate/foundation-sites-6.x") DEBUG: branch.isModified(): using cached result "false"(branch="renovate/foundation-sites-6.x") DEBUG: Found existing branch PR(branch="renovate/foundation-sites-6.x") DEBUG: Checking schedule(at any time, Europe/Berlin)(branch="renovate/foundation-sites-6.x") DEBUG: No schedule defined(branch="renovate/foundation-sites-6.x") DEBUG: Branch already exists(branch="renovate/foundation-sites-6.x") DEBUG: getBranchPr(renovate/foundation-sites-6.x)(branch="renovate/foundation-sites-6.x") DEBUG: findPr(renovate/foundation-sites-6.x, undefined, open)(branch="renovate/foundation-sites-6.x") DEBUG: Found PR #1695(branch="renovate/foundation-sites-6.x") DEBUG: Skipping behind base branch check due to rebaseWhen=auto(branch="renovate/foundation-sites-6.x") DEBUG: isBranchConflicted(develop, renovate/foundation-sites-6.x)(branch="renovate/foundation-sites-6.x") DEBUG: branch.isConflicted(): using git to calculate(branch="renovate/foundation-sites-6.x") DEBUG: branch.isConflicted(): false(branch="renovate/foundation-sites-6.x") DEBUG: Branch does not need rebasing(branch="renovate/foundation-sites-6.x") DEBUG: Using reuseExistingBranch: true(branch="renovate/foundation-sites-6.x") DEBUG: Checking if we can automerge branch(branch="renovate/foundation-sites-6.x") DEBUG: mergeStatus=no automerge(branch="renovate/foundation-sites-6.x") DEBUG: Ensuring PR(branch="renovate/foundation-sites-6.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/foundation-sites-6.x") DEBUG: getBranchPr(renovate/foundation-sites-6.x)(branch="renovate/foundation-sites-6.x") DEBUG: findPr(renovate/foundation-sites-6.x, undefined, open)(branch="renovate/foundation-sites-6.x") DEBUG: Found PR #1695(branch="renovate/foundation-sites-6.x") DEBUG: Found existing PR(branch="renovate/foundation-sites-6.x") DEBUG: Fetching changelog: https://github.com/foundation/foundation-sites (6.7.4 -> 6.7.5)(branch="renovate/foundation-sites-6.x") DEBUG: Processing existing PR(branch="renovate/foundation-sites-6.x") DEBUG: Pull Request #1695 does not need updating(branch="renovate/foundation-sites-6.x") DEBUG: PR is not configured for automerge(branch="renovate/foundation-sites-6.x") DEBUG: syncBranchState()(branch="renovate/jquery-3.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/jquery-3.x") DEBUG: branch.isUpToDate(): using cached result "true"(branch="renovate/jquery-3.x") DEBUG: getBranchPr(renovate/jquery-3.x)(branch="renovate/jquery-3.x") DEBUG: findPr(renovate/jquery-3.x, undefined, open)(branch="renovate/jquery-3.x") DEBUG: Found PR #1697(branch="renovate/jquery-3.x") DEBUG: branchExists=true(branch="renovate/jquery-3.x") DEBUG: dependencyDashboardCheck=rebase(branch="renovate/jquery-3.x") DEBUG: PR rebase requested=false(branch="renovate/jquery-3.x") DEBUG: Checking if PR has been edited(branch="renovate/jquery-3.x") DEBUG: branch.isModified(): using cached result "false"(branch="renovate/jquery-3.x") DEBUG: Found existing branch PR(branch="renovate/jquery-3.x") DEBUG: Checking schedule(at any time, Europe/Berlin)(branch="renovate/jquery-3.x") DEBUG: No schedule defined(branch="renovate/jquery-3.x") DEBUG: Manual rebase requested via Dependency Dashboard(branch="renovate/jquery-3.x") DEBUG: Using reuseExistingBranch: false(branch="renovate/jquery-3.x") DEBUG: Setting current branch to develop(branch="renovate/jquery-3.x") DEBUG: latest commit(branch="renovate/jquery-3.x") { "branchName": "develop", "latestCommitDate": "2022-11-01T14:45:34+01:00" } DEBUG: manager.getUpdatedPackageFiles() reuseExistingBranch=false(branch="renovate/jquery-3.x") DEBUG: npm.updateDependency(): dependencies.jquery = 3.6.1(branch="renovate/jquery-3.x") DEBUG: Updating jquery in package.json(branch="renovate/jquery-3.x") DEBUG: Updated 1 package files(branch="renovate/jquery-3.x") DEBUG: Getting updated lock files(branch="renovate/jquery-3.x") DEBUG: Writing package.json files(branch="renovate/jquery-3.x") { "packageFiles": [ "package.json" ] } DEBUG: Writing package-lock.json(branch="renovate/jquery-3.x") DEBUG: Writing any updated package files(branch="renovate/jquery-3.x") DEBUG: Writing package.json(branch="renovate/jquery-3.x") DEBUG: npmrc file found in repository(branch="renovate/jquery-3.x") DEBUG: Generating package-lock.json for .(branch="renovate/jquery-3.x") DEBUG: Spawning npm install to create ./package-lock.json(branch="renovate/jquery-3.x") DEBUG: Performing node_modules install(branch="renovate/jquery-3.x") DEBUG: No node constraint found - using latest(branch="renovate/jquery-3.x") DEBUG: Performing npm dedupe(branch="renovate/jquery-3.x") DEBUG: Setting CONTAINERBASE_CACHE_DIR to /tmp/containerbase(branch="renovate/jquery-3.x") DEBUG: Using docker to execute(branch="renovate/jquery-3.x") { "image": "sidecar" } DEBUG: Resolved stable matching version(branch="renovate/jquery-3.x") { "toolName": "node", "constraint": null, "resolvedVersion": "v18.12.0" } DEBUG: Resolved stable matching version(branch="renovate/jquery-3.x") { "toolName": "npm", "constraint": "<7", "resolvedVersion": "6.14.17" } DEBUG: containerbaseDir is separate from cacheDir(branch="renovate/jquery-3.x") DEBUG: No tag or tagConstraint specified(branch="renovate/jquery-3.x") { "image": "docker.io/renovate/sidecar" } DEBUG: Fetching Docker image: docker.io/renovate/sidecar(branch="renovate/jquery-3.x") DEBUG: Finished fetching Docker image docker.io/renovate/sidecar@sha256:4d5e8d8c16dbd2b9c6c52955c468d7d9cbccd22022559b65e216aa37f25fec22(branch="renovate/jquery-3.x") DEBUG: Executing command(branch="renovate/jquery-3.x") { "command": "docker run --rm --name=renovate_sidecar --label=renovate_child -v \"/mnt/renovate/gh/PicturePipe/hatch\":\"/mnt/renovate/gh/PicturePipe/hatch\" -v \"/tmp/renovate-cache\":\"/tmp/renovate-cache\" -v \"/tmp/containerbase\":\"/tmp/containerbase\" -e NPM_CONFIG_CACHE -e npm_config_store -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w \"/mnt/renovate/gh/PicturePipe/hatch\" docker.io/renovate/sidecar bash -l -c \"install-tool node v18.12.0 && install-tool npm 6.14.17 && hash -d npm 2>/dev/null || true && npm install --no-audit --ignore-scripts && npm dedupe\"" } DEBUG: rawExec err(branch="renovate/jquery-3.x") { "err": { "name": "ExecError", "cmd": "/bin/sh -c docker run --rm --name=renovate_sidecar --label=renovate_child -v \"/mnt/renovate/gh/PicturePipe/hatch\":\"/mnt/renovate/gh/PicturePipe/hatch\" -v \"/tmp/renovate-cache\":\"/tmp/renovate-cache\" -v \"/tmp/containerbase\":\"/tmp/containerbase\" -e NPM_CONFIG_CACHE -e npm_config_store -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w \"/mnt/renovate/gh/PicturePipe/hatch\" docker.io/renovate/sidecar bash -l -c \"install-tool node v18.12.0 && install-tool npm 6.14.17 && hash -d npm 2>/dev/null || true && npm install --no-audit --ignore-scripts && npm dedupe\"", "stderr": "", "stdout": "installing v2 tool node v18.12.0\nlinking tool node v18.12.0\nnode: v18.12.0 /usr/local/bin/node\nnpm: 8.19.2 /usr/local/bin/npm\nInstalled v2 /usr/local/buildpack/tools/v2/node.sh in 7 seconds\nskip cleanup, not a docker build: fad8b4ca1d43\ninstalling v2 tool npm v6.14.17\n\nadded 1 package in 16s\nnpm WARN deprecated circular-json@0.3.3: CircularJSON is in maintenance only, flatted is its successor.\nnpm WARN deprecated fs-access@2.0.0: This package is no longer relevant as Node.js 0.12 is unmaintained.\nnpm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142\n\nadded 397 packages, removed 13 packages, and changed 18 packages in 38s\nlinking tool npm v6.14.17\n6.14.17\nInstalled v2 /usr/local/buildpack/tools/v2/npm.sh in 58 seconds\nskip cleanup, not a docker build: fad8b4ca1d43\n", "options": { "cwd": "/mnt/renovate/gh/PicturePipe/hatch", "encoding": "utf-8", "env": { "NPM_CONFIG_CACHE": "/tmp/renovate-cache/others/npm", "npm_config_store": "/tmp/renovate-cache/others/pnpm", "HOME": "/home/user", "PATH": "/home/user/.local/bin:/home/user/bin:/opt/buildpack/tools/python/3.9.3/bin:/home/user/.npm-global/bin:/home/ubuntu/renovateapp/node_modules/.bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "LC_ALL": "C.UTF-8", "LANG": "C.UTF-8", "BUILDPACK_CACHE_DIR": "/tmp/containerbase", "CONTAINERBASE_CACHE_DIR": "/tmp/containerbase" }, "maxBuffer": 10485760, "timeout": 900000 }, "exitCode": 1, "message": "Command failed: docker run --rm --name=renovate_sidecar --label=renovate_child -v \"/mnt/renovate/gh/PicturePipe/hatch\":\"/mnt/renovate/gh/PicturePipe/hatch\" -v \"/tmp/renovate-cache\":\"/tmp/renovate-cache\" -v \"/tmp/containerbase\":\"/tmp/containerbase\" -e NPM_CONFIG_CACHE -e npm_config_store -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w \"/mnt/renovate/gh/PicturePipe/hatch\" docker.io/renovate/sidecar bash -l -c \"install-tool node v18.12.0 && install-tool npm 6.14.17 && hash -d npm 2>/dev/null || true && npm install --no-audit --ignore-scripts && npm dedupe\"\n", "stack": "ExecError: Command failed: docker run --rm --name=renovate_sidecar --label=renovate_child -v \"/mnt/renovate/gh/PicturePipe/hatch\":\"/mnt/renovate/gh/PicturePipe/hatch\" -v \"/tmp/renovate-cache\":\"/tmp/renovate-cache\" -v \"/tmp/containerbase\":\"/tmp/containerbase\" -e NPM_CONFIG_CACHE -e npm_config_store -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w \"/mnt/renovate/gh/PicturePipe/hatch\" docker.io/renovate/sidecar bash -l -c \"install-tool node v18.12.0 && install-tool npm 6.14.17 && hash -d npm 2>/dev/null || true && npm install --no-audit --ignore-scripts && npm dedupe\"\n\n at ChildProcess. (/home/ubuntu/renovateapp/node_modules/renovate/dist/util/exec/common.js:87:24)\n at ChildProcess.emit (node:events:525:35)\n at ChildProcess.emit (node:domain:489:12)\n at Process.ChildProcess._handle.onexit (node:internal/child_process:291:12)" } } DEBUG: lock file error(branch="renovate/jquery-3.x") { "err": { "name": "ExecError", "cmd": "/bin/sh -c docker run --rm --name=renovate_sidecar --label=renovate_child -v \"/mnt/renovate/gh/PicturePipe/hatch\":\"/mnt/renovate/gh/PicturePipe/hatch\" -v \"/tmp/renovate-cache\":\"/tmp/renovate-cache\" -v \"/tmp/containerbase\":\"/tmp/containerbase\" -e NPM_CONFIG_CACHE -e npm_config_store -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w \"/mnt/renovate/gh/PicturePipe/hatch\" docker.io/renovate/sidecar bash -l -c \"install-tool node v18.12.0 && install-tool npm 6.14.17 && hash -d npm 2>/dev/null || true && npm install --no-audit --ignore-scripts && npm dedupe\"", "stderr": "", "stdout": "installing v2 tool node v18.12.0\nlinking tool node v18.12.0\nnode: v18.12.0 /usr/local/bin/node\nnpm: 8.19.2 /usr/local/bin/npm\nInstalled v2 /usr/local/buildpack/tools/v2/node.sh in 7 seconds\nskip cleanup, not a docker build: fad8b4ca1d43\ninstalling v2 tool npm v6.14.17\n\nadded 1 package in 16s\nnpm WARN deprecated circular-json@0.3.3: CircularJSON is in maintenance only, flatted is its successor.\nnpm WARN deprecated fs-access@2.0.0: This package is no longer relevant as Node.js 0.12 is unmaintained.\nnpm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142\n\nadded 397 packages, removed 13 packages, and changed 18 packages in 38s\nlinking tool npm v6.14.17\n6.14.17\nInstalled v2 /usr/local/buildpack/tools/v2/npm.sh in 58 seconds\nskip cleanup, not a docker build: fad8b4ca1d43\n", "options": { "cwd": "/mnt/renovate/gh/PicturePipe/hatch", "encoding": "utf-8", "env": { "NPM_CONFIG_CACHE": "/tmp/renovate-cache/others/npm", "npm_config_store": "/tmp/renovate-cache/others/pnpm", "HOME": "/home/user", "PATH": "/home/user/.local/bin:/home/user/bin:/opt/buildpack/tools/python/3.9.3/bin:/home/user/.npm-global/bin:/home/ubuntu/renovateapp/node_modules/.bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "LC_ALL": "C.UTF-8", "LANG": "C.UTF-8", "BUILDPACK_CACHE_DIR": "/tmp/containerbase", "CONTAINERBASE_CACHE_DIR": "/tmp/containerbase" }, "maxBuffer": 10485760, "timeout": 900000 }, "exitCode": 1, "message": "Command failed: docker run --rm --name=renovate_sidecar --label=renovate_child -v \"/mnt/renovate/gh/PicturePipe/hatch\":\"/mnt/renovate/gh/PicturePipe/hatch\" -v \"/tmp/renovate-cache\":\"/tmp/renovate-cache\" -v \"/tmp/containerbase\":\"/tmp/containerbase\" -e NPM_CONFIG_CACHE -e npm_config_store -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w \"/mnt/renovate/gh/PicturePipe/hatch\" docker.io/renovate/sidecar bash -l -c \"install-tool node v18.12.0 && install-tool npm 6.14.17 && hash -d npm 2>/dev/null || true && npm install --no-audit --ignore-scripts && npm dedupe\"\n", "stack": "ExecError: Command failed: docker run --rm --name=renovate_sidecar --label=renovate_child -v \"/mnt/renovate/gh/PicturePipe/hatch\":\"/mnt/renovate/gh/PicturePipe/hatch\" -v \"/tmp/renovate-cache\":\"/tmp/renovate-cache\" -v \"/tmp/containerbase\":\"/tmp/containerbase\" -e NPM_CONFIG_CACHE -e npm_config_store -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w \"/mnt/renovate/gh/PicturePipe/hatch\" docker.io/renovate/sidecar bash -l -c \"install-tool node v18.12.0 && install-tool npm 6.14.17 && hash -d npm 2>/dev/null || true && npm install --no-audit --ignore-scripts && npm dedupe\"\n\n at ChildProcess. (/home/ubuntu/renovateapp/node_modules/renovate/dist/util/exec/common.js:87:24)\n at ChildProcess.emit (node:events:525:35)\n at ChildProcess.emit (node:domain:489:12)\n at Process.ChildProcess._handle.onexit (node:internal/child_process:291:12)" }, "type": "npm" } DEBUG: No updated lock files in branch(branch="renovate/jquery-3.x") DEBUG: Branch timestamp: 2022-08-26T17:54:24.768Z(branch="renovate/jquery-3.x") DEBUG: PR is older than 2 hours, raise PR with lock file errors(branch="renovate/jquery-3.x") DEBUG: isBranchConflicted(develop, renovate/jquery-3.x)(branch="renovate/jquery-3.x") DEBUG: branch.isConflicted(): using git to calculate(branch="renovate/jquery-3.x") DEBUG: branch.isConflicted(): false(branch="renovate/jquery-3.x") DEBUG: 1 file(s) to commit(branch="renovate/jquery-3.x") DEBUG: Preparing files for committing to branch renovate/jquery-3.x(branch="renovate/jquery-3.x") DEBUG: git commit(branch="renovate/jquery-3.x") { "deletedFiles": [], "ignoredFiles": [], "result": { "author": null, "branch": "renovate/jquery-3.x", "commit": "baa1087ee348e0904013f43a9d2be24163f43f55", "root": false, "summary": { "changes": 1, "insertions": 1, "deletions": 1 } } } DEBUG: resetToCommit(647c43b26618a003376bc59dc31153d343622343)(branch="renovate/jquery-3.x") DEBUG: Fetching branch renovate/jquery-3.x(branch="renovate/jquery-3.x") INFO: Branch updated(branch="renovate/jquery-3.x") { "commitSha": "c23e001d7bea9d2ef1a1b2838e992cc90d6b9a9d" } DEBUG: Updating status check state to failed(branch="renovate/jquery-3.x") DEBUG: Setting branch status(branch="renovate/jquery-3.x") { "context": "renovate/artifacts", "state": "red" } DEBUG: Checking if we can automerge branch(branch="renovate/jquery-3.x") DEBUG: mergeStatus=no automerge(branch="renovate/jquery-3.x") DEBUG: Ensuring PR(branch="renovate/jquery-3.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/jquery-3.x") DEBUG: getBranchPr(renovate/jquery-3.x)(branch="renovate/jquery-3.x") DEBUG: findPr(renovate/jquery-3.x, undefined, open)(branch="renovate/jquery-3.x") DEBUG: Found PR #1697(branch="renovate/jquery-3.x") DEBUG: Found existing PR(branch="renovate/jquery-3.x") DEBUG: Forcing PR because of artifact errors(branch="renovate/jquery-3.x") DEBUG: Fetching changelog: https://github.com/jquery/jquery (3.6.0 -> 3.6.1)(branch="renovate/jquery-3.x") DEBUG: Processing existing PR(branch="renovate/jquery-3.x") DEBUG: Pull Request #1697 does not need updating(branch="renovate/jquery-3.x") WARN: artifactErrors(branch="renovate/jquery-3.x") { "artifactErrors": [ { "lockFile": "package-lock.json", "stderr": "" } ] } DEBUG: setBranchCommit()(branch="renovate/jquery-3.x") DEBUG: syncBranchState()(branch="renovate/postcss-8.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/postcss-8.x") DEBUG: branch.isUpToDate(): using cached result "true"(branch="renovate/postcss-8.x") DEBUG: getBranchPr(renovate/postcss-8.x)(branch="renovate/postcss-8.x") DEBUG: findPr(renovate/postcss-8.x, undefined, open)(branch="renovate/postcss-8.x") DEBUG: Found PR #1648(branch="renovate/postcss-8.x") DEBUG: branchExists=true(branch="renovate/postcss-8.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/postcss-8.x") DEBUG: PR rebase requested=false(branch="renovate/postcss-8.x") DEBUG: Checking if PR has been edited(branch="renovate/postcss-8.x") DEBUG: branch.isModified(): using cached result "false"(branch="renovate/postcss-8.x") DEBUG: Found existing branch PR(branch="renovate/postcss-8.x") DEBUG: Checking schedule(at any time, Europe/Berlin)(branch="renovate/postcss-8.x") DEBUG: No schedule defined(branch="renovate/postcss-8.x") DEBUG: Branch already exists(branch="renovate/postcss-8.x") DEBUG: getBranchPr(renovate/postcss-8.x)(branch="renovate/postcss-8.x") DEBUG: findPr(renovate/postcss-8.x, undefined, open)(branch="renovate/postcss-8.x") DEBUG: Found PR #1648(branch="renovate/postcss-8.x") DEBUG: Skipping behind base branch check due to rebaseWhen=auto(branch="renovate/postcss-8.x") DEBUG: isBranchConflicted(develop, renovate/postcss-8.x)(branch="renovate/postcss-8.x") DEBUG: branch.isConflicted(): using git to calculate(branch="renovate/postcss-8.x") DEBUG: branch.isConflicted(): false(branch="renovate/postcss-8.x") DEBUG: Branch does not need rebasing(branch="renovate/postcss-8.x") DEBUG: Using reuseExistingBranch: true(branch="renovate/postcss-8.x") DEBUG: Checking if we can automerge branch(branch="renovate/postcss-8.x") DEBUG: mergeStatus=no automerge(branch="renovate/postcss-8.x") DEBUG: Ensuring PR(branch="renovate/postcss-8.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/postcss-8.x") DEBUG: getBranchPr(renovate/postcss-8.x)(branch="renovate/postcss-8.x") DEBUG: findPr(renovate/postcss-8.x, undefined, open)(branch="renovate/postcss-8.x") DEBUG: Found PR #1648(branch="renovate/postcss-8.x") DEBUG: Found existing PR(branch="renovate/postcss-8.x") DEBUG: Fetching changelog: https://github.com/postcss/postcss (8.4.5 -> 8.4.18)(branch="renovate/postcss-8.x") DEBUG: Processing existing PR(branch="renovate/postcss-8.x") DEBUG: Pull Request #1648 does not need updating(branch="renovate/postcss-8.x") DEBUG: PR is not configured for automerge(branch="renovate/postcss-8.x") DEBUG: syncBranchState()(branch="renovate/pytest-responses-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/pytest-responses-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/pytest-responses-0.x") DEBUG: getBranchPr(renovate/pytest-responses-0.x)(branch="renovate/pytest-responses-0.x") DEBUG: findPr(renovate/pytest-responses-0.x, undefined, open)(branch="renovate/pytest-responses-0.x") DEBUG: findPr(renovate/pytest-responses-0.x, undefined, closed)(branch="renovate/pytest-responses-0.x") DEBUG: branchExists=false(branch="renovate/pytest-responses-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/pytest-responses-0.x") DEBUG: recreateClosed is false(branch="renovate/pytest-responses-0.x") DEBUG: findPr(renovate/pytest-responses-0.x, Update dependency pytest-responses to v0.5.1, !open)(branch="renovate/pytest-responses-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/pytest-responses-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/pytest-responses-0.x") DEBUG: syncBranchState()(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: getBranchPr(renovate/stylelint-no-unsupported-browser-features-5.x)(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: findPr(renovate/stylelint-no-unsupported-browser-features-5.x, undefined, open)(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: findPr(renovate/stylelint-no-unsupported-browser-features-5.x, undefined, closed)(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: branchExists=false(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: recreateClosed is false(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: findPr(renovate/stylelint-no-unsupported-browser-features-5.x, Update dependency stylelint-no-unsupported-browser-features to v5.0.4, !open)(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: prAlreadyExisted=false(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/stylelint-no-unsupported-browser-features-5.x") DEBUG: syncBranchState()(branch="renovate/terser-webpack-plugin-5.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/terser-webpack-plugin-5.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/terser-webpack-plugin-5.x") DEBUG: getBranchPr(renovate/terser-webpack-plugin-5.x)(branch="renovate/terser-webpack-plugin-5.x") DEBUG: findPr(renovate/terser-webpack-plugin-5.x, undefined, open)(branch="renovate/terser-webpack-plugin-5.x") DEBUG: findPr(renovate/terser-webpack-plugin-5.x, undefined, closed)(branch="renovate/terser-webpack-plugin-5.x") DEBUG: branchExists=false(branch="renovate/terser-webpack-plugin-5.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/terser-webpack-plugin-5.x") DEBUG: recreateClosed is false(branch="renovate/terser-webpack-plugin-5.x") DEBUG: findPr(renovate/terser-webpack-plugin-5.x, Update dependency terser-webpack-plugin to v5.3.6, !open)(branch="renovate/terser-webpack-plugin-5.x") DEBUG: prAlreadyExisted=false(branch="renovate/terser-webpack-plugin-5.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/terser-webpack-plugin-5.x") DEBUG: syncBranchState()(branch="renovate/videojs-contrib-eme-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/videojs-contrib-eme-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/videojs-contrib-eme-4.x") DEBUG: getBranchPr(renovate/videojs-contrib-eme-4.x)(branch="renovate/videojs-contrib-eme-4.x") DEBUG: findPr(renovate/videojs-contrib-eme-4.x, undefined, open)(branch="renovate/videojs-contrib-eme-4.x") DEBUG: findPr(renovate/videojs-contrib-eme-4.x, undefined, closed)(branch="renovate/videojs-contrib-eme-4.x") DEBUG: branchExists=false(branch="renovate/videojs-contrib-eme-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/videojs-contrib-eme-4.x") DEBUG: recreateClosed is false(branch="renovate/videojs-contrib-eme-4.x") DEBUG: findPr(renovate/videojs-contrib-eme-4.x, Update dependency videojs-contrib-eme to v4.0.1, !open)(branch="renovate/videojs-contrib-eme-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/videojs-contrib-eme-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/videojs-contrib-eme-4.x") DEBUG: syncBranchState()(branch="renovate/videojs-hotkeys-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/videojs-hotkeys-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/videojs-hotkeys-0.x") DEBUG: getBranchPr(renovate/videojs-hotkeys-0.x)(branch="renovate/videojs-hotkeys-0.x") DEBUG: findPr(renovate/videojs-hotkeys-0.x, undefined, open)(branch="renovate/videojs-hotkeys-0.x") DEBUG: findPr(renovate/videojs-hotkeys-0.x, undefined, closed)(branch="renovate/videojs-hotkeys-0.x") DEBUG: branchExists=false(branch="renovate/videojs-hotkeys-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/videojs-hotkeys-0.x") DEBUG: recreateClosed is false(branch="renovate/videojs-hotkeys-0.x") DEBUG: findPr(renovate/videojs-hotkeys-0.x, Update dependency videojs-hotkeys to v0.2.28, !open)(branch="renovate/videojs-hotkeys-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/videojs-hotkeys-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/videojs-hotkeys-0.x") DEBUG: syncBranchState()(branch="renovate/watchdog-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/watchdog-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/watchdog-2.x") DEBUG: getBranchPr(renovate/watchdog-2.x)(branch="renovate/watchdog-2.x") DEBUG: findPr(renovate/watchdog-2.x, undefined, open)(branch="renovate/watchdog-2.x") DEBUG: findPr(renovate/watchdog-2.x, undefined, closed)(branch="renovate/watchdog-2.x") DEBUG: branchExists=false(branch="renovate/watchdog-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/watchdog-2.x") DEBUG: recreateClosed is false(branch="renovate/watchdog-2.x") DEBUG: findPr(renovate/watchdog-2.x, Update dependency watchdog to v2.1.9, !open)(branch="renovate/watchdog-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/watchdog-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/watchdog-2.x") DEBUG: syncBranchState()(branch="renovate/babel-monorepo") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/babel-monorepo") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/babel-monorepo") DEBUG: getBranchPr(renovate/babel-monorepo)(branch="renovate/babel-monorepo") DEBUG: findPr(renovate/babel-monorepo, undefined, open)(branch="renovate/babel-monorepo") DEBUG: findPr(renovate/babel-monorepo, undefined, closed)(branch="renovate/babel-monorepo") DEBUG: Found PR #1172(branch="renovate/babel-monorepo") DEBUG: branchExists=false(branch="renovate/babel-monorepo") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/babel-monorepo") DEBUG: recreateClosed is true(branch="renovate/babel-monorepo") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/babel-monorepo") DEBUG: syncBranchState()(branch="renovate/cimg-aws-2022.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/cimg-aws-2022.x") DEBUG: getBranchPr(renovate/cimg-aws-2022.x)(branch="renovate/cimg-aws-2022.x") DEBUG: findPr(renovate/cimg-aws-2022.x, undefined, open)(branch="renovate/cimg-aws-2022.x") DEBUG: findPr(renovate/cimg-aws-2022.x, undefined, closed)(branch="renovate/cimg-aws-2022.x") DEBUG: branchExists=false(branch="renovate/cimg-aws-2022.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/cimg-aws-2022.x") DEBUG: recreateClosed is true(branch="renovate/cimg-aws-2022.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/cimg-aws-2022.x") DEBUG: syncBranchState()(branch="renovate/pygithub-1.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/pygithub-1.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/pygithub-1.x") DEBUG: getBranchPr(renovate/pygithub-1.x)(branch="renovate/pygithub-1.x") DEBUG: findPr(renovate/pygithub-1.x, undefined, open)(branch="renovate/pygithub-1.x") DEBUG: findPr(renovate/pygithub-1.x, undefined, closed)(branch="renovate/pygithub-1.x") DEBUG: Found PR #1426(branch="renovate/pygithub-1.x") DEBUG: branchExists=false(branch="renovate/pygithub-1.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/pygithub-1.x") DEBUG: recreateClosed is false(branch="renovate/pygithub-1.x") DEBUG: findPr(renovate/pygithub-1.x, Update dependency PyGithub to v1.56, !open)(branch="renovate/pygithub-1.x") DEBUG: prAlreadyExisted=false(branch="renovate/pygithub-1.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/pygithub-1.x") DEBUG: syncBranchState()(branch="renovate/browserslist-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/browserslist-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/browserslist-4.x") DEBUG: getBranchPr(renovate/browserslist-4.x)(branch="renovate/browserslist-4.x") DEBUG: findPr(renovate/browserslist-4.x, undefined, open)(branch="renovate/browserslist-4.x") DEBUG: findPr(renovate/browserslist-4.x, undefined, closed)(branch="renovate/browserslist-4.x") DEBUG: Found PR #1347(branch="renovate/browserslist-4.x") DEBUG: branchExists=false(branch="renovate/browserslist-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/browserslist-4.x") DEBUG: recreateClosed is false(branch="renovate/browserslist-4.x") DEBUG: findPr(renovate/browserslist-4.x, Update dependency browserslist to v4.21.4, !open)(branch="renovate/browserslist-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/browserslist-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/browserslist-4.x") DEBUG: syncBranchState()(branch="renovate/css-loader-6.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/css-loader-6.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/css-loader-6.x") DEBUG: getBranchPr(renovate/css-loader-6.x)(branch="renovate/css-loader-6.x") DEBUG: findPr(renovate/css-loader-6.x, undefined, open)(branch="renovate/css-loader-6.x") DEBUG: findPr(renovate/css-loader-6.x, undefined, closed)(branch="renovate/css-loader-6.x") DEBUG: Found PR #1556(branch="renovate/css-loader-6.x") DEBUG: branchExists=false(branch="renovate/css-loader-6.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/css-loader-6.x") DEBUG: recreateClosed is false(branch="renovate/css-loader-6.x") DEBUG: findPr(renovate/css-loader-6.x, Update dependency css-loader to v6.7.1, !open)(branch="renovate/css-loader-6.x") DEBUG: prAlreadyExisted=false(branch="renovate/css-loader-6.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/css-loader-6.x") DEBUG: syncBranchState()(branch="renovate/django-allauth-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-allauth-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-allauth-0.x") DEBUG: getBranchPr(renovate/django-allauth-0.x)(branch="renovate/django-allauth-0.x") DEBUG: findPr(renovate/django-allauth-0.x, undefined, open)(branch="renovate/django-allauth-0.x") DEBUG: findPr(renovate/django-allauth-0.x, undefined, closed)(branch="renovate/django-allauth-0.x") DEBUG: Found PR #1203(branch="renovate/django-allauth-0.x") DEBUG: branchExists=false(branch="renovate/django-allauth-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-allauth-0.x") DEBUG: recreateClosed is false(branch="renovate/django-allauth-0.x") DEBUG: findPr(renovate/django-allauth-0.x, Update dependency django-allauth to v0.51.0, !open)(branch="renovate/django-allauth-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-allauth-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-allauth-0.x") DEBUG: syncBranchState()(branch="renovate/django-anymail-8.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-anymail-8.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-anymail-8.x") DEBUG: getBranchPr(renovate/django-anymail-8.x)(branch="renovate/django-anymail-8.x") DEBUG: findPr(renovate/django-anymail-8.x, undefined, open)(branch="renovate/django-anymail-8.x") DEBUG: findPr(renovate/django-anymail-8.x, undefined, closed)(branch="renovate/django-anymail-8.x") DEBUG: Found PR #1205(branch="renovate/django-anymail-8.x") DEBUG: branchExists=false(branch="renovate/django-anymail-8.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-anymail-8.x") DEBUG: recreateClosed is false(branch="renovate/django-anymail-8.x") DEBUG: findPr(renovate/django-anymail-8.x, Update dependency django-anymail to v8.6, !open)(branch="renovate/django-anymail-8.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-anymail-8.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-anymail-8.x") DEBUG: syncBranchState()(branch="renovate/django-colorfield-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-colorfield-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-colorfield-0.x") DEBUG: getBranchPr(renovate/django-colorfield-0.x)(branch="renovate/django-colorfield-0.x") DEBUG: findPr(renovate/django-colorfield-0.x, undefined, open)(branch="renovate/django-colorfield-0.x") DEBUG: findPr(renovate/django-colorfield-0.x, undefined, closed)(branch="renovate/django-colorfield-0.x") DEBUG: branchExists=false(branch="renovate/django-colorfield-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-colorfield-0.x") DEBUG: recreateClosed is false(branch="renovate/django-colorfield-0.x") DEBUG: findPr(renovate/django-colorfield-0.x, Update dependency django-colorfield to v0.7.2, !open)(branch="renovate/django-colorfield-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-colorfield-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-colorfield-0.x") DEBUG: syncBranchState()(branch="renovate/django-countries-7.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-countries-7.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-countries-7.x") DEBUG: getBranchPr(renovate/django-countries-7.x)(branch="renovate/django-countries-7.x") DEBUG: findPr(renovate/django-countries-7.x, undefined, open)(branch="renovate/django-countries-7.x") DEBUG: findPr(renovate/django-countries-7.x, undefined, closed)(branch="renovate/django-countries-7.x") DEBUG: branchExists=false(branch="renovate/django-countries-7.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-countries-7.x") DEBUG: recreateClosed is false(branch="renovate/django-countries-7.x") DEBUG: findPr(renovate/django-countries-7.x, Update dependency django-countries to v7.4.2, !open)(branch="renovate/django-countries-7.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-countries-7.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-countries-7.x") DEBUG: syncBranchState()(branch="renovate/django-debug-toolbar-3.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-debug-toolbar-3.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-debug-toolbar-3.x") DEBUG: getBranchPr(renovate/django-debug-toolbar-3.x)(branch="renovate/django-debug-toolbar-3.x") DEBUG: findPr(renovate/django-debug-toolbar-3.x, undefined, open)(branch="renovate/django-debug-toolbar-3.x") DEBUG: findPr(renovate/django-debug-toolbar-3.x, undefined, closed)(branch="renovate/django-debug-toolbar-3.x") DEBUG: Found PR #1515(branch="renovate/django-debug-toolbar-3.x") DEBUG: branchExists=false(branch="renovate/django-debug-toolbar-3.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-debug-toolbar-3.x") DEBUG: recreateClosed is false(branch="renovate/django-debug-toolbar-3.x") DEBUG: findPr(renovate/django-debug-toolbar-3.x, Update dependency django-debug-toolbar to v3.7.0, !open)(branch="renovate/django-debug-toolbar-3.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-debug-toolbar-3.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-debug-toolbar-3.x") DEBUG: syncBranchState()(branch="renovate/django-extensions-3.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-extensions-3.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-extensions-3.x") DEBUG: getBranchPr(renovate/django-extensions-3.x)(branch="renovate/django-extensions-3.x") DEBUG: findPr(renovate/django-extensions-3.x, undefined, open)(branch="renovate/django-extensions-3.x") DEBUG: findPr(renovate/django-extensions-3.x, undefined, closed)(branch="renovate/django-extensions-3.x") DEBUG: branchExists=false(branch="renovate/django-extensions-3.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-extensions-3.x") DEBUG: recreateClosed is false(branch="renovate/django-extensions-3.x") DEBUG: findPr(renovate/django-extensions-3.x, Update dependency django-extensions to v3.2.1, !open)(branch="renovate/django-extensions-3.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-extensions-3.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-extensions-3.x") DEBUG: syncBranchState()(branch="renovate/django-import-export-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-import-export-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-import-export-2.x") DEBUG: getBranchPr(renovate/django-import-export-2.x)(branch="renovate/django-import-export-2.x") DEBUG: findPr(renovate/django-import-export-2.x, undefined, open)(branch="renovate/django-import-export-2.x") DEBUG: findPr(renovate/django-import-export-2.x, undefined, closed)(branch="renovate/django-import-export-2.x") DEBUG: branchExists=false(branch="renovate/django-import-export-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-import-export-2.x") DEBUG: recreateClosed is false(branch="renovate/django-import-export-2.x") DEBUG: findPr(renovate/django-import-export-2.x, Update dependency django-import-export to v2.9.0, !open)(branch="renovate/django-import-export-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-import-export-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-import-export-2.x") DEBUG: syncBranchState()(branch="renovate/django-modeltranslation-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-modeltranslation-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-modeltranslation-0.x") DEBUG: getBranchPr(renovate/django-modeltranslation-0.x)(branch="renovate/django-modeltranslation-0.x") DEBUG: findPr(renovate/django-modeltranslation-0.x, undefined, open)(branch="renovate/django-modeltranslation-0.x") DEBUG: findPr(renovate/django-modeltranslation-0.x, undefined, closed)(branch="renovate/django-modeltranslation-0.x") DEBUG: Found PR #1171(branch="renovate/django-modeltranslation-0.x") DEBUG: branchExists=false(branch="renovate/django-modeltranslation-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-modeltranslation-0.x") DEBUG: recreateClosed is false(branch="renovate/django-modeltranslation-0.x") DEBUG: findPr(renovate/django-modeltranslation-0.x, Update dependency django-modeltranslation to v0.18.5, !open)(branch="renovate/django-modeltranslation-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-modeltranslation-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-modeltranslation-0.x") DEBUG: syncBranchState()(branch="renovate/django-select2-7.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-select2-7.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-select2-7.x") DEBUG: getBranchPr(renovate/django-select2-7.x)(branch="renovate/django-select2-7.x") DEBUG: findPr(renovate/django-select2-7.x, undefined, open)(branch="renovate/django-select2-7.x") DEBUG: findPr(renovate/django-select2-7.x, undefined, closed)(branch="renovate/django-select2-7.x") DEBUG: Found PR #1624(branch="renovate/django-select2-7.x") DEBUG: branchExists=false(branch="renovate/django-select2-7.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-select2-7.x") DEBUG: recreateClosed is false(branch="renovate/django-select2-7.x") DEBUG: findPr(renovate/django-select2-7.x, Update dependency django-select2 to v7.11.0, !open)(branch="renovate/django-select2-7.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-select2-7.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-select2-7.x") DEBUG: syncBranchState()(branch="renovate/django-storages-1.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-storages-1.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-storages-1.x") DEBUG: getBranchPr(renovate/django-storages-1.x)(branch="renovate/django-storages-1.x") DEBUG: findPr(renovate/django-storages-1.x, undefined, open)(branch="renovate/django-storages-1.x") DEBUG: findPr(renovate/django-storages-1.x, undefined, closed)(branch="renovate/django-storages-1.x") DEBUG: branchExists=false(branch="renovate/django-storages-1.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-storages-1.x") DEBUG: recreateClosed is false(branch="renovate/django-storages-1.x") DEBUG: findPr(renovate/django-storages-1.x, Update dependency django-storages to v1.13.1, !open)(branch="renovate/django-storages-1.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-storages-1.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-storages-1.x") DEBUG: syncBranchState()(branch="renovate/django-webpack-loader-1.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-webpack-loader-1.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-webpack-loader-1.x") DEBUG: getBranchPr(renovate/django-webpack-loader-1.x)(branch="renovate/django-webpack-loader-1.x") DEBUG: findPr(renovate/django-webpack-loader-1.x, undefined, open)(branch="renovate/django-webpack-loader-1.x") DEBUG: findPr(renovate/django-webpack-loader-1.x, undefined, closed)(branch="renovate/django-webpack-loader-1.x") DEBUG: branchExists=false(branch="renovate/django-webpack-loader-1.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-webpack-loader-1.x") DEBUG: recreateClosed is false(branch="renovate/django-webpack-loader-1.x") DEBUG: findPr(renovate/django-webpack-loader-1.x, Update dependency django-webpack-loader to v1.6.0, !open)(branch="renovate/django-webpack-loader-1.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-webpack-loader-1.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-webpack-loader-1.x") DEBUG: syncBranchState()(branch="renovate/djangorestframework-3.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/djangorestframework-3.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/djangorestframework-3.x") DEBUG: getBranchPr(renovate/djangorestframework-3.x)(branch="renovate/djangorestframework-3.x") DEBUG: findPr(renovate/djangorestframework-3.x, undefined, open)(branch="renovate/djangorestframework-3.x") DEBUG: findPr(renovate/djangorestframework-3.x, undefined, closed)(branch="renovate/djangorestframework-3.x") DEBUG: branchExists=false(branch="renovate/djangorestframework-3.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/djangorestframework-3.x") DEBUG: recreateClosed is false(branch="renovate/djangorestframework-3.x") DEBUG: findPr(renovate/djangorestframework-3.x, Update dependency djangorestframework to v3.14.0, !open)(branch="renovate/djangorestframework-3.x") DEBUG: prAlreadyExisted=false(branch="renovate/djangorestframework-3.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/djangorestframework-3.x") DEBUG: syncBranchState()(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: getBranchPr(renovate/eslint-plugin-mocha-10.x)(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: findPr(renovate/eslint-plugin-mocha-10.x, undefined, open)(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: findPr(renovate/eslint-plugin-mocha-10.x, undefined, closed)(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: branchExists=false(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: recreateClosed is false(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: findPr(renovate/eslint-plugin-mocha-10.x, Update dependency eslint-plugin-mocha to v10.1.0, !open)(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: prAlreadyExisted=false(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/eslint-plugin-mocha-10.x") DEBUG: syncBranchState()(branch="renovate/geoip2-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/geoip2-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/geoip2-4.x") DEBUG: getBranchPr(renovate/geoip2-4.x)(branch="renovate/geoip2-4.x") DEBUG: findPr(renovate/geoip2-4.x, undefined, open)(branch="renovate/geoip2-4.x") DEBUG: findPr(renovate/geoip2-4.x, undefined, closed)(branch="renovate/geoip2-4.x") DEBUG: branchExists=false(branch="renovate/geoip2-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/geoip2-4.x") DEBUG: recreateClosed is false(branch="renovate/geoip2-4.x") DEBUG: findPr(renovate/geoip2-4.x, Update dependency geoip2 to v4.6.0, !open)(branch="renovate/geoip2-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/geoip2-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/geoip2-4.x") DEBUG: syncBranchState()(branch="renovate/ipython-7.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/ipython-7.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/ipython-7.x") DEBUG: getBranchPr(renovate/ipython-7.x)(branch="renovate/ipython-7.x") DEBUG: findPr(renovate/ipython-7.x, undefined, open)(branch="renovate/ipython-7.x") DEBUG: findPr(renovate/ipython-7.x, undefined, closed)(branch="renovate/ipython-7.x") DEBUG: branchExists=false(branch="renovate/ipython-7.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/ipython-7.x") DEBUG: recreateClosed is false(branch="renovate/ipython-7.x") DEBUG: findPr(renovate/ipython-7.x, Update dependency ipython to v7.34.0, !open)(branch="renovate/ipython-7.x") DEBUG: prAlreadyExisted=false(branch="renovate/ipython-7.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/ipython-7.x") DEBUG: syncBranchState()(branch="renovate/jsonnet-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/jsonnet-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/jsonnet-0.x") DEBUG: getBranchPr(renovate/jsonnet-0.x)(branch="renovate/jsonnet-0.x") DEBUG: findPr(renovate/jsonnet-0.x, undefined, open)(branch="renovate/jsonnet-0.x") DEBUG: findPr(renovate/jsonnet-0.x, undefined, closed)(branch="renovate/jsonnet-0.x") DEBUG: branchExists=false(branch="renovate/jsonnet-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/jsonnet-0.x") DEBUG: recreateClosed is false(branch="renovate/jsonnet-0.x") DEBUG: findPr(renovate/jsonnet-0.x, Update dependency jsonnet to ^0.19.0, !open)(branch="renovate/jsonnet-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/jsonnet-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/jsonnet-0.x") DEBUG: syncBranchState()(branch="renovate/karma-6.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/karma-6.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/karma-6.x") DEBUG: getBranchPr(renovate/karma-6.x)(branch="renovate/karma-6.x") DEBUG: findPr(renovate/karma-6.x, undefined, open)(branch="renovate/karma-6.x") DEBUG: findPr(renovate/karma-6.x, undefined, closed)(branch="renovate/karma-6.x") DEBUG: branchExists=false(branch="renovate/karma-6.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/karma-6.x") DEBUG: recreateClosed is false(branch="renovate/karma-6.x") DEBUG: findPr(renovate/karma-6.x, Update dependency karma to v6.4.1, !open)(branch="renovate/karma-6.x") DEBUG: prAlreadyExisted=false(branch="renovate/karma-6.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/karma-6.x") DEBUG: syncBranchState()(branch="renovate/markdownlint-cli-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/markdownlint-cli-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/markdownlint-cli-0.x") DEBUG: getBranchPr(renovate/markdownlint-cli-0.x)(branch="renovate/markdownlint-cli-0.x") DEBUG: findPr(renovate/markdownlint-cli-0.x, undefined, open)(branch="renovate/markdownlint-cli-0.x") DEBUG: findPr(renovate/markdownlint-cli-0.x, undefined, closed)(branch="renovate/markdownlint-cli-0.x") DEBUG: branchExists=false(branch="renovate/markdownlint-cli-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/markdownlint-cli-0.x") DEBUG: recreateClosed is false(branch="renovate/markdownlint-cli-0.x") DEBUG: findPr(renovate/markdownlint-cli-0.x, Update dependency markdownlint-cli to v0.32.2, !open)(branch="renovate/markdownlint-cli-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/markdownlint-cli-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/markdownlint-cli-0.x") DEBUG: syncBranchState()(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: branch.isUpToDate(): using cached result "true"(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: getBranchPr(renovate/mini-css-extract-plugin-2.x)(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: findPr(renovate/mini-css-extract-plugin-2.x, undefined, open)(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Found PR #1561(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: branchExists=true(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: PR rebase requested=false(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Checking if PR has been edited(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: branch.isModified(): using cached result "false"(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Found existing branch PR(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Checking schedule(at any time, Europe/Berlin)(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: No schedule defined(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Branch already exists(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: getBranchPr(renovate/mini-css-extract-plugin-2.x)(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: findPr(renovate/mini-css-extract-plugin-2.x, undefined, open)(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Found PR #1561(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Skipping behind base branch check due to rebaseWhen=auto(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: isBranchConflicted(develop, renovate/mini-css-extract-plugin-2.x)(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: branch.isConflicted(): using git to calculate(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: branch.isConflicted(): false(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Branch does not need rebasing(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Using reuseExistingBranch: true(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Checking if we can automerge branch(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: mergeStatus=no automerge(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Ensuring PR(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: getBranchPr(renovate/mini-css-extract-plugin-2.x)(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: findPr(renovate/mini-css-extract-plugin-2.x, undefined, open)(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Found PR #1561(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Found existing PR(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Fetching changelog: https://github.com/webpack-contrib/mini-css-extract-plugin (2.4.1 -> 2.6.1)(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Processing existing PR(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: Pull Request #1561 does not need updating(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: PR is not configured for automerge(branch="renovate/mini-css-extract-plugin-2.x") DEBUG: syncBranchState()(branch="renovate/mutmut-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/mutmut-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/mutmut-2.x") DEBUG: getBranchPr(renovate/mutmut-2.x)(branch="renovate/mutmut-2.x") DEBUG: findPr(renovate/mutmut-2.x, undefined, open)(branch="renovate/mutmut-2.x") DEBUG: findPr(renovate/mutmut-2.x, undefined, closed)(branch="renovate/mutmut-2.x") DEBUG: branchExists=false(branch="renovate/mutmut-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/mutmut-2.x") DEBUG: recreateClosed is false(branch="renovate/mutmut-2.x") DEBUG: findPr(renovate/mutmut-2.x, Update dependency mutmut to v2.4.2, !open)(branch="renovate/mutmut-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/mutmut-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/mutmut-2.x") DEBUG: syncBranchState()(branch="renovate/pgcli-3.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/pgcli-3.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/pgcli-3.x") DEBUG: getBranchPr(renovate/pgcli-3.x)(branch="renovate/pgcli-3.x") DEBUG: findPr(renovate/pgcli-3.x, undefined, open)(branch="renovate/pgcli-3.x") DEBUG: findPr(renovate/pgcli-3.x, undefined, closed)(branch="renovate/pgcli-3.x") DEBUG: Found PR #1517(branch="renovate/pgcli-3.x") DEBUG: branchExists=false(branch="renovate/pgcli-3.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/pgcli-3.x") DEBUG: recreateClosed is false(branch="renovate/pgcli-3.x") DEBUG: findPr(renovate/pgcli-3.x, Update dependency pgcli to v3.5.0, !open)(branch="renovate/pgcli-3.x") DEBUG: prAlreadyExisted=false(branch="renovate/pgcli-3.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/pgcli-3.x") DEBUG: syncBranchState()(branch="renovate/prettier-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/prettier-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/prettier-2.x") DEBUG: getBranchPr(renovate/prettier-2.x)(branch="renovate/prettier-2.x") DEBUG: findPr(renovate/prettier-2.x, undefined, open)(branch="renovate/prettier-2.x") DEBUG: findPr(renovate/prettier-2.x, undefined, closed)(branch="renovate/prettier-2.x") DEBUG: Found PR #1175(branch="renovate/prettier-2.x") DEBUG: branchExists=false(branch="renovate/prettier-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/prettier-2.x") DEBUG: recreateClosed is false(branch="renovate/prettier-2.x") DEBUG: findPr(renovate/prettier-2.x, Update dependency prettier to v2.7.1, !open)(branch="renovate/prettier-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/prettier-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/prettier-2.x") DEBUG: syncBranchState()(branch="renovate/pymarc-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/pymarc-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/pymarc-4.x") DEBUG: getBranchPr(renovate/pymarc-4.x)(branch="renovate/pymarc-4.x") DEBUG: findPr(renovate/pymarc-4.x, undefined, open)(branch="renovate/pymarc-4.x") DEBUG: findPr(renovate/pymarc-4.x, undefined, closed)(branch="renovate/pymarc-4.x") DEBUG: Found PR #1621(branch="renovate/pymarc-4.x") DEBUG: branchExists=false(branch="renovate/pymarc-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/pymarc-4.x") DEBUG: recreateClosed is false(branch="renovate/pymarc-4.x") DEBUG: findPr(renovate/pymarc-4.x, Update dependency pymarc to v4.2.1, !open)(branch="renovate/pymarc-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/pymarc-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/pymarc-4.x") DEBUG: syncBranchState()(branch="renovate/pytest-django-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/pytest-django-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/pytest-django-4.x") DEBUG: getBranchPr(renovate/pytest-django-4.x)(branch="renovate/pytest-django-4.x") DEBUG: findPr(renovate/pytest-django-4.x, undefined, open)(branch="renovate/pytest-django-4.x") DEBUG: findPr(renovate/pytest-django-4.x, undefined, closed)(branch="renovate/pytest-django-4.x") DEBUG: Found PR #1206(branch="renovate/pytest-django-4.x") DEBUG: branchExists=false(branch="renovate/pytest-django-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/pytest-django-4.x") DEBUG: recreateClosed is false(branch="renovate/pytest-django-4.x") DEBUG: findPr(renovate/pytest-django-4.x, Update dependency pytest-django to v4.5.2, !open)(branch="renovate/pytest-django-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/pytest-django-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/pytest-django-4.x") DEBUG: syncBranchState()(branch="renovate/pytest-factoryboy-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/pytest-factoryboy-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/pytest-factoryboy-2.x") DEBUG: getBranchPr(renovate/pytest-factoryboy-2.x)(branch="renovate/pytest-factoryboy-2.x") DEBUG: findPr(renovate/pytest-factoryboy-2.x, undefined, open)(branch="renovate/pytest-factoryboy-2.x") DEBUG: findPr(renovate/pytest-factoryboy-2.x, undefined, closed)(branch="renovate/pytest-factoryboy-2.x") DEBUG: branchExists=false(branch="renovate/pytest-factoryboy-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/pytest-factoryboy-2.x") DEBUG: recreateClosed is false(branch="renovate/pytest-factoryboy-2.x") DEBUG: findPr(renovate/pytest-factoryboy-2.x, Update dependency pytest-factoryboy to v2.5.0, !open)(branch="renovate/pytest-factoryboy-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/pytest-factoryboy-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/pytest-factoryboy-2.x") DEBUG: syncBranchState()(branch="renovate/pytest-mock-3.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/pytest-mock-3.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/pytest-mock-3.x") DEBUG: getBranchPr(renovate/pytest-mock-3.x)(branch="renovate/pytest-mock-3.x") DEBUG: findPr(renovate/pytest-mock-3.x, undefined, open)(branch="renovate/pytest-mock-3.x") DEBUG: findPr(renovate/pytest-mock-3.x, undefined, closed)(branch="renovate/pytest-mock-3.x") DEBUG: Found PR #1186(branch="renovate/pytest-mock-3.x") DEBUG: branchExists=false(branch="renovate/pytest-mock-3.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/pytest-mock-3.x") DEBUG: recreateClosed is false(branch="renovate/pytest-mock-3.x") DEBUG: findPr(renovate/pytest-mock-3.x, Update dependency pytest-mock to v3.10.0, !open)(branch="renovate/pytest-mock-3.x") DEBUG: prAlreadyExisted=false(branch="renovate/pytest-mock-3.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/pytest-mock-3.x") DEBUG: syncBranchState()(branch="renovate/requests-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/requests-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/requests-2.x") DEBUG: getBranchPr(renovate/requests-2.x)(branch="renovate/requests-2.x") DEBUG: findPr(renovate/requests-2.x, undefined, open)(branch="renovate/requests-2.x") DEBUG: findPr(renovate/requests-2.x, undefined, closed)(branch="renovate/requests-2.x") DEBUG: Found PR #1187(branch="renovate/requests-2.x") DEBUG: branchExists=false(branch="renovate/requests-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/requests-2.x") DEBUG: recreateClosed is false(branch="renovate/requests-2.x") DEBUG: findPr(renovate/requests-2.x, Update dependency requests to v2.28.1, !open)(branch="renovate/requests-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/requests-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/requests-2.x") DEBUG: syncBranchState()(branch="renovate/responses-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/responses-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/responses-0.x") DEBUG: getBranchPr(renovate/responses-0.x)(branch="renovate/responses-0.x") DEBUG: findPr(renovate/responses-0.x, undefined, open)(branch="renovate/responses-0.x") DEBUG: findPr(renovate/responses-0.x, undefined, closed)(branch="renovate/responses-0.x") DEBUG: Found PR #1188(branch="renovate/responses-0.x") DEBUG: branchExists=false(branch="renovate/responses-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/responses-0.x") DEBUG: recreateClosed is false(branch="renovate/responses-0.x") DEBUG: findPr(renovate/responses-0.x, Update dependency responses to v0.22.0, !open)(branch="renovate/responses-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/responses-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/responses-0.x") DEBUG: syncBranchState()(branch="renovate/rules-3.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/rules-3.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/rules-3.x") DEBUG: getBranchPr(renovate/rules-3.x)(branch="renovate/rules-3.x") DEBUG: findPr(renovate/rules-3.x, undefined, open)(branch="renovate/rules-3.x") DEBUG: findPr(renovate/rules-3.x, undefined, closed)(branch="renovate/rules-3.x") DEBUG: branchExists=false(branch="renovate/rules-3.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/rules-3.x") DEBUG: recreateClosed is false(branch="renovate/rules-3.x") DEBUG: findPr(renovate/rules-3.x, Update dependency rules to v3.3, !open)(branch="renovate/rules-3.x") DEBUG: prAlreadyExisted=false(branch="renovate/rules-3.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/rules-3.x") DEBUG: syncBranchState()(branch="renovate/sass-1.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/sass-1.x") DEBUG: branch.isUpToDate(): using cached result "true"(branch="renovate/sass-1.x") DEBUG: getBranchPr(renovate/sass-1.x)(branch="renovate/sass-1.x") DEBUG: findPr(renovate/sass-1.x, undefined, open)(branch="renovate/sass-1.x") DEBUG: Found PR #1650(branch="renovate/sass-1.x") DEBUG: branchExists=true(branch="renovate/sass-1.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/sass-1.x") DEBUG: PR rebase requested=false(branch="renovate/sass-1.x") DEBUG: Checking if PR has been edited(branch="renovate/sass-1.x") DEBUG: branch.isModified(): using cached result "false"(branch="renovate/sass-1.x") DEBUG: Found existing branch PR(branch="renovate/sass-1.x") DEBUG: Checking schedule(at any time, Europe/Berlin)(branch="renovate/sass-1.x") DEBUG: No schedule defined(branch="renovate/sass-1.x") DEBUG: Branch already exists(branch="renovate/sass-1.x") DEBUG: getBranchPr(renovate/sass-1.x)(branch="renovate/sass-1.x") DEBUG: findPr(renovate/sass-1.x, undefined, open)(branch="renovate/sass-1.x") DEBUG: Found PR #1650(branch="renovate/sass-1.x") DEBUG: Skipping behind base branch check due to rebaseWhen=auto(branch="renovate/sass-1.x") DEBUG: isBranchConflicted(develop, renovate/sass-1.x)(branch="renovate/sass-1.x") DEBUG: branch.isConflicted(): using git to calculate(branch="renovate/sass-1.x") DEBUG: branch.isConflicted(): false(branch="renovate/sass-1.x") DEBUG: Branch does not need rebasing(branch="renovate/sass-1.x") DEBUG: Using reuseExistingBranch: true(branch="renovate/sass-1.x") DEBUG: Checking if we can automerge branch(branch="renovate/sass-1.x") DEBUG: mergeStatus=no automerge(branch="renovate/sass-1.x") DEBUG: Ensuring PR(branch="renovate/sass-1.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/sass-1.x") DEBUG: getBranchPr(renovate/sass-1.x)(branch="renovate/sass-1.x") DEBUG: findPr(renovate/sass-1.x, undefined, open)(branch="renovate/sass-1.x") DEBUG: Found PR #1650(branch="renovate/sass-1.x") DEBUG: Found existing PR(branch="renovate/sass-1.x") DEBUG: Fetching changelog: https://github.com/sass/dart-sass (1.49.0 -> 1.55.0)(branch="renovate/sass-1.x") DEBUG: Processing existing PR(branch="renovate/sass-1.x") DEBUG: Pull Request #1650 does not need updating(branch="renovate/sass-1.x") DEBUG: PR is not configured for automerge(branch="renovate/sass-1.x") DEBUG: syncBranchState()(branch="renovate/sass-loader-12.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/sass-loader-12.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/sass-loader-12.x") DEBUG: getBranchPr(renovate/sass-loader-12.x)(branch="renovate/sass-loader-12.x") DEBUG: findPr(renovate/sass-loader-12.x, undefined, open)(branch="renovate/sass-loader-12.x") DEBUG: findPr(renovate/sass-loader-12.x, undefined, closed)(branch="renovate/sass-loader-12.x") DEBUG: branchExists=false(branch="renovate/sass-loader-12.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/sass-loader-12.x") DEBUG: recreateClosed is false(branch="renovate/sass-loader-12.x") DEBUG: findPr(renovate/sass-loader-12.x, Update dependency sass-loader to v12.6.0, !open)(branch="renovate/sass-loader-12.x") DEBUG: prAlreadyExisted=false(branch="renovate/sass-loader-12.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/sass-loader-12.x") DEBUG: syncBranchState()(branch="renovate/sentry-sdk-1.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/sentry-sdk-1.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/sentry-sdk-1.x") DEBUG: getBranchPr(renovate/sentry-sdk-1.x)(branch="renovate/sentry-sdk-1.x") DEBUG: findPr(renovate/sentry-sdk-1.x, undefined, open)(branch="renovate/sentry-sdk-1.x") DEBUG: findPr(renovate/sentry-sdk-1.x, undefined, closed)(branch="renovate/sentry-sdk-1.x") DEBUG: branchExists=false(branch="renovate/sentry-sdk-1.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/sentry-sdk-1.x") DEBUG: recreateClosed is false(branch="renovate/sentry-sdk-1.x") DEBUG: findPr(renovate/sentry-sdk-1.x, Update dependency sentry-sdk to v1.10.1, !open)(branch="renovate/sentry-sdk-1.x") DEBUG: prAlreadyExisted=false(branch="renovate/sentry-sdk-1.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/sentry-sdk-1.x") DEBUG: syncBranchState()(branch="renovate/starlette-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/starlette-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/starlette-0.x") DEBUG: getBranchPr(renovate/starlette-0.x)(branch="renovate/starlette-0.x") DEBUG: findPr(renovate/starlette-0.x, undefined, open)(branch="renovate/starlette-0.x") DEBUG: findPr(renovate/starlette-0.x, undefined, closed)(branch="renovate/starlette-0.x") DEBUG: branchExists=false(branch="renovate/starlette-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/starlette-0.x") DEBUG: recreateClosed is false(branch="renovate/starlette-0.x") DEBUG: findPr(renovate/starlette-0.x, Update dependency starlette to ^0.21.0, !open)(branch="renovate/starlette-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/starlette-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/starlette-0.x") DEBUG: syncBranchState()(branch="renovate/stylelint-14.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/stylelint-14.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/stylelint-14.x") DEBUG: getBranchPr(renovate/stylelint-14.x)(branch="renovate/stylelint-14.x") DEBUG: findPr(renovate/stylelint-14.x, undefined, open)(branch="renovate/stylelint-14.x") DEBUG: findPr(renovate/stylelint-14.x, undefined, closed)(branch="renovate/stylelint-14.x") DEBUG: branchExists=false(branch="renovate/stylelint-14.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/stylelint-14.x") DEBUG: recreateClosed is false(branch="renovate/stylelint-14.x") DEBUG: findPr(renovate/stylelint-14.x, Update dependency stylelint to v14.14.0, !open)(branch="renovate/stylelint-14.x") DEBUG: prAlreadyExisted=false(branch="renovate/stylelint-14.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/stylelint-14.x") DEBUG: syncBranchState()(branch="renovate/stylelint-scss-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/stylelint-scss-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/stylelint-scss-4.x") DEBUG: getBranchPr(renovate/stylelint-scss-4.x)(branch="renovate/stylelint-scss-4.x") DEBUG: findPr(renovate/stylelint-scss-4.x, undefined, open)(branch="renovate/stylelint-scss-4.x") DEBUG: findPr(renovate/stylelint-scss-4.x, undefined, closed)(branch="renovate/stylelint-scss-4.x") DEBUG: branchExists=false(branch="renovate/stylelint-scss-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/stylelint-scss-4.x") DEBUG: recreateClosed is false(branch="renovate/stylelint-scss-4.x") DEBUG: findPr(renovate/stylelint-scss-4.x, Update dependency stylelint-scss to v4.3.0, !open)(branch="renovate/stylelint-scss-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/stylelint-scss-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/stylelint-scss-4.x") DEBUG: syncBranchState()(branch="renovate/time-machine-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/time-machine-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/time-machine-2.x") DEBUG: getBranchPr(renovate/time-machine-2.x)(branch="renovate/time-machine-2.x") DEBUG: findPr(renovate/time-machine-2.x, undefined, open)(branch="renovate/time-machine-2.x") DEBUG: findPr(renovate/time-machine-2.x, undefined, closed)(branch="renovate/time-machine-2.x") DEBUG: branchExists=false(branch="renovate/time-machine-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/time-machine-2.x") DEBUG: recreateClosed is false(branch="renovate/time-machine-2.x") DEBUG: findPr(renovate/time-machine-2.x, Update dependency time-machine to v2.8.2, !open)(branch="renovate/time-machine-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/time-machine-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/time-machine-2.x") DEBUG: syncBranchState()(branch="renovate/uvicorn-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/uvicorn-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/uvicorn-0.x") DEBUG: getBranchPr(renovate/uvicorn-0.x)(branch="renovate/uvicorn-0.x") DEBUG: findPr(renovate/uvicorn-0.x, undefined, open)(branch="renovate/uvicorn-0.x") DEBUG: findPr(renovate/uvicorn-0.x, undefined, closed)(branch="renovate/uvicorn-0.x") DEBUG: branchExists=false(branch="renovate/uvicorn-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/uvicorn-0.x") DEBUG: recreateClosed is false(branch="renovate/uvicorn-0.x") DEBUG: findPr(renovate/uvicorn-0.x, Update dependency uvicorn to ^0.19.0, !open)(branch="renovate/uvicorn-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/uvicorn-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/uvicorn-0.x") DEBUG: syncBranchState()(branch="renovate/video.js-7.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/video.js-7.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/video.js-7.x") DEBUG: getBranchPr(renovate/video.js-7.x)(branch="renovate/video.js-7.x") DEBUG: findPr(renovate/video.js-7.x, undefined, open)(branch="renovate/video.js-7.x") DEBUG: findPr(renovate/video.js-7.x, undefined, closed)(branch="renovate/video.js-7.x") DEBUG: branchExists=false(branch="renovate/video.js-7.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/video.js-7.x") DEBUG: recreateClosed is false(branch="renovate/video.js-7.x") DEBUG: findPr(renovate/video.js-7.x, Update dependency video.js to v7.20.3, !open)(branch="renovate/video.js-7.x") DEBUG: prAlreadyExisted=false(branch="renovate/video.js-7.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/video.js-7.x") DEBUG: syncBranchState()(branch="renovate/wagtail-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/wagtail-2.x") DEBUG: branch.isUpToDate(): using cached result "true"(branch="renovate/wagtail-2.x") DEBUG: getBranchPr(renovate/wagtail-2.x)(branch="renovate/wagtail-2.x") DEBUG: findPr(renovate/wagtail-2.x, undefined, open)(branch="renovate/wagtail-2.x") DEBUG: Found PR #1625(branch="renovate/wagtail-2.x") DEBUG: branchExists=true(branch="renovate/wagtail-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/wagtail-2.x") DEBUG: PR rebase requested=false(branch="renovate/wagtail-2.x") DEBUG: Checking if PR has been edited(branch="renovate/wagtail-2.x") DEBUG: branch.isModified(): using cached result "false"(branch="renovate/wagtail-2.x") DEBUG: Found existing branch PR(branch="renovate/wagtail-2.x") DEBUG: Checking schedule(at any time, Europe/Berlin)(branch="renovate/wagtail-2.x") DEBUG: No schedule defined(branch="renovate/wagtail-2.x") DEBUG: Branch already exists(branch="renovate/wagtail-2.x") DEBUG: getBranchPr(renovate/wagtail-2.x)(branch="renovate/wagtail-2.x") DEBUG: findPr(renovate/wagtail-2.x, undefined, open)(branch="renovate/wagtail-2.x") DEBUG: Found PR #1625(branch="renovate/wagtail-2.x") DEBUG: Skipping behind base branch check due to rebaseWhen=auto(branch="renovate/wagtail-2.x") DEBUG: isBranchConflicted(develop, renovate/wagtail-2.x)(branch="renovate/wagtail-2.x") DEBUG: branch.isConflicted(): using git to calculate(branch="renovate/wagtail-2.x") DEBUG: branch.isConflicted(): true(branch="renovate/wagtail-2.x") DEBUG: Branch is conflicted(branch="renovate/wagtail-2.x") DEBUG: Branch is not mergeable and needs rebasing(branch="renovate/wagtail-2.x") DEBUG: Using reuseExistingBranch: false(branch="renovate/wagtail-2.x") DEBUG: Setting current branch to develop(branch="renovate/wagtail-2.x") DEBUG: latest commit(branch="renovate/wagtail-2.x") { "branchName": "develop", "latestCommitDate": "2022-11-01T14:45:34+01:00" } DEBUG: manager.getUpdatedPackageFiles() reuseExistingBranch=false(branch="renovate/wagtail-2.x") DEBUG: Starting search at index 985(packageFile="pyproject.toml", branch="renovate/wagtail-2.x") { "depName": "wagtail" } DEBUG: Found match at index 985(packageFile="pyproject.toml", branch="renovate/wagtail-2.x") { "depName": "wagtail" } DEBUG: Contents updated(packageFile="pyproject.toml", branch="renovate/wagtail-2.x") { "depName": "wagtail" } DEBUG: poetry.updateArtifacts(pyproject.toml)(branch="renovate/wagtail-2.x") DEBUG: Updating poetry.lock(branch="renovate/wagtail-2.x") DEBUG: Setting CONTAINERBASE_CACHE_DIR to /tmp/containerbase(branch="renovate/wagtail-2.x") DEBUG: Using docker to execute(branch="renovate/wagtail-2.x") { "image": "sidecar" } DEBUG: Resolved stable matching version(branch="renovate/wagtail-2.x") { "toolName": "python", "constraint": "^3.10", "resolvedVersion": "3.11.0" } DEBUG: containerbaseDir is separate from cacheDir(branch="renovate/wagtail-2.x") DEBUG: No tag or tagConstraint specified(branch="renovate/wagtail-2.x") { "image": "docker.io/renovate/sidecar" } DEBUG: Docker image is already prefetched: docker.io/renovate/sidecar@sha256:4d5e8d8c16dbd2b9c6c52955c468d7d9cbccd22022559b65e216aa37f25fec22(branch="renovate/wagtail-2.x") DEBUG: Executing command(branch="renovate/wagtail-2.x") { "command": "docker run --rm --name=renovate_sidecar --label=renovate_child -v \"/mnt/renovate/gh/PicturePipe/hatch\":\"/mnt/renovate/gh/PicturePipe/hatch\" -v \"/tmp/renovate-cache\":\"/tmp/renovate-cache\" -v \"/tmp/containerbase\":\"/tmp/containerbase\" -e PIP_CACHE_DIR -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w \"/mnt/renovate/gh/PicturePipe/hatch\" docker.io/renovate/sidecar bash -l -c \"install-tool python 3.11.0 && pip install --user poetry && poetry update --lock --no-interaction wagtail\"" } DEBUG: exec completed(branch="renovate/wagtail-2.x") { "cmd": "docker run --rm --name=renovate_sidecar --label=renovate_child -v \"/mnt/renovate/gh/PicturePipe/hatch\":\"/mnt/renovate/gh/PicturePipe/hatch\" -v \"/tmp/renovate-cache\":\"/tmp/renovate-cache\" -v \"/tmp/containerbase\":\"/tmp/containerbase\" -e PIP_CACHE_DIR -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w \"/mnt/renovate/gh/PicturePipe/hatch\" docker.io/renovate/sidecar bash -l -c \"install-tool python 3.11.0 && pip install --user poetry && poetry update --lock --no-interaction wagtail\"", "durationMs": 702377, "stdout": "installing v2 tool python v3.11.0\nUsing prebuild python\nRequirement already satisfied: pip in /opt/buildpack/tools/python/3.11.0/lib/python3.11/site-packages (22.3)\nFiles removed: 1\nlinking tool python v3.11.0\nPython 3.11.0\npip 22.3 from /opt/buildpack/tools/python/3.11.0/lib/python3.11/site-packages/pip (python 3.11)\nInstalled v2 /usr/local/buildpack/tools/v2/python.sh in 19 seconds\nskip cleanup, not a docker build: 07a5f5e63b91\nCollecting poetry\n Downloading poetry-1.2.2-py3-none-any.whl (212 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 212.4/212.4 kB 7.7 MB/s eta 0:00:00\nCollecting cachecontrol[filecache]<0.13.0,>=0.12.9\n Downloading CacheControl-0.12.11-py2.py3-none-any.whl (21 kB)\nCollecting cachy<0.4.0,>=0.3.0\n Downloading cachy-0.3.0-py2.py3-none-any.whl (20 kB)\nCollecting cleo<2.0.0,>=1.0.0a5\n Downloading cleo-1.0.0a5-py3-none-any.whl (78 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.7/78.7 kB 10.3 MB/s eta 0:00:00\nCollecting crashtest<0.4.0,>=0.3.0\n Downloading crashtest-0.3.1-py3-none-any.whl (7.0 kB)\nCollecting dulwich<0.21.0,>=0.20.46\n Downloading dulwich-0.20.50-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (501 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 501.7/501.7 kB 21.8 MB/s eta 0:00:00\nCollecting html5lib<2.0,>=1.0\n Downloading html5lib-1.1-py2.py3-none-any.whl (112 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 112.2/112.2 kB 14.0 MB/s eta 0:00:00\nCollecting jsonschema<5.0.0,>=4.10.0\n Downloading jsonschema-4.16.0-py3-none-any.whl (83 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 83.1/83.1 kB 11.4 MB/s eta 0:00:00\nCollecting keyring>=21.2.0\n Downloading keyring-23.9.3-py3-none-any.whl (35 kB)\nCollecting packaging>=20.4\n Downloading packaging-21.3-py3-none-any.whl (40 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.8/40.8 kB 5.4 MB/s eta 0:00:00\nCollecting pexpect<5.0.0,>=4.7.0\n Downloading pexpect-4.8.0-py2.py3-none-any.whl (59 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 59.0/59.0 kB 7.2 MB/s eta 0:00:00\nCollecting pkginfo<2.0,>=1.5\n Downloading pkginfo-1.8.3-py2.py3-none-any.whl (26 kB)\nCollecting platformdirs<3.0.0,>=2.5.2\n Downloading platformdirs-2.5.2-py3-none-any.whl (14 kB)\nCollecting poetry-core==1.3.2\n Downloading poetry_core-1.3.2-py3-none-any.whl (531 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 531.3/531.3 kB 21.6 MB/s eta 0:00:00\nCollecting poetry-plugin-export<2.0.0,>=1.1.2\n Downloading poetry_plugin_export-1.1.2-py3-none-any.whl (10 kB)\nCollecting requests<3.0,>=2.18\n Downloading requests-2.28.1-py3-none-any.whl (62 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.8/62.8 kB 5.5 MB/s eta 0:00:00\nCollecting requests-toolbelt<0.10.0,>=0.9.1\n Downloading requests_toolbelt-0.9.1-py2.py3-none-any.whl (54 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.3/54.3 kB 7.9 MB/s eta 0:00:00\nCollecting shellingham<2.0,>=1.5\n Downloading shellingham-1.5.0-py2.py3-none-any.whl (9.3 kB)\nCollecting tomlkit!=0.11.2,!=0.11.3,<1.0.0,>=0.11.1\n Downloading tomlkit-0.11.6-py3-none-any.whl (35 kB)\nCollecting urllib3<2.0.0,>=1.26.0\n Downloading urllib3-1.26.12-py2.py3-none-any.whl (140 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 140.4/140.4 kB 16.1 MB/s eta 0:00:00\nCollecting virtualenv!=20.4.5,!=20.4.6,>=20.4.3\n Downloading virtualenv-20.16.6-py3-none-any.whl (8.8 MB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.8/8.8 MB 24.3 MB/s eta 0:00:00\nCollecting msgpack>=0.5.2\n Downloading msgpack-1.0.4.tar.gz (128 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 128.1/128.1 kB 15.3 MB/s eta 0:00:00\n Installing build dependencies: started\n Installing build dependencies: finished with status 'done'\n Getting requirements to build wheel: started\n Getting requirements to build wheel: finished with status 'done'\n Installing backend dependencies: started\n Installing backend dependencies: finished with status 'done'\n Preparing metadata (pyproject.toml): started\n Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting lockfile>=0.9\n Downloading lockfile-0.12.2-py2.py3-none-any.whl (13 kB)\nCollecting pylev<2.0.0,>=1.3.0\n Downloading pylev-1.4.0-py2.py3-none-any.whl (6.1 kB)\nCollecting six>=1.9\n Downloading six-1.16.0-py2.py3-none-any.whl (11 kB)\nCollecting webencodings\n Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB)\nCollecting attrs>=17.4.0\n Downloading attrs-22.1.0-py2.py3-none-any.whl (58 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.8/58.8 kB 8.2 MB/s eta 0:00:00\nCollecting pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0\n Downloading pyrsistent-0.19.1-py3-none-any.whl (57 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 57.3/57.3 kB 8.1 MB/s eta 0:00:00\nCollecting jaraco.classes\n Downloading jaraco.classes-3.2.3-py3-none-any.whl (6.0 kB)\nCollecting SecretStorage>=3.2\n Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)\nCollecting jeepney>=0.4.2\n Downloading jeepney-0.8.0-py3-none-any.whl (48 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.4/48.4 kB 6.9 MB/s eta 0:00:00\nCollecting pyparsing!=3.0.5,>=2.0.2\n Downloading pyparsing-3.0.9-py3-none-any.whl (98 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 98.3/98.3 kB 11.6 MB/s eta 0:00:00\nCollecting ptyprocess>=0.5\n Downloading ptyprocess-0.7.0-py2.py3-none-any.whl (13 kB)\nCollecting charset-normalizer<3,>=2\n Downloading charset_normalizer-2.1.1-py3-none-any.whl (39 kB)\nCollecting idna<4,>=2.5\n Downloading idna-3.4-py3-none-any.whl (61 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.5/61.5 kB 6.1 MB/s eta 0:00:00\nCollecting certifi>=2017.4.17\n Downloading certifi-2022.9.24-py3-none-any.whl (161 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 161.1/161.1 kB 12.0 MB/s eta 0:00:00\nCollecting distlib<1,>=0.3.6\n Downloading distlib-0.3.6-py2.py3-none-any.whl (468 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 468.5/468.5 kB 24.5 MB/s eta 0:00:00\nCollecting filelock<4,>=3.4.1\n Downloading filelock-3.8.0-py3-none-any.whl (10 kB)\nCollecting cryptography>=2.0\n Downloading cryptography-38.0.1-cp36-abi3-manylinux_2_28_x86_64.whl (4.2 MB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.2/4.2 MB 21.9 MB/s eta 0:00:00\nCollecting more-itertools\n Downloading more_itertools-9.0.0-py3-none-any.whl (52 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 52.8/52.8 kB 7.0 MB/s eta 0:00:00\nCollecting cffi>=1.12\n Downloading cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 462.6/462.6 kB 19.5 MB/s eta 0:00:00\nCollecting pycparser\n Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB)\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 118.7/118.7 kB 14.6 MB/s eta 0:00:00\nBuilding wheels for collected packages: msgpack\n Building wheel for msgpack (pyproject.toml): started\n Building wheel for msgpack (pyproject.toml): finished with status 'done'\n Created wheel for msgpack: filename=msgpack-1.0.4-cp311-cp311-linux_x86_64.whl size=15531 sha256=78a83433977ad77cc5ec637a29e747420cd5112543a1fc972a2bc7989b8cda8e\n Stored in directory: /tmp/renovate-cache/others/pip/wheels/be/38/62/bffc8d68ee5e3a6a3080b2f8a520e8302fe333528d93a488af\nSuccessfully built msgpack\nInstalling collected packages: webencodings, pylev, ptyprocess, msgpack, lockfile, distlib, urllib3, tomlkit, six, shellingham, pyrsistent, pyparsing, pycparser, poetry-core, platformdirs, pkginfo, pexpect, more-itertools, jeepney, idna, filelock, crashtest, charset-normalizer, certifi, cachy, attrs, virtualenv, requests, packaging, jsonschema, jaraco.classes, html5lib, dulwich, cleo, cffi, requests-toolbelt, cryptography, cachecontrol, SecretStorage, keyring, poetry-plugin-export, poetry\nSuccessfully installed SecretStorage-3.3.3 attrs-22.1.0 cachecontrol-0.12.11 cachy-0.3.0 certifi-2022.9.24 cffi-1.15.1 charset-normalizer-2.1.1 cleo-1.0.0a5 crashtest-0.3.1 cryptography-38.0.1 distlib-0.3.6 dulwich-0.20.50 filelock-3.8.0 html5lib-1.1 idna-3.4 jaraco.classes-3.2.3 jeepney-0.8.0 jsonschema-4.16.0 keyring-23.9.3 lockfile-0.12.2 more-itertools-9.0.0 msgpack-1.0.4 packaging-21.3 pexpect-4.8.0 pkginfo-1.8.3 platformdirs-2.5.2 poetry-1.2.2 poetry-core-1.3.2 poetry-plugin-export-1.1.2 ptyprocess-0.7.0 pycparser-2.21 pylev-1.4.0 pyparsing-3.0.9 pyrsistent-0.19.1 requests-2.28.1 requests-toolbelt-0.9.1 shellingham-1.5.0 six-1.16.0 tomlkit-0.11.6 urllib3-1.26.12 virtualenv-20.16.6 webencodings-0.5.1\nCreating virtualenv hatch in /mnt/renovate/gh/PicturePipe/hatch/.venv\nUpdating dependencies\nResolving dependencies...\n\nWriting lock file\n • Installing pycparser (2.21)\n • Installing pycparser (2.21)\n • Installing six (1.16.0)\n • Installing six (1.16.0)\n • Installing asgiref (3.5.0)\n • Installing asgiref (3.5.0)\n • Installing cffi (1.15.0)\n • Installing cffi (1.15.0)\n • Installing et-xmlfile (1.1.0)\n • Installing et-xmlfile (1.1.0)\n • Installing jmespath (0.10.0)\n • Installing jmespath (0.10.0)\n • Installing python-dateutil (2.8.2)\n • Installing python-dateutil (2.8.2)\n • Installing sqlparse (0.4.2)\n • Installing sqlparse (0.4.2)\n • Installing urllib3 (1.26.8)\n • Installing urllib3 (1.26.8)\n • Installing pytz (2021.3)\n • Installing pytz (2021.3)\n • Installing botocore (1.24.18)\n • Installing botocore (1.24.18)\n • Installing charset-normalizer (2.0.12)\n • Installing charset-normalizer (2.0.12)\n • Installing cryptography (36.0.1)\n • Installing cryptography (36.0.1)\n • Installing certifi (2021.10.8)\n • Installing certifi (2021.10.8)\n • Installing multidict (6.0.2)\n • Installing multidict (6.0.2)\n • Installing openpyxl (3.0.9)\n • Installing openpyxl (3.0.9)\n • Installing pyparsing (3.0.7)\n • Installing pyparsing (3.0.7)\n • Installing soupsieve (2.3.1)\n • Installing soupsieve (2.3.1)\n • Installing wcwidth (0.2.5)\n • Installing wcwidth (0.2.5)\n • Installing webencodings (0.5.1)\n • Installing webencodings (0.5.1)\n • Installing frozenlist (1.3.0)\n • Installing frozenlist (1.3.0)\n • Installing xlrd (2.0.1)\n • Installing xlrd (2.0.1)\n • Installing xlwt (1.3.0)\n • Installing xlwt (1.3.0)\n • Installing django (3.2.16)\n • Installing django (3.2.16)\n • Installing idna (3.3)\n • Installing defusedxml (0.7.1)\n • Installing defusedxml (0.7.1)\n • Installing idna (3.3)\n • Installing aiosignal (1.2.0)\n • Installing aiosignal (1.2.0)\n • Installing attrs (21.4.0)\n • Installing attrs (21.4.0)\n • Installing beautifulsoup4 (4.9.3)\n • Installing beautifulsoup4 (4.9.3)\n • Installing click (8.0.4)\n • Installing click (8.0.4)\n • Installing configobj (5.0.6)\n • Installing configobj (5.0.6)\n • Installing decorator (5.1.1)\n • Installing decorator (5.1.1)\n • Installing django-filter (21.1)\n • Installing async-timeout (4.0.2)\n • Installing anyascii (0.3.0)\n • Installing anyascii (0.3.0)\n • Installing django-modelcluster (5.3)\n • Installing django-modelcluster (5.3)\n • Installing django-taggit (2.1.0)\n • Installing django-taggit (2.1.0)\n • Installing django-treebeard (4.5.1)\n • Installing async-timeout (4.0.2)\n • Installing djangorestframework (3.12.4)\n • Installing djangorestframework (3.12.4)\n • Installing draftjs-exporter (2.1.7)\n • Installing draftjs-exporter (2.1.7)\n • Installing faker (13.3.1)\n • Installing faker (13.3.1)\n • Installing django-treebeard (4.5.1)\n • Installing iniconfig (1.1.1)\n • Installing iniconfig (1.1.1)\n • Installing html5lib (1.1)\n • Installing html5lib (1.1)\n • Installing l18n (2021.3)\n • Installing l18n (2021.3)\n • Installing django-filter (21.1)\n • Installing markuppy (1.14)\n • Installing markuppy (1.14)\n • Installing oauthlib (3.2.1)\n • Installing oauthlib (3.2.1)\n • Installing odfpy (1.4.1)\n • Installing odfpy (1.4.1)\n • Installing packaging (21.3)\n • Installing packaging (21.3)\n • Installing parso (0.8.3)\n • Installing parso (0.8.3)\n • Installing pillow (9.0.1)\n • Installing ply (3.11)\n • Installing pillow (9.0.1)\n • Installing argon2-cffi-bindings (21.2.0)\n • Installing argon2-cffi-bindings (21.2.0)\n • Installing ptyprocess (0.7.0)\n • Installing ptyprocess (0.7.0)\n • Installing pluggy (1.0.0)\n • Installing pluggy (1.0.0)\n • Installing ply (3.11)\n • Installing pyrepl (0.9.0)\n • Installing pyrepl (0.9.0)\n • Installing pyopenssl (22.0.0)\n • Installing pyopenssl (22.0.0)\n • Installing py (1.11.0)\n • Installing py (1.11.0)\n • Installing pygments (2.11.2)\n • Installing pytzdata (2020.1)\n • Installing pytzdata (2020.1)\n • Installing s3transfer (0.5.2)\n • Installing s3transfer (0.5.2)\n • Installing sniffio (1.2.0)\n • Installing sniffio (1.2.0)\n • Installing tablib (3.2.1)\n • Installing tablib (3.2.1)\n • Installing tabulate (0.8.10)\n • Installing tabulate (0.8.10)\n • Installing telepath (0.2)\n • Installing telepath (0.2)\n • Installing toml (0.10.2)\n • Installing toml (0.10.2)\n • Installing traitlets (5.1.1)\n • Installing traitlets (5.1.1)\n • Installing willow (1.4.1)\n • Installing willow (1.4.1)\n • Installing wrapt (1.14.0)\n • Installing wrapt (1.14.0)\n • Installing xlsxwriter (3.0.3)\n • Installing xlsxwriter (3.0.3)\n • Installing yarl (1.7.2)\n • Installing yarl (1.7.2)\n • Installing pygments (2.11.2)\n • Installing pyyaml (6.0)\n • Installing pyyaml (6.0)\n • Installing requests (2.26.0)\n • Installing requests (2.26.0)\n • Installing psycopg2 (2.9.5)\n • Installing psycopg2 (2.9.5)\n • Installing aiohttp (3.8.1)\n • Installing anyio (3.5.0)\n • Installing anyio (3.5.0)\n • Installing boto3 (1.21.18)\n • Installing boto3 (1.21.18)\n • Installing brotli (1.0.9)\n • Installing brotli (1.0.9)\n • Installing cli-helpers (2.2.1)\n • Installing cli-helpers (2.2.1)\n • Installing coverage (5.5)\n • Installing coverage (5.5)\n • Installing deprecated (1.2.13)\n • Installing deprecated (1.2.13)\n • Installing diff-match-patch (20200713)\n • Installing diff-match-patch (20200713)\n • Installing django-appconf (1.0.5)\n • Installing django-appconf (1.0.5)\n • Installing django-nine (0.2.5)\n • Installing django-nine (0.2.5)\n • Installing factory-boy (3.2.1)\n • Installing backcall (0.2.0)\n • Installing backcall (0.2.0)\n • Installing fancycompleter (0.9.1)\n • Installing fancycompleter (0.9.1)\n • Installing future (0.18.2)\n • Installing future (0.18.2)\n • Installing glob2 (0.7)\n • Installing glob2 (0.7)\n • Installing h11 (0.13.0)\n • Installing h11 (0.13.0)\n • Installing httptools (0.4.0)\n • Installing httptools (0.4.0)\n • Installing inflection (0.5.1)\n • Installing inflection (0.5.1)\n • Installing jedi (0.18.1)\n • Installing jedi (0.18.1)\n • Installing josepy (1.13.0)\n • Installing josepy (1.13.0)\n • Installing jsonpath-rw (1.4.0)\n • Installing jsonpath-rw (1.4.0)\n • Installing junit-xml (1.8)\n • Installing junit-xml (1.8)\n • Installing matplotlib-inline (0.1.3)\n • Installing matplotlib-inline (0.1.3)\n • Installing maxminddb (2.2.0)\n • Installing maxminddb (2.2.0)\n • Installing mccabe (0.6.1)\n • Installing mccabe (0.6.1)\n • Installing orderedmultidict (1.0.1)\n • Installing orderedmultidict (1.0.1)\n • Installing pendulum (2.1.2)\n • Installing pendulum (2.1.2)\n • Installing pexpect (4.8.0)\n • Installing pexpect (4.8.0)\n • Installing pgspecial (1.13.1)\n • Installing pgspecial (1.13.1)\n • Installing pickleshare (0.7.5)\n • Installing pickleshare (0.7.5)\n • Installing pony (0.7.16)\n • Installing pony (0.7.16)\n • Installing prompt-toolkit (3.0.28)\n • Installing prompt-toolkit (3.0.28)\n • Installing pycodestyle (2.7.0)\n • Installing pycodestyle (2.7.0)\n • Installing pyflakes (2.3.1)\n • Installing pyflakes (2.3.1)\n • Installing pyjwt (2.4.0)\n • Installing pyjwt (2.4.0)\n • Installing pymarc (4.1.3)\n • Installing pymarc (4.1.3)\n • Installing pynacl (1.5.0)\n • Installing pynacl (1.5.0)\n • Installing pytest (6.2.5)\n • Installing pytest (6.2.5)\n • Installing argon2-cffi (21.3.0)\n • Installing argon2-cffi (21.3.0)\n • Installing requests-oauthlib (1.3.1)\n • Installing requests-oauthlib (1.3.1)\n • Installing responses (0.14.0)\n • Installing responses (0.14.0)\n • Installing setproctitle (1.2.2)\n • Installing setproctitle (1.2.2)\n • Installing unidecode (1.3.4)\n • Installing unidecode (1.3.4)\n • Installing uvloop (0.16.0)\n • Installing uvloop (0.16.0)\n • Installing wagtail (2.16.3)\n • Installing factory-boy (3.2.1)\n • Installing watchgod (0.7)\n • Installing watchgod (0.7)\n • Installing websockets (10.2)\n • Installing websockets (10.2)\n • Installing wmctrl (0.4)\n • Installing wmctrl (0.4)\n • Installing aiohttp (3.8.1)\n • Installing python3-openid (3.2.0)\n • Installing python3-openid (3.2.0)\n • Installing wagtail (2.16.3)\n • Installing python-dotenv (0.19.2)\n • Installing python-dotenv (0.19.2)\n • Installing colour (0.1.5)\n • Installing colour (0.1.5)\n • Installing dj-database-url (0.5.0)\n • Installing dj-database-url (0.5.0)\n • Installing django-allauth (0.49.0)\n • Installing django-allauth (0.49.0)\n • Installing django-anymail (8.4)\n • Installing django-anymail (8.4)\n • Installing django-colorfield (0.4.3)\n • Installing django-colorfield (0.4.3)\n • Installing django-contact-form (1.9)\n • Installing django-contact-form (1.9)\n • Installing django-countries (7.2.1)\n • Installing django-countries (7.2.1)\n • Installing django-debug-toolbar (3.2.4)\n • Installing django-debug-toolbar (3.2.4)\n • Installing django-debug-toolbar-force (0.1.8)\n • Installing django-debug-toolbar-force (0.1.8)\n • Installing django-el-pagination (3.3.0)\n • Installing django-el-pagination (3.3.0)\n • Installing django-extensions (3.1.5)\n • Installing django-extensions (3.1.5)\n • Installing django-honeypot (1.0.3)\n • Installing django-honeypot (1.0.3)\n • Installing django-import-export (2.7.1)\n • Installing django-import-export (2.7.1)\n • Installing django-lockdown (4.0.0)\n • Installing django-lockdown (4.0.0)\n • Installing django-modeltranslation (0.17.5)\n • Installing django-modeltranslation (0.17.5)\n • Installing django-pdb (0.6.2)\n • Installing django-pdb (0.6.2)\n • Installing django-select2 (7.9.0)\n • Installing django-select2 (7.9.0)\n • Installing django-slugger (1.1.2)\n • Installing django-slugger (1.1.2)\n • Installing django-storages (1.11.1)\n • Installing django-storages (1.11.1)\n • Installing django-su (0.9.0)\n • Installing django-su (0.9.0)\n • Installing django-webpack-loader (1.4.1)\n • Installing django-webpack-loader (1.4.1)\n • Installing envparse (0.2.0)\n • Installing flake8 (3.9.2)\n • Installing flake8 (3.9.2)\n • Installing honcho (1.1.0)\n • Installing honcho (1.1.0)\n • Installing ipython (7.31.1)\n • Installing ipython (7.31.1)\n • Installing jsonnet (0.18.0)\n • Installing jsonnet (0.18.0)\n • Installing langdetect (1.0.9)\n • Installing langdetect (1.0.9)\n • Installing lxml (4.9.1)\n • Installing lxml (4.9.1)\n • Installing marcx (0.2.12)\n • Installing marcx (0.2.12)\n • Installing mozilla-django-oidc (2.0.0)\n • Installing mozilla-django-oidc (2.0.0)\n • Installing mutmut (2.2.0)\n • Installing mutmut (2.2.0)\n • Installing netaddr (0.8.0)\n • Installing netaddr (0.8.0)\n • Installing pdbpp (0.10.3)\n • Installing pdbpp (0.10.3)\n • Installing pgcli (3.2.0)\n • Installing pgcli (3.2.0)\n • Installing progress (1.6)\n • Installing progress (1.6)\n • Installing pygithub (1.55)\n • Installing pygithub (1.55)\n • Installing pymupdf (1.19.6)\n • Installing pymupdf (1.19.6)\n • Installing pytest-cov (2.12.1)\n • Installing pytest-cov (2.12.1)\n • Installing pytest-django (4.4.0)\n • Installing pytest-django (4.4.0)\n • Installing pytest-factoryboy (2.1.0)\n • Installing pytest-factoryboy (2.1.0)\n • Installing pytest-mock (3.6.1)\n • Installing pytest-mock (3.6.1)\n • Installing pytest-responses (0.5.0)\n • Installing pytest-responses (0.5.0)\n • Installing python-magic (0.4.25)\n • Installing python-magic (0.4.25)\n • Installing rules (3.0)\n • Installing rules (3.0)\n • Installing sentry-sdk (1.5.8)\n • Installing sentry-sdk (1.5.8)\n • Installing srt (3.5.2)\n • Installing srt (3.5.2)\n • Installing starlette (0.18.0)\n • Installing starlette (0.18.0)\n • Installing time-machine (2.4.0)\n • Installing time-machine (2.4.0)\n • Installing uvicorn (0.17.6)\n • Installing uvicorn (0.17.6)\n • Installing wagtail-factories (2.0.1)\n • Installing wagtail-factories (2.0.1)\n • Installing furl (2.1.3)\n • Installing gunicorn (20.1.0)\n • Installing gunicorn (20.1.0)\n • Installing whitenoise (5.3.0)\n • Installing whitenoise (5.3.0)\n • Installing furl (2.1.3)\n • Installing geoip2 (4.4.0)\n • Installing geoip2 (4.4.0)\n • Installing envparse (0.2.0)\n • Installing watchdog (2.1.7)\n • Installing watchdog (2.1.7)\n", "stderr": "" } DEBUG: Returning updated poetry.lock(branch="renovate/wagtail-2.x") DEBUG: Updated 1 package files(branch="renovate/wagtail-2.x") DEBUG: Getting updated lock files(branch="renovate/wagtail-2.x") DEBUG: Writing package.json files(branch="renovate/wagtail-2.x") { "packageFiles": [ "package.json" ] } DEBUG: Writing package-lock.json(branch="renovate/wagtail-2.x") DEBUG: Writing any updated package files(branch="renovate/wagtail-2.x") DEBUG: Updated 1 lock files(branch="renovate/wagtail-2.x") { "updatedArtifacts": [ "poetry.lock" ] } DEBUG: Getting comments for #1625(branch="renovate/wagtail-2.x") DEBUG: Found 1 comments(branch="renovate/wagtail-2.x") DEBUG: 2 file(s) to commit(branch="renovate/wagtail-2.x") DEBUG: Preparing files for committing to branch renovate/wagtail-2.x(branch="renovate/wagtail-2.x") DEBUG: git commit(branch="renovate/wagtail-2.x") { "deletedFiles": [], "ignoredFiles": [], "result": { "author": null, "branch": "renovate/wagtail-2.x", "commit": "6ecab1df9c66e93fcb1507871bc9a0006c2a0d39", "root": false, "summary": { "changes": 2, "insertions": 13, "deletions": 0 } } } DEBUG: resetToCommit(647c43b26618a003376bc59dc31153d343622343)(branch="renovate/wagtail-2.x") DEBUG: Fetching branch renovate/wagtail-2.x(branch="renovate/wagtail-2.x") INFO: Branch updated(branch="renovate/wagtail-2.x") { "commitSha": "30e1787cbfe4fda12dae50f28b2fcc2ee8f8283b" } DEBUG: Checking if we can automerge branch(branch="renovate/wagtail-2.x") DEBUG: mergeStatus=no automerge(branch="renovate/wagtail-2.x") DEBUG: Ensuring PR(branch="renovate/wagtail-2.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/wagtail-2.x") DEBUG: getBranchPr(renovate/wagtail-2.x)(branch="renovate/wagtail-2.x") DEBUG: findPr(renovate/wagtail-2.x, undefined, open)(branch="renovate/wagtail-2.x") DEBUG: Found PR #1625(branch="renovate/wagtail-2.x") DEBUG: Found existing PR(branch="renovate/wagtail-2.x") DEBUG: Fetching changelog: https://github.com/wagtail/wagtail (2.15.2 -> 2.16.3)(branch="renovate/wagtail-2.x") DEBUG: Processing existing PR(branch="renovate/wagtail-2.x") DEBUG: Pull Request #1625 does not need updating(branch="renovate/wagtail-2.x") DEBUG: PR is not configured for automerge(branch="renovate/wagtail-2.x") DEBUG: setBranchCommit()(branch="renovate/wagtail-2.x") DEBUG: syncBranchState()(branch="renovate/wagtail-factories-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/wagtail-factories-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/wagtail-factories-2.x") DEBUG: getBranchPr(renovate/wagtail-factories-2.x)(branch="renovate/wagtail-factories-2.x") DEBUG: findPr(renovate/wagtail-factories-2.x, undefined, open)(branch="renovate/wagtail-factories-2.x") DEBUG: findPr(renovate/wagtail-factories-2.x, undefined, closed)(branch="renovate/wagtail-factories-2.x") DEBUG: branchExists=false(branch="renovate/wagtail-factories-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/wagtail-factories-2.x") DEBUG: recreateClosed is false(branch="renovate/wagtail-factories-2.x") DEBUG: findPr(renovate/wagtail-factories-2.x, Update dependency wagtail-factories to v2.1.0, !open)(branch="renovate/wagtail-factories-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/wagtail-factories-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/wagtail-factories-2.x") DEBUG: syncBranchState()(branch="renovate/webpack-5.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/webpack-5.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/webpack-5.x") DEBUG: getBranchPr(renovate/webpack-5.x)(branch="renovate/webpack-5.x") DEBUG: findPr(renovate/webpack-5.x, undefined, open)(branch="renovate/webpack-5.x") DEBUG: findPr(renovate/webpack-5.x, undefined, closed)(branch="renovate/webpack-5.x") DEBUG: branchExists=false(branch="renovate/webpack-5.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/webpack-5.x") DEBUG: recreateClosed is false(branch="renovate/webpack-5.x") DEBUG: findPr(renovate/webpack-5.x, Update dependency webpack to v5.74.0, !open)(branch="renovate/webpack-5.x") DEBUG: prAlreadyExisted=false(branch="renovate/webpack-5.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/webpack-5.x") DEBUG: syncBranchState()(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: getBranchPr(renovate/webpack-bundle-analyzer-4.x)(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: findPr(renovate/webpack-bundle-analyzer-4.x, undefined, open)(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: findPr(renovate/webpack-bundle-analyzer-4.x, undefined, closed)(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: branchExists=false(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: recreateClosed is false(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: findPr(renovate/webpack-bundle-analyzer-4.x, Update dependency webpack-bundle-analyzer to v4.7.0, !open)(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/webpack-bundle-analyzer-4.x") DEBUG: syncBranchState()(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: getBranchPr(renovate/webpack-bundle-tracker-1.x)(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: findPr(renovate/webpack-bundle-tracker-1.x, undefined, open)(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: findPr(renovate/webpack-bundle-tracker-1.x, undefined, closed)(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: branchExists=false(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: recreateClosed is false(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: findPr(renovate/webpack-bundle-tracker-1.x, Update dependency webpack-bundle-tracker to v1.6.0, !open)(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: prAlreadyExisted=false(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/webpack-bundle-tracker-1.x") DEBUG: syncBranchState()(branch="renovate/webpack-cli-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/webpack-cli-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/webpack-cli-4.x") DEBUG: getBranchPr(renovate/webpack-cli-4.x)(branch="renovate/webpack-cli-4.x") DEBUG: findPr(renovate/webpack-cli-4.x, undefined, open)(branch="renovate/webpack-cli-4.x") DEBUG: findPr(renovate/webpack-cli-4.x, undefined, closed)(branch="renovate/webpack-cli-4.x") DEBUG: Found PR #1524(branch="renovate/webpack-cli-4.x") DEBUG: branchExists=false(branch="renovate/webpack-cli-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/webpack-cli-4.x") DEBUG: recreateClosed is false(branch="renovate/webpack-cli-4.x") DEBUG: findPr(renovate/webpack-cli-4.x, Update dependency webpack-cli to v4.10.0, !open)(branch="renovate/webpack-cli-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/webpack-cli-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/webpack-cli-4.x") DEBUG: syncBranchState()(branch="renovate/webvtt-parser-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/webvtt-parser-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/webvtt-parser-2.x") DEBUG: getBranchPr(renovate/webvtt-parser-2.x)(branch="renovate/webvtt-parser-2.x") DEBUG: findPr(renovate/webvtt-parser-2.x, undefined, open)(branch="renovate/webvtt-parser-2.x") DEBUG: findPr(renovate/webvtt-parser-2.x, undefined, closed)(branch="renovate/webvtt-parser-2.x") DEBUG: branchExists=false(branch="renovate/webvtt-parser-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/webvtt-parser-2.x") DEBUG: recreateClosed is false(branch="renovate/webvtt-parser-2.x") DEBUG: findPr(renovate/webvtt-parser-2.x, Update dependency webvtt-parser to v2.2.0, !open)(branch="renovate/webvtt-parser-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/webvtt-parser-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/webvtt-parser-2.x") DEBUG: syncBranchState()(branch="renovate/xo-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/xo-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/xo-0.x") DEBUG: getBranchPr(renovate/xo-0.x)(branch="renovate/xo-0.x") DEBUG: findPr(renovate/xo-0.x, undefined, open)(branch="renovate/xo-0.x") DEBUG: findPr(renovate/xo-0.x, undefined, closed)(branch="renovate/xo-0.x") DEBUG: Found PR #1191(branch="renovate/xo-0.x") DEBUG: branchExists=false(branch="renovate/xo-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/xo-0.x") DEBUG: recreateClosed is false(branch="renovate/xo-0.x") DEBUG: findPr(renovate/xo-0.x, Update dependency xo to v0.52.4, !open)(branch="renovate/xo-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/xo-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/xo-0.x") DEBUG: syncBranchState()(branch="renovate/do-exclusively-0.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/do-exclusively-0.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/do-exclusively-0.x") DEBUG: getBranchPr(renovate/do-exclusively-0.x)(branch="renovate/do-exclusively-0.x") DEBUG: findPr(renovate/do-exclusively-0.x, undefined, open)(branch="renovate/do-exclusively-0.x") DEBUG: findPr(renovate/do-exclusively-0.x, undefined, closed)(branch="renovate/do-exclusively-0.x") DEBUG: branchExists=false(branch="renovate/do-exclusively-0.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/do-exclusively-0.x") DEBUG: recreateClosed is false(branch="renovate/do-exclusively-0.x") DEBUG: findPr(renovate/do-exclusively-0.x, Update do-exclusively orb to v0.3.0, !open)(branch="renovate/do-exclusively-0.x") DEBUG: prAlreadyExisted=false(branch="renovate/do-exclusively-0.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/do-exclusively-0.x") DEBUG: syncBranchState()(branch="renovate/postgres-12.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/postgres-12.x") DEBUG: getBranchPr(renovate/postgres-12.x)(branch="renovate/postgres-12.x") DEBUG: findPr(renovate/postgres-12.x, undefined, open)(branch="renovate/postgres-12.x") DEBUG: findPr(renovate/postgres-12.x, undefined, closed)(branch="renovate/postgres-12.x") DEBUG: branchExists=false(branch="renovate/postgres-12.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/postgres-12.x") DEBUG: recreateClosed is false(branch="renovate/postgres-12.x") DEBUG: findPr(renovate/postgres-12.x, Update postgres Docker tag to v12.12, !open)(branch="renovate/postgres-12.x") DEBUG: prAlreadyExisted=false(branch="renovate/postgres-12.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/postgres-12.x") DEBUG: syncBranchState()(branch="renovate/python-1.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/python-1.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/python-1.x") DEBUG: getBranchPr(renovate/python-1.x)(branch="renovate/python-1.x") DEBUG: findPr(renovate/python-1.x, undefined, open)(branch="renovate/python-1.x") DEBUG: findPr(renovate/python-1.x, undefined, closed)(branch="renovate/python-1.x") DEBUG: branchExists=false(branch="renovate/python-1.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/python-1.x") DEBUG: recreateClosed is false(branch="renovate/python-1.x") DEBUG: findPr(renovate/python-1.x, Update python orb to v1.5.0, !open)(branch="renovate/python-1.x") DEBUG: prAlreadyExisted=false(branch="renovate/python-1.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/python-1.x") DEBUG: syncBranchState()(branch="renovate/uppy-monorepo") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/uppy-monorepo") DEBUG: branch.isUpToDate(): using cached result "true"(branch="renovate/uppy-monorepo") DEBUG: getBranchPr(renovate/uppy-monorepo)(branch="renovate/uppy-monorepo") DEBUG: findPr(renovate/uppy-monorepo, undefined, open)(branch="renovate/uppy-monorepo") DEBUG: Found PR #1669(branch="renovate/uppy-monorepo") DEBUG: branchExists=true(branch="renovate/uppy-monorepo") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/uppy-monorepo") DEBUG: PR rebase requested=false(branch="renovate/uppy-monorepo") DEBUG: Checking if PR has been edited(branch="renovate/uppy-monorepo") DEBUG: branch.isModified(): using cached result "false"(branch="renovate/uppy-monorepo") DEBUG: Found existing branch PR(branch="renovate/uppy-monorepo") DEBUG: Checking schedule(at any time, Europe/Berlin)(branch="renovate/uppy-monorepo") DEBUG: No schedule defined(branch="renovate/uppy-monorepo") DEBUG: Branch already exists(branch="renovate/uppy-monorepo") DEBUG: getBranchPr(renovate/uppy-monorepo)(branch="renovate/uppy-monorepo") DEBUG: findPr(renovate/uppy-monorepo, undefined, open)(branch="renovate/uppy-monorepo") DEBUG: Found PR #1669(branch="renovate/uppy-monorepo") DEBUG: Skipping behind base branch check due to rebaseWhen=auto(branch="renovate/uppy-monorepo") DEBUG: isBranchConflicted(develop, renovate/uppy-monorepo)(branch="renovate/uppy-monorepo") DEBUG: branch.isConflicted(): using git to calculate(branch="renovate/uppy-monorepo") DEBUG: branch.isConflicted(): false(branch="renovate/uppy-monorepo") DEBUG: Branch does not need rebasing(branch="renovate/uppy-monorepo") DEBUG: Using reuseExistingBranch: true(branch="renovate/uppy-monorepo") DEBUG: Checking if we can automerge branch(branch="renovate/uppy-monorepo") DEBUG: mergeStatus=no automerge(branch="renovate/uppy-monorepo") DEBUG: Ensuring PR(branch="renovate/uppy-monorepo") DEBUG: There are 0 errors and 0 warnings(branch="renovate/uppy-monorepo") DEBUG: getBranchPr(renovate/uppy-monorepo)(branch="renovate/uppy-monorepo") DEBUG: findPr(renovate/uppy-monorepo, undefined, open)(branch="renovate/uppy-monorepo") DEBUG: Found PR #1669(branch="renovate/uppy-monorepo") DEBUG: Found existing PR(branch="renovate/uppy-monorepo") DEBUG: Fetching changelog: https://github.com/transloadit/uppy (2.2.0 -> 2.4.3)(branch="renovate/uppy-monorepo") DEBUG: Fetching changelog: https://github.com/transloadit/uppy (2.1.5 -> 2.3.4)(branch="renovate/uppy-monorepo") DEBUG: Fetching changelog: https://github.com/transloadit/uppy (2.1.4 -> 2.4.3)(branch="renovate/uppy-monorepo") DEBUG: Fetching changelog: https://github.com/transloadit/uppy (2.0.5 -> 2.2.1)(branch="renovate/uppy-monorepo") DEBUG: Processing existing PR(branch="renovate/uppy-monorepo") DEBUG: Pull Request #1669 does not need updating(branch="renovate/uppy-monorepo") DEBUG: PR is not configured for automerge(branch="renovate/uppy-monorepo") DEBUG: syncBranchState()(branch="renovate/node-18.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/node-18.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/node-18.x") DEBUG: getBranchPr(renovate/node-18.x)(branch="renovate/node-18.x") DEBUG: findPr(renovate/node-18.x, undefined, open)(branch="renovate/node-18.x") DEBUG: findPr(renovate/node-18.x, undefined, closed)(branch="renovate/node-18.x") DEBUG: branchExists=false(branch="renovate/node-18.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/node-18.x") DEBUG: recreateClosed is false(branch="renovate/node-18.x") DEBUG: findPr(renovate/node-18.x, Update Node.js to v18, !open)(branch="renovate/node-18.x") DEBUG: prAlreadyExisted=false(branch="renovate/node-18.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/node-18.x") DEBUG: syncBranchState()(branch="renovate/cimg-base-2022.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/cimg-base-2022.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/cimg-base-2022.x") DEBUG: getBranchPr(renovate/cimg-base-2022.x)(branch="renovate/cimg-base-2022.x") DEBUG: findPr(renovate/cimg-base-2022.x, undefined, open)(branch="renovate/cimg-base-2022.x") DEBUG: findPr(renovate/cimg-base-2022.x, undefined, closed)(branch="renovate/cimg-base-2022.x") DEBUG: branchExists=false(branch="renovate/cimg-base-2022.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/cimg-base-2022.x") DEBUG: recreateClosed is true(branch="renovate/cimg-base-2022.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/cimg-base-2022.x") DEBUG: syncBranchState()(branch="renovate/django-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-4.x") DEBUG: getBranchPr(renovate/django-4.x)(branch="renovate/django-4.x") DEBUG: findPr(renovate/django-4.x, undefined, open)(branch="renovate/django-4.x") DEBUG: findPr(renovate/django-4.x, undefined, closed)(branch="renovate/django-4.x") DEBUG: branchExists=false(branch="renovate/django-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-4.x") DEBUG: recreateClosed is false(branch="renovate/django-4.x") DEBUG: findPr(renovate/django-4.x, Update dependency Django to v4, !open)(branch="renovate/django-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-4.x") DEBUG: syncBranchState()(branch="renovate/major-babel-monorepo") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/major-babel-monorepo") DEBUG: getBranchPr(renovate/major-babel-monorepo)(branch="renovate/major-babel-monorepo") DEBUG: findPr(renovate/major-babel-monorepo, undefined, open)(branch="renovate/major-babel-monorepo") DEBUG: findPr(renovate/major-babel-monorepo, undefined, closed)(branch="renovate/major-babel-monorepo") DEBUG: branchExists=false(branch="renovate/major-babel-monorepo") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/major-babel-monorepo") DEBUG: recreateClosed is false(branch="renovate/major-babel-monorepo") DEBUG: findPr(renovate/major-babel-monorepo, Update dependency babel-loader to v9, !open)(branch="renovate/major-babel-monorepo") DEBUG: prAlreadyExisted=false(branch="renovate/major-babel-monorepo") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/major-babel-monorepo") DEBUG: syncBranchState()(branch="renovate/coverage-6.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/coverage-6.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/coverage-6.x") DEBUG: getBranchPr(renovate/coverage-6.x)(branch="renovate/coverage-6.x") DEBUG: findPr(renovate/coverage-6.x, undefined, open)(branch="renovate/coverage-6.x") DEBUG: findPr(renovate/coverage-6.x, undefined, closed)(branch="renovate/coverage-6.x") DEBUG: branchExists=false(branch="renovate/coverage-6.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/coverage-6.x") DEBUG: recreateClosed is false(branch="renovate/coverage-6.x") DEBUG: findPr(renovate/coverage-6.x, Update dependency coverage to v6, !open)(branch="renovate/coverage-6.x") DEBUG: prAlreadyExisted=false(branch="renovate/coverage-6.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/coverage-6.x") DEBUG: syncBranchState()(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: getBranchPr(renovate/css-minimizer-webpack-plugin-4.x)(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: findPr(renovate/css-minimizer-webpack-plugin-4.x, undefined, open)(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: findPr(renovate/css-minimizer-webpack-plugin-4.x, undefined, closed)(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: branchExists=false(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: recreateClosed is false(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: findPr(renovate/css-minimizer-webpack-plugin-4.x, Update dependency css-minimizer-webpack-plugin to v4, !open)(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/css-minimizer-webpack-plugin-4.x") DEBUG: syncBranchState()(branch="renovate/dj-database-url-1.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/dj-database-url-1.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/dj-database-url-1.x") DEBUG: getBranchPr(renovate/dj-database-url-1.x)(branch="renovate/dj-database-url-1.x") DEBUG: findPr(renovate/dj-database-url-1.x, undefined, open)(branch="renovate/dj-database-url-1.x") DEBUG: findPr(renovate/dj-database-url-1.x, undefined, closed)(branch="renovate/dj-database-url-1.x") DEBUG: branchExists=false(branch="renovate/dj-database-url-1.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/dj-database-url-1.x") DEBUG: recreateClosed is false(branch="renovate/dj-database-url-1.x") DEBUG: findPr(renovate/dj-database-url-1.x, Update dependency dj-database-url to v1, !open)(branch="renovate/dj-database-url-1.x") DEBUG: prAlreadyExisted=false(branch="renovate/dj-database-url-1.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/dj-database-url-1.x") DEBUG: syncBranchState()(branch="renovate/django-contact-form-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-contact-form-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-contact-form-2.x") DEBUG: getBranchPr(renovate/django-contact-form-2.x)(branch="renovate/django-contact-form-2.x") DEBUG: findPr(renovate/django-contact-form-2.x, undefined, open)(branch="renovate/django-contact-form-2.x") DEBUG: findPr(renovate/django-contact-form-2.x, undefined, closed)(branch="renovate/django-contact-form-2.x") DEBUG: branchExists=false(branch="renovate/django-contact-form-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-contact-form-2.x") DEBUG: recreateClosed is false(branch="renovate/django-contact-form-2.x") DEBUG: findPr(renovate/django-contact-form-2.x, Update dependency django-contact-form to v2, !open)(branch="renovate/django-contact-form-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-contact-form-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-contact-form-2.x") DEBUG: syncBranchState()(branch="renovate/django-import-export-3.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-import-export-3.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-import-export-3.x") DEBUG: getBranchPr(renovate/django-import-export-3.x)(branch="renovate/django-import-export-3.x") DEBUG: findPr(renovate/django-import-export-3.x, undefined, open)(branch="renovate/django-import-export-3.x") DEBUG: findPr(renovate/django-import-export-3.x, undefined, closed)(branch="renovate/django-import-export-3.x") DEBUG: branchExists=false(branch="renovate/django-import-export-3.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-import-export-3.x") DEBUG: recreateClosed is false(branch="renovate/django-import-export-3.x") DEBUG: findPr(renovate/django-import-export-3.x, Update dependency django-import-export to v3, !open)(branch="renovate/django-import-export-3.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-import-export-3.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-import-export-3.x") DEBUG: syncBranchState()(branch="renovate/django-su-1.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/django-su-1.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/django-su-1.x") DEBUG: getBranchPr(renovate/django-su-1.x)(branch="renovate/django-su-1.x") DEBUG: findPr(renovate/django-su-1.x, undefined, open)(branch="renovate/django-su-1.x") DEBUG: findPr(renovate/django-su-1.x, undefined, closed)(branch="renovate/django-su-1.x") DEBUG: branchExists=false(branch="renovate/django-su-1.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/django-su-1.x") DEBUG: recreateClosed is false(branch="renovate/django-su-1.x") DEBUG: findPr(renovate/django-su-1.x, Update dependency django-su to v1, !open)(branch="renovate/django-su-1.x") DEBUG: prAlreadyExisted=false(branch="renovate/django-su-1.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/django-su-1.x") DEBUG: syncBranchState()(branch="renovate/flake8-5.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/flake8-5.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/flake8-5.x") DEBUG: getBranchPr(renovate/flake8-5.x)(branch="renovate/flake8-5.x") DEBUG: findPr(renovate/flake8-5.x, undefined, open)(branch="renovate/flake8-5.x") DEBUG: findPr(renovate/flake8-5.x, undefined, closed)(branch="renovate/flake8-5.x") DEBUG: branchExists=false(branch="renovate/flake8-5.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/flake8-5.x") DEBUG: recreateClosed is false(branch="renovate/flake8-5.x") DEBUG: findPr(renovate/flake8-5.x, Update dependency flake8 to v5, !open)(branch="renovate/flake8-5.x") DEBUG: prAlreadyExisted=false(branch="renovate/flake8-5.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/flake8-5.x") DEBUG: syncBranchState()(branch="renovate/ipython-8.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/ipython-8.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/ipython-8.x") DEBUG: getBranchPr(renovate/ipython-8.x)(branch="renovate/ipython-8.x") DEBUG: findPr(renovate/ipython-8.x, undefined, open)(branch="renovate/ipython-8.x") DEBUG: findPr(renovate/ipython-8.x, undefined, closed)(branch="renovate/ipython-8.x") DEBUG: branchExists=false(branch="renovate/ipython-8.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/ipython-8.x") DEBUG: recreateClosed is false(branch="renovate/ipython-8.x") DEBUG: findPr(renovate/ipython-8.x, Update dependency ipython to v8, !open)(branch="renovate/ipython-8.x") DEBUG: prAlreadyExisted=false(branch="renovate/ipython-8.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/ipython-8.x") DEBUG: syncBranchState()(branch="renovate/mocha-10.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/mocha-10.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/mocha-10.x") DEBUG: getBranchPr(renovate/mocha-10.x)(branch="renovate/mocha-10.x") DEBUG: findPr(renovate/mocha-10.x, undefined, open)(branch="renovate/mocha-10.x") DEBUG: findPr(renovate/mocha-10.x, undefined, closed)(branch="renovate/mocha-10.x") DEBUG: branchExists=false(branch="renovate/mocha-10.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/mocha-10.x") DEBUG: recreateClosed is false(branch="renovate/mocha-10.x") DEBUG: findPr(renovate/mocha-10.x, Update dependency mocha to v10, !open)(branch="renovate/mocha-10.x") DEBUG: prAlreadyExisted=false(branch="renovate/mocha-10.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/mocha-10.x") DEBUG: syncBranchState()(branch="renovate/postcss-loader-7.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/postcss-loader-7.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/postcss-loader-7.x") DEBUG: getBranchPr(renovate/postcss-loader-7.x)(branch="renovate/postcss-loader-7.x") DEBUG: findPr(renovate/postcss-loader-7.x, undefined, open)(branch="renovate/postcss-loader-7.x") DEBUG: findPr(renovate/postcss-loader-7.x, undefined, closed)(branch="renovate/postcss-loader-7.x") DEBUG: branchExists=false(branch="renovate/postcss-loader-7.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/postcss-loader-7.x") DEBUG: recreateClosed is false(branch="renovate/postcss-loader-7.x") DEBUG: findPr(renovate/postcss-loader-7.x, Update dependency postcss-loader to v7, !open)(branch="renovate/postcss-loader-7.x") DEBUG: prAlreadyExisted=false(branch="renovate/postcss-loader-7.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/postcss-loader-7.x") DEBUG: syncBranchState()(branch="renovate/pytest-7.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/pytest-7.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/pytest-7.x") DEBUG: getBranchPr(renovate/pytest-7.x)(branch="renovate/pytest-7.x") DEBUG: findPr(renovate/pytest-7.x, undefined, open)(branch="renovate/pytest-7.x") DEBUG: findPr(renovate/pytest-7.x, undefined, closed)(branch="renovate/pytest-7.x") DEBUG: branchExists=false(branch="renovate/pytest-7.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/pytest-7.x") DEBUG: recreateClosed is false(branch="renovate/pytest-7.x") DEBUG: findPr(renovate/pytest-7.x, Update dependency pytest to v7, !open)(branch="renovate/pytest-7.x") DEBUG: prAlreadyExisted=false(branch="renovate/pytest-7.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/pytest-7.x") DEBUG: syncBranchState()(branch="renovate/pytest-cov-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/pytest-cov-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/pytest-cov-4.x") DEBUG: getBranchPr(renovate/pytest-cov-4.x)(branch="renovate/pytest-cov-4.x") DEBUG: findPr(renovate/pytest-cov-4.x, undefined, open)(branch="renovate/pytest-cov-4.x") DEBUG: findPr(renovate/pytest-cov-4.x, undefined, closed)(branch="renovate/pytest-cov-4.x") DEBUG: branchExists=false(branch="renovate/pytest-cov-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/pytest-cov-4.x") DEBUG: recreateClosed is false(branch="renovate/pytest-cov-4.x") DEBUG: findPr(renovate/pytest-cov-4.x, Update dependency pytest-cov to v4, !open)(branch="renovate/pytest-cov-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/pytest-cov-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/pytest-cov-4.x") DEBUG: syncBranchState()(branch="renovate/sass-loader-13.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/sass-loader-13.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/sass-loader-13.x") DEBUG: getBranchPr(renovate/sass-loader-13.x)(branch="renovate/sass-loader-13.x") DEBUG: findPr(renovate/sass-loader-13.x, undefined, open)(branch="renovate/sass-loader-13.x") DEBUG: findPr(renovate/sass-loader-13.x, undefined, closed)(branch="renovate/sass-loader-13.x") DEBUG: branchExists=false(branch="renovate/sass-loader-13.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/sass-loader-13.x") DEBUG: recreateClosed is false(branch="renovate/sass-loader-13.x") DEBUG: findPr(renovate/sass-loader-13.x, Update dependency sass-loader to v13, !open)(branch="renovate/sass-loader-13.x") DEBUG: prAlreadyExisted=false(branch="renovate/sass-loader-13.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/sass-loader-13.x") DEBUG: syncBranchState()(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: getBranchPr(renovate/stylelint-config-recommended-scss-8.x)(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: findPr(renovate/stylelint-config-recommended-scss-8.x, undefined, open)(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: findPr(renovate/stylelint-config-recommended-scss-8.x, undefined, closed)(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: branchExists=false(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: recreateClosed is false(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: findPr(renovate/stylelint-config-recommended-scss-8.x, Update dependency stylelint-config-recommended-scss to v8, !open)(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: prAlreadyExisted=false(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/stylelint-config-recommended-scss-8.x") DEBUG: syncBranchState()(branch="renovate/stylelint-config-standard-29.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/stylelint-config-standard-29.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/stylelint-config-standard-29.x") DEBUG: getBranchPr(renovate/stylelint-config-standard-29.x)(branch="renovate/stylelint-config-standard-29.x") DEBUG: findPr(renovate/stylelint-config-standard-29.x, undefined, open)(branch="renovate/stylelint-config-standard-29.x") DEBUG: findPr(renovate/stylelint-config-standard-29.x, undefined, closed)(branch="renovate/stylelint-config-standard-29.x") DEBUG: branchExists=false(branch="renovate/stylelint-config-standard-29.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/stylelint-config-standard-29.x") DEBUG: recreateClosed is false(branch="renovate/stylelint-config-standard-29.x") DEBUG: findPr(renovate/stylelint-config-standard-29.x, Update dependency stylelint-config-standard to v29, !open)(branch="renovate/stylelint-config-standard-29.x") DEBUG: prAlreadyExisted=false(branch="renovate/stylelint-config-standard-29.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/stylelint-config-standard-29.x") DEBUG: syncBranchState()(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: getBranchPr(renovate/stylelint-no-unsupported-browser-features-6.x)(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: findPr(renovate/stylelint-no-unsupported-browser-features-6.x, undefined, open)(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: findPr(renovate/stylelint-no-unsupported-browser-features-6.x, undefined, closed)(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: branchExists=false(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: recreateClosed is false(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: findPr(renovate/stylelint-no-unsupported-browser-features-6.x, Update dependency stylelint-no-unsupported-browser-features to v6, !open)(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: prAlreadyExisted=false(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/stylelint-no-unsupported-browser-features-6.x") DEBUG: syncBranchState()(branch="renovate/uuid-9.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/uuid-9.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/uuid-9.x") DEBUG: getBranchPr(renovate/uuid-9.x)(branch="renovate/uuid-9.x") DEBUG: findPr(renovate/uuid-9.x, undefined, open)(branch="renovate/uuid-9.x") DEBUG: findPr(renovate/uuid-9.x, undefined, closed)(branch="renovate/uuid-9.x") DEBUG: branchExists=false(branch="renovate/uuid-9.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/uuid-9.x") DEBUG: recreateClosed is false(branch="renovate/uuid-9.x") DEBUG: findPr(renovate/uuid-9.x, Update dependency uuid to v9, !open)(branch="renovate/uuid-9.x") DEBUG: prAlreadyExisted=false(branch="renovate/uuid-9.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/uuid-9.x") DEBUG: syncBranchState()(branch="renovate/videojs-contrib-eme-5.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/videojs-contrib-eme-5.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/videojs-contrib-eme-5.x") DEBUG: getBranchPr(renovate/videojs-contrib-eme-5.x)(branch="renovate/videojs-contrib-eme-5.x") DEBUG: findPr(renovate/videojs-contrib-eme-5.x, undefined, open)(branch="renovate/videojs-contrib-eme-5.x") DEBUG: findPr(renovate/videojs-contrib-eme-5.x, undefined, closed)(branch="renovate/videojs-contrib-eme-5.x") DEBUG: branchExists=false(branch="renovate/videojs-contrib-eme-5.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/videojs-contrib-eme-5.x") DEBUG: recreateClosed is false(branch="renovate/videojs-contrib-eme-5.x") DEBUG: findPr(renovate/videojs-contrib-eme-5.x, Update dependency videojs-contrib-eme to v5, !open)(branch="renovate/videojs-contrib-eme-5.x") DEBUG: prAlreadyExisted=false(branch="renovate/videojs-contrib-eme-5.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/videojs-contrib-eme-5.x") DEBUG: syncBranchState()(branch="renovate/wagtail-4.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/wagtail-4.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/wagtail-4.x") DEBUG: getBranchPr(renovate/wagtail-4.x)(branch="renovate/wagtail-4.x") DEBUG: findPr(renovate/wagtail-4.x, undefined, open)(branch="renovate/wagtail-4.x") DEBUG: findPr(renovate/wagtail-4.x, undefined, closed)(branch="renovate/wagtail-4.x") DEBUG: branchExists=false(branch="renovate/wagtail-4.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/wagtail-4.x") DEBUG: recreateClosed is false(branch="renovate/wagtail-4.x") DEBUG: findPr(renovate/wagtail-4.x, Update dependency wagtail to v4, !open)(branch="renovate/wagtail-4.x") DEBUG: prAlreadyExisted=false(branch="renovate/wagtail-4.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/wagtail-4.x") DEBUG: syncBranchState()(branch="renovate/wagtail-factories-3.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/wagtail-factories-3.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/wagtail-factories-3.x") DEBUG: getBranchPr(renovate/wagtail-factories-3.x)(branch="renovate/wagtail-factories-3.x") DEBUG: findPr(renovate/wagtail-factories-3.x, undefined, open)(branch="renovate/wagtail-factories-3.x") DEBUG: findPr(renovate/wagtail-factories-3.x, undefined, closed)(branch="renovate/wagtail-factories-3.x") DEBUG: branchExists=false(branch="renovate/wagtail-factories-3.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/wagtail-factories-3.x") DEBUG: recreateClosed is false(branch="renovate/wagtail-factories-3.x") DEBUG: findPr(renovate/wagtail-factories-3.x, Update dependency wagtail-factories to v3, !open)(branch="renovate/wagtail-factories-3.x") DEBUG: prAlreadyExisted=false(branch="renovate/wagtail-factories-3.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/wagtail-factories-3.x") DEBUG: syncBranchState()(branch="renovate/whitenoise-6.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/whitenoise-6.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/whitenoise-6.x") DEBUG: getBranchPr(renovate/whitenoise-6.x)(branch="renovate/whitenoise-6.x") DEBUG: findPr(renovate/whitenoise-6.x, undefined, open)(branch="renovate/whitenoise-6.x") DEBUG: findPr(renovate/whitenoise-6.x, undefined, closed)(branch="renovate/whitenoise-6.x") DEBUG: branchExists=false(branch="renovate/whitenoise-6.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/whitenoise-6.x") DEBUG: recreateClosed is false(branch="renovate/whitenoise-6.x") DEBUG: findPr(renovate/whitenoise-6.x, Update dependency whitenoise to v6, !open)(branch="renovate/whitenoise-6.x") DEBUG: prAlreadyExisted=false(branch="renovate/whitenoise-6.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/whitenoise-6.x") DEBUG: syncBranchState()(branch="renovate/oryd-hydra-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/oryd-hydra-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/oryd-hydra-2.x") DEBUG: getBranchPr(renovate/oryd-hydra-2.x)(branch="renovate/oryd-hydra-2.x") DEBUG: findPr(renovate/oryd-hydra-2.x, undefined, open)(branch="renovate/oryd-hydra-2.x") DEBUG: findPr(renovate/oryd-hydra-2.x, undefined, closed)(branch="renovate/oryd-hydra-2.x") DEBUG: branchExists=false(branch="renovate/oryd-hydra-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/oryd-hydra-2.x") DEBUG: recreateClosed is false(branch="renovate/oryd-hydra-2.x") DEBUG: findPr(renovate/oryd-hydra-2.x, Update oryd/hydra Docker tag to v2, !open)(branch="renovate/oryd-hydra-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/oryd-hydra-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/oryd-hydra-2.x") DEBUG: syncBranchState()(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: getBranchPr(renovate/oryd-hydra-login-consent-node-2.x)(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: findPr(renovate/oryd-hydra-login-consent-node-2.x, undefined, open)(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: findPr(renovate/oryd-hydra-login-consent-node-2.x, undefined, closed)(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: branchExists=false(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: recreateClosed is false(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: findPr(renovate/oryd-hydra-login-consent-node-2.x, Update oryd/hydra-login-consent-node Docker tag to v2, !open)(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/oryd-hydra-login-consent-node-2.x") DEBUG: syncBranchState()(branch="renovate/postgres-15.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/postgres-15.x") DEBUG: getBranchPr(renovate/postgres-15.x)(branch="renovate/postgres-15.x") DEBUG: findPr(renovate/postgres-15.x, undefined, open)(branch="renovate/postgres-15.x") DEBUG: findPr(renovate/postgres-15.x, undefined, closed)(branch="renovate/postgres-15.x") DEBUG: branchExists=false(branch="renovate/postgres-15.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/postgres-15.x") DEBUG: recreateClosed is false(branch="renovate/postgres-15.x") DEBUG: findPr(renovate/postgres-15.x, Update postgres Docker tag to v15, !open)(branch="renovate/postgres-15.x") DEBUG: prAlreadyExisted=false(branch="renovate/postgres-15.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/postgres-15.x") DEBUG: syncBranchState()(branch="renovate/python-2.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/python-2.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/python-2.x") DEBUG: getBranchPr(renovate/python-2.x)(branch="renovate/python-2.x") DEBUG: findPr(renovate/python-2.x, undefined, open)(branch="renovate/python-2.x") DEBUG: findPr(renovate/python-2.x, undefined, closed)(branch="renovate/python-2.x") DEBUG: branchExists=false(branch="renovate/python-2.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/python-2.x") DEBUG: recreateClosed is false(branch="renovate/python-2.x") DEBUG: findPr(renovate/python-2.x, Update python orb to v2, !open)(branch="renovate/python-2.x") DEBUG: prAlreadyExisted=false(branch="renovate/python-2.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/python-2.x") DEBUG: syncBranchState()(branch="renovate/shellcheck-3.x") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/shellcheck-3.x") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/shellcheck-3.x") DEBUG: getBranchPr(renovate/shellcheck-3.x)(branch="renovate/shellcheck-3.x") DEBUG: findPr(renovate/shellcheck-3.x, undefined, open)(branch="renovate/shellcheck-3.x") DEBUG: findPr(renovate/shellcheck-3.x, undefined, closed)(branch="renovate/shellcheck-3.x") DEBUG: branchExists=false(branch="renovate/shellcheck-3.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/shellcheck-3.x") DEBUG: recreateClosed is false(branch="renovate/shellcheck-3.x") DEBUG: findPr(renovate/shellcheck-3.x, Update shellcheck orb to v3, !open)(branch="renovate/shellcheck-3.x") DEBUG: prAlreadyExisted=false(branch="renovate/shellcheck-3.x") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/shellcheck-3.x") DEBUG: syncBranchState()(branch="renovate/major-uppy-monorepo") DEBUG: syncBranchState(): update baseBranchSha(branch="renovate/major-uppy-monorepo") DEBUG: branch.isUpToDate(): needs recalculation(branch="renovate/major-uppy-monorepo") DEBUG: getBranchPr(renovate/major-uppy-monorepo)(branch="renovate/major-uppy-monorepo") DEBUG: findPr(renovate/major-uppy-monorepo, undefined, open)(branch="renovate/major-uppy-monorepo") DEBUG: findPr(renovate/major-uppy-monorepo, undefined, closed)(branch="renovate/major-uppy-monorepo") DEBUG: branchExists=false(branch="renovate/major-uppy-monorepo") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/major-uppy-monorepo") DEBUG: recreateClosed is false(branch="renovate/major-uppy-monorepo") DEBUG: findPr(renovate/major-uppy-monorepo, Update uppy monorepo to v3 (major), !open)(branch="renovate/major-uppy-monorepo") DEBUG: prAlreadyExisted=false(branch="renovate/major-uppy-monorepo") DEBUG: Reached branch limit - skipping branch creation(branch="renovate/major-uppy-monorepo") DEBUG: getBranchPr(renovate/node-12.x) DEBUG: findPr(renovate/node-12.x, undefined, open) DEBUG: Found PR #1693 DEBUG: branch.isBehindBase(): using git to calculate DEBUG: branch.isBehindBase(): true { "currentBranch": "develop", "currentBranchSha": "647c43b26618a003376bc59dc31153d343622343" } DEBUG: isBranchConflicted(develop, renovate/node-12.x) DEBUG: branch.isConflicted(): using cached result "false" DEBUG: getBranchPr(renovate/autoprefixer-10.x) DEBUG: findPr(renovate/autoprefixer-10.x, undefined, open) DEBUG: Found PR #1663 DEBUG: branch.isBehindBase(): using git to calculate DEBUG: branch.isBehindBase(): true { "currentBranch": "develop", "currentBranchSha": "647c43b26618a003376bc59dc31153d343622343" } DEBUG: isBranchConflicted(develop, renovate/autoprefixer-10.x) DEBUG: branch.isConflicted(): using cached result "false" DEBUG: getBranchPr(renovate/foundation-sites-6.x) DEBUG: findPr(renovate/foundation-sites-6.x, undefined, open) DEBUG: Found PR #1695 DEBUG: branch.isBehindBase(): using git to calculate DEBUG: branch.isBehindBase(): true { "currentBranch": "develop", "currentBranchSha": "647c43b26618a003376bc59dc31153d343622343" } DEBUG: isBranchConflicted(develop, renovate/foundation-sites-6.x) DEBUG: branch.isConflicted(): using cached result "false" DEBUG: getBranchPr(renovate/jquery-3.x) DEBUG: findPr(renovate/jquery-3.x, undefined, open) DEBUG: Found PR #1697 DEBUG: branch.isBehindBase(): using cached result "false" DEBUG: isBranchConflicted(develop, renovate/jquery-3.x) DEBUG: branch.isConflicted(): using cached result "false" DEBUG: getBranchPr(renovate/postcss-8.x) DEBUG: findPr(renovate/postcss-8.x, undefined, open) DEBUG: Found PR #1648 DEBUG: branch.isBehindBase(): using git to calculate DEBUG: branch.isBehindBase(): true { "currentBranch": "develop", "currentBranchSha": "647c43b26618a003376bc59dc31153d343622343" } DEBUG: isBranchConflicted(develop, renovate/postcss-8.x) DEBUG: branch.isConflicted(): using cached result "false" DEBUG: getBranchPr(renovate/mini-css-extract-plugin-2.x) DEBUG: findPr(renovate/mini-css-extract-plugin-2.x, undefined, open) DEBUG: Found PR #1561 DEBUG: branch.isBehindBase(): using git to calculate DEBUG: branch.isBehindBase(): true { "currentBranch": "develop", "currentBranchSha": "647c43b26618a003376bc59dc31153d343622343" } DEBUG: isBranchConflicted(develop, renovate/mini-css-extract-plugin-2.x) DEBUG: branch.isConflicted(): using cached result "false" DEBUG: getBranchPr(renovate/sass-1.x) DEBUG: findPr(renovate/sass-1.x, undefined, open) DEBUG: Found PR #1650 DEBUG: branch.isBehindBase(): using git to calculate DEBUG: branch.isBehindBase(): true { "currentBranch": "develop", "currentBranchSha": "647c43b26618a003376bc59dc31153d343622343" } DEBUG: isBranchConflicted(develop, renovate/sass-1.x) DEBUG: branch.isConflicted(): using cached result "false" DEBUG: getBranchPr(renovate/wagtail-2.x) DEBUG: findPr(renovate/wagtail-2.x, undefined, open) DEBUG: Found PR #1625 DEBUG: branch.isBehindBase(): using cached result "false" DEBUG: isBranchConflicted(develop, renovate/wagtail-2.x) DEBUG: branch.isConflicted(): using cached result "false" DEBUG: getBranchPr(renovate/uppy-monorepo) DEBUG: findPr(renovate/uppy-monorepo, undefined, open) DEBUG: Found PR #1669 DEBUG: branch.isBehindBase(): using git to calculate DEBUG: branch.isBehindBase(): true { "currentBranch": "develop", "currentBranchSha": "647c43b26618a003376bc59dc31153d343622343" } DEBUG: isBranchConflicted(develop, renovate/uppy-monorepo) DEBUG: branch.isConflicted(): using cached result "false" DEBUG: Ensuring Dependency Dashboard DEBUG: ensureIssue(Dependency Dashboard) DEBUG: Patching issue DEBUG: Issue updated DEBUG: Removing any stale branches DEBUG: config.repoIsOnboarded=true DEBUG: Branch lists { "branchList": [ "renovate/autoprefixer-10.x", "renovate/babel-monorepo", "renovate/browserslist-4.x", "renovate/cimg-aws-2022.x", "renovate/cimg-base-2022.x", "renovate/coverage-6.x", "renovate/css-loader-6.x", "renovate/css-minimizer-webpack-plugin-4.x", "renovate/dj-database-url-1.x", "renovate/django-4.x", "renovate/django-allauth-0.x", "renovate/django-anymail-8.x", "renovate/django-colorfield-0.x", "renovate/django-contact-form-2.x", "renovate/django-countries-7.x", "renovate/django-debug-toolbar-3.x", "renovate/django-extensions-3.x", "renovate/django-import-export-2.x", "renovate/django-import-export-3.x", "renovate/django-modeltranslation-0.x", "renovate/django-select2-7.x", "renovate/django-storages-1.x", "renovate/django-su-1.x", "renovate/django-webpack-loader-1.x", "renovate/djangorestframework-3.x", "renovate/do-exclusively-0.x", "renovate/eslint-plugin-mocha-10.x", "renovate/flake8-5.x", "renovate/foundation-sites-6.x", "renovate/geoip2-4.x", "renovate/ipython-7.x", "renovate/ipython-8.x", "renovate/jquery-3.x", "renovate/jsonnet-0.x", "renovate/karma-6.x", "renovate/major-babel-monorepo", "renovate/major-uppy-monorepo", "renovate/markdownlint-cli-0.x", "renovate/mini-css-extract-plugin-2.x", "renovate/mocha-10.x", "renovate/mutmut-2.x", "renovate/node-12.x", "renovate/node-18.x", "renovate/oryd-hydra-2.x", "renovate/oryd-hydra-login-consent-node-2.x", "renovate/pgcli-3.x", "renovate/postcss-8.x", "renovate/postcss-loader-7.x", "renovate/postgres-12.x", "renovate/postgres-15.x", "renovate/prettier-2.x", "renovate/pygithub-1.x", "renovate/pymarc-4.x", "renovate/pytest-7.x", "renovate/pytest-cov-4.x", "renovate/pytest-django-4.x", "renovate/pytest-factoryboy-2.x", "renovate/pytest-mock-3.x", "renovate/pytest-responses-0.x", "renovate/python-1.x", "renovate/python-2.x", "renovate/requests-2.x", "renovate/responses-0.x", "renovate/rules-3.x", "renovate/sass-1.x", "renovate/sass-loader-12.x", "renovate/sass-loader-13.x", "renovate/sentry-sdk-1.x", "renovate/shellcheck-3.x", "renovate/starlette-0.x", "renovate/stylelint-14.x", "renovate/stylelint-config-recommended-scss-8.x", "renovate/stylelint-config-standard-29.x", "renovate/stylelint-no-unsupported-browser-features-5.x", "renovate/stylelint-no-unsupported-browser-features-6.x", "renovate/stylelint-scss-4.x", "renovate/terser-webpack-plugin-5.x", "renovate/time-machine-2.x", "renovate/uppy-monorepo", "renovate/uuid-9.x", "renovate/uvicorn-0.x", "renovate/video.js-7.x", "renovate/videojs-contrib-eme-4.x", "renovate/videojs-contrib-eme-5.x", "renovate/videojs-hotkeys-0.x", "renovate/wagtail-2.x", "renovate/wagtail-4.x", "renovate/wagtail-factories-2.x", "renovate/wagtail-factories-3.x", "renovate/watchdog-2.x", "renovate/webpack-5.x", "renovate/webpack-bundle-analyzer-4.x", "renovate/webpack-bundle-tracker-1.x", "renovate/webpack-cli-4.x", "renovate/webvtt-parser-2.x", "renovate/whitenoise-6.x", "renovate/xo-0.x" ], "renovateBranches": [ "renovate/autoprefixer-10.x", "renovate/foundation-sites-6.x", "renovate/jquery-3.x", "renovate/mini-css-extract-plugin-2.x", "renovate/node-12.x", "renovate/postcss-8.x", "renovate/sass-1.x", "renovate/uppy-monorepo", "renovate/wagtail-2.x" ] } DEBUG: remainingBranches= DEBUG: No branches to clean up DEBUG: Cleaning up Renovate refs: refs/renovate/* DEBUG: PackageFiles.clear() - Package files deleted DEBUG: Repo is activated DEBUG: Branch summary { "cacheModified": true, "baseBranches": [ { "branchName": "develop", "sha": "647c43b26618a003376bc59dc31153d343622343" } ], "branches": [ { "branchName": "renovate/node-12.x", "branchSha": "05b7e0af923d387929f7bab93239f9d0e6f6a1f9", "baseBranch": "develop", "baseBranchSha": "1c3dc606c0dd50a34ae2b123f93015ae95d3c80a", "automerge": false, "isModified": false }, { "branchName": "renovate/autoprefixer-10.x", "branchSha": "a8bcd3459bb594e36b60836fb87d16159d1ed7ee", "baseBranch": "develop", "baseBranchSha": "44f1a1b43c8d323ecb7f9478ea1f2f919819550c", "automerge": false, "isModified": false }, { "branchName": "renovate/foundation-sites-6.x", "branchSha": "93cf3feccf2b2542b35777ac256b3ddc2e62b436", "baseBranch": "develop", "baseBranchSha": "1c3dc606c0dd50a34ae2b123f93015ae95d3c80a", "automerge": false, "isModified": false }, { "branchName": "renovate/jquery-3.x", "branchSha": "c23e001d7bea9d2ef1a1b2838e992cc90d6b9a9d", "baseBranch": "develop", "baseBranchSha": "647c43b26618a003376bc59dc31153d343622343", "automerge": false, "isModified": false }, { "branchName": "renovate/postcss-8.x", "branchSha": "0abb460e781d8490abf59ff885651f4bf7844400", "baseBranch": "develop", "baseBranchSha": "4a1423f993eb16a78a661a29159906a97dfa65ac", "automerge": false, "isModified": false }, { "branchName": "renovate/mini-css-extract-plugin-2.x", "branchSha": "b3455495d1f49aed964d0dd09dc66e18b32fe9dd", "baseBranch": "develop", "baseBranchSha": "342722415959fc397885fe9d6488268bd5d26287", "automerge": false, "isModified": false }, { "branchName": "renovate/sass-1.x", "branchSha": "003c14b051023f9cb0bcf1b507b53946b33e29f8", "baseBranch": "develop", "baseBranchSha": "7da27f4a2dbf3dbb1de75856f3335c4ddd3d77ba", "automerge": false, "isModified": false }, { "branchName": "renovate/wagtail-2.x", "branchSha": "30e1787cbfe4fda12dae50f28b2fcc2ee8f8283b", "baseBranch": "develop", "baseBranchSha": "647c43b26618a003376bc59dc31153d343622343", "automerge": false, "isModified": false }, { "branchName": "renovate/uppy-monorepo", "branchSha": "764d45e77e7b85313a82ed29782d8a309ebf291c", "baseBranch": "develop", "baseBranchSha": "f3164527d1cda23d268da1000dd59305a2bbf87a", "automerge": false, "isModified": false } ], "inactiveBranches": [ "renovate/pytest-responses-0.x", "renovate/stylelint-no-unsupported-browser-features-5.x", "renovate/terser-webpack-plugin-5.x", "renovate/videojs-contrib-eme-4.x", "renovate/videojs-hotkeys-0.x", "renovate/watchdog-2.x", "renovate/babel-monorepo", "renovate/cimg-aws-2022.x", "renovate/pygithub-1.x", "renovate/browserslist-4.x", "renovate/css-loader-6.x", "renovate/django-allauth-0.x", "renovate/django-anymail-8.x", "renovate/django-colorfield-0.x", "renovate/django-countries-7.x", "renovate/django-debug-toolbar-3.x", "renovate/django-extensions-3.x", "renovate/django-import-export-2.x", "renovate/django-modeltranslation-0.x", "renovate/django-select2-7.x", "renovate/django-storages-1.x", "renovate/django-webpack-loader-1.x", "renovate/djangorestframework-3.x", "renovate/eslint-plugin-mocha-10.x", "renovate/geoip2-4.x", "renovate/ipython-7.x", "renovate/jsonnet-0.x", "renovate/karma-6.x", "renovate/markdownlint-cli-0.x", "renovate/mutmut-2.x", "renovate/pgcli-3.x", "renovate/prettier-2.x", "renovate/pymarc-4.x", "renovate/pytest-django-4.x", "renovate/pytest-factoryboy-2.x", "renovate/pytest-mock-3.x", "renovate/requests-2.x", "renovate/responses-0.x", "renovate/rules-3.x", "renovate/sass-loader-12.x", "renovate/sentry-sdk-1.x", "renovate/starlette-0.x", "renovate/stylelint-14.x", "renovate/stylelint-scss-4.x", "renovate/time-machine-2.x", "renovate/uvicorn-0.x", "renovate/video.js-7.x", "renovate/wagtail-factories-2.x", "renovate/webpack-5.x", "renovate/webpack-bundle-analyzer-4.x", "renovate/webpack-bundle-tracker-1.x", "renovate/webpack-cli-4.x", "renovate/webvtt-parser-2.x", "renovate/xo-0.x", "renovate/do-exclusively-0.x", "renovate/postgres-12.x", "renovate/python-1.x", "renovate/node-18.x", "renovate/cimg-base-2022.x", "renovate/django-4.x", "renovate/major-babel-monorepo", "renovate/coverage-6.x", "renovate/css-minimizer-webpack-plugin-4.x", "renovate/dj-database-url-1.x", "renovate/django-contact-form-2.x", "renovate/django-import-export-3.x", "renovate/django-su-1.x", "renovate/flake8-5.x", "renovate/ipython-8.x", "renovate/mocha-10.x", "renovate/postcss-loader-7.x", "renovate/pytest-7.x", "renovate/pytest-cov-4.x", "renovate/sass-loader-13.x", "renovate/stylelint-config-recommended-scss-8.x", "renovate/stylelint-config-standard-29.x", "renovate/stylelint-no-unsupported-browser-features-6.x", "renovate/uuid-9.x", "renovate/videojs-contrib-eme-5.x", "renovate/wagtail-4.x", "renovate/wagtail-factories-3.x", "renovate/whitenoise-6.x", "renovate/oryd-hydra-2.x", "renovate/oryd-hydra-login-consent-node-2.x", "renovate/postgres-15.x", "renovate/python-2.x", "renovate/shellcheck-3.x", "renovate/major-uppy-monorepo" ] } DEBUG: Renovate repository PR statistics { "stats": { "total": 440, "open": 9, "closed": 66, "merged": 365 } } DEBUG: Repository result: done, status: activated, enabled: true, onboarded: true DEBUG: Repository timing splits (milliseconds) { "splits": { "init": 3860, "extract": 7768, "lookup": 35789, "onboarding": 0, "update": 896625 }, "total": 954425 } DEBUG: Package cache statistics { "get": { "count": 370, "avgMs": 190, "medianMs": 9, "maxMs": 9299 }, "set": { "count": 87, "avgMs": 322, "medianMs": 153, "maxMs": 3634 } } DEBUG: http statistics { "urls": { "https://api.github.com/graphql (POST,200)": 10, "https://api.github.com/repos/PicturePipe/hatch/branches/develop/protection (GET,200)": 1, "https://api.github.com/repos/PicturePipe/hatch/commits/c23e001d7bea9d2ef1a1b2838e992cc90d6b9a9d/statuses (GET,200)": 2, "https://api.github.com/repos/PicturePipe/hatch/commits/renovate/jquery-3.x/status (GET,200)": 1, "https://api.github.com/repos/PicturePipe/hatch/contents/renovate.json (GET,200)": 1, "https://api.github.com/repos/PicturePipe/hatch/git/commits (POST,201)": 2, "https://api.github.com/repos/PicturePipe/hatch/git/refs/heads/renovate/jquery-3.x (PATCH,200)": 1, "https://api.github.com/repos/PicturePipe/hatch/git/refs/heads/renovate/wagtail-2.x (PATCH,200)": 1, "https://api.github.com/repos/PicturePipe/hatch/git/trees (POST,201)": 2, "https://api.github.com/repos/PicturePipe/hatch/issues/1527 (GET,200)": 2, "https://api.github.com/repos/PicturePipe/hatch/issues/1527 (PATCH,200)": 1, "https://api.github.com/repos/PicturePipe/hatch/issues/1625/comments (GET,200)": 1, "https://api.github.com/repos/PicturePipe/hatch/pulls (GET,200)": 1, "https://api.github.com/repos/PicturePipe/hatch/statuses/c23e001d7bea9d2ef1a1b2838e992cc90d6b9a9d (POST,201)": 1, "https://api.github.com/repos/PicturePipe/renovate-config/contents/default.json (GET,200)": 1, "https://api.github.com/repos/PicturePipe/renovate-config/contents/poetry.json (GET,200)": 1, "https://api.github.com/repos/containerbase/python-prebuild/releases (GET,200)": 1, "https://api.github.com/repos/postcss/postcss/tags (GET,200)": 1, "https://api.github.com/repos/sass/dart-sass/tags (GET,200)": 1, "https://api.github.com/repos/transloadit/uppy/tags (GET,200)": 1, "https://api.github.com/repos/wagtail/wagtail/tags (GET,200)": 1, "https://api.github.com/repos/whitesource/merge-confidence/contents/beta.json (GET,200)": 1, "https://api.github.com/repositories/13078968/tags (GET,200)": 2, "https://api.github.com/repositories/16479108/tags (GET,200)": 2, "https://api.github.com/repositories/46273445/tags (GET,200)": 9, "https://api.github.com/repositories/72474275/tags (GET,200)": 2, "https://auth.docker.io/token (GET,200)": 7, "https://index.docker.io/v2/ (GET,401)": 1, "https://index.docker.io/v2/cimg/aws/manifests/2022.09.1 (HEAD,200)": 1, "https://index.docker.io/v2/cimg/aws/manifests/2022.10.1 (HEAD,200)": 1, "https://index.docker.io/v2/cimg/aws/tags/list (GET,200)": 1, "https://index.docker.io/v2/cimg/aws/tags/list (GET,401)": 1, "https://index.docker.io/v2/cimg/base/manifests/2021.12 (GET,200)": 1, "https://index.docker.io/v2/cimg/base/manifests/2022.10 (GET,200)": 1, "https://index.docker.io/v2/cimg/python/manifests/3.10.5 (GET,200)": 1, "https://index.docker.io/v2/circleci/node/manifests/12.22.7-browsers (GET,200)": 1, "https://index.docker.io/v2/library/postgres/manifests/12.12-alpine (HEAD,200)": 1, "https://index.docker.io/v2/library/postgres/manifests/12.8-alpine (HEAD,200)": 1, "https://index.docker.io/v2/library/postgres/manifests/15.0-alpine (HEAD,200)": 1, "https://index.docker.io/v2/oryd/hydra-login-consent-node/blobs/sha256:95fe7d5fe7ee31f92769d72ecc7f4e5885063c76db582e4f1b3956291458de36 (GET,200)": 1, "https://index.docker.io/v2/oryd/hydra-login-consent-node/manifests/latest (GET,200)": 1, "https://index.docker.io/v2/oryd/hydra-login-consent-node/manifests/v1.11.10 (GET,200)": 1, "https://index.docker.io/v2/oryd/hydra-login-consent-node/manifests/v2.0.1 (GET,200)": 1, "https://index.docker.io/v2/oryd/hydra/blobs/sha256:08f9ec2d03c9c9a405e745e1990d533f030ee48bf9a8eacc27ff500b0589cf2d (GET,200)": 1, "https://index.docker.io/v2/oryd/hydra/manifests/latest (GET,200)": 1, "https://index.docker.io/v2/oryd/hydra/manifests/sha256:be7649996fe46599943d404171c1c7315f7bd4b315c63c2335a8423bbd6bdfa3 (GET,200)": 1, "https://index.docker.io/v2/oryd/hydra/manifests/v1.11.10 (GET,200)": 1, "https://index.docker.io/v2/oryd/hydra/manifests/v2.0.1 (GET,200)": 1, "https://pypi.org/pypi/colour/json (GET,200)": 1, "https://pypi.org/pypi/dj-database-url/json (GET,200)": 1, "https://pypi.org/pypi/django-colorfield/json (GET,200)": 1, "https://pypi.org/pypi/django-contact-form/json (GET,200)": 1, "https://pypi.org/pypi/django-debug-toolbar-force/json (GET,200)": 1, "https://pypi.org/pypi/django-honeypot/json (GET,200)": 1, "https://pypi.org/pypi/django-lockdown/json (GET,200)": 1, "https://pypi.org/pypi/django-pdb/json (GET,200)": 1, "https://pypi.org/pypi/django-select2/json (GET,200)": 1, "https://pypi.org/pypi/django-slugger/json (GET,200)": 1, "https://pypi.org/pypi/django-su/json (GET,200)": 1, "https://pypi.org/pypi/django-webpack-loader/json (GET,200)": 1, "https://pypi.org/pypi/furl/json (GET,200)": 1, "https://pypi.org/pypi/honcho/json (GET,200)": 1, "https://pypi.org/pypi/ipython/json (GET,200)": 1, "https://pypi.org/pypi/jsonnet/json (GET,200)": 1, "https://pypi.org/pypi/langdetect/json (GET,200)": 1, "https://pypi.org/pypi/marcx/json (GET,200)": 1, "https://pypi.org/pypi/mutmut/json (GET,200)": 1, "https://pypi.org/pypi/pgcli/json (GET,200)": 1, "https://pypi.org/pypi/progress/json (GET,200)": 1, "https://pypi.org/pypi/pymarc/json (GET,200)": 1, "https://pypi.org/pypi/pymupdf/json (GET,200)": 1, "https://pypi.org/pypi/pytest-responses/json (GET,200)": 1, "https://pypi.org/pypi/rules/json (GET,200)": 1, "https://pypi.org/pypi/srt/json (GET,200)": 1, "https://registry.npmjs.org/@babel%2Fcore (GET,200)": 1, "https://registry.npmjs.org/@babel%2Fpreset-env (GET,200)": 1, "https://registry.npmjs.org/@uppy%2Faws-s3-multipart (GET,200)": 1, "https://registry.npmjs.org/@uppy%2Fcore (GET,200)": 1, "https://registry.npmjs.org/@uppy%2Fdashboard (GET,200)": 1, "https://registry.npmjs.org/@uppy%2Furl (GET,200)": 1, "https://registry.npmjs.org/docdash (GET,200)": 1, "https://registry.npmjs.org/foundation-icon-fonts (GET,200)": 1, "https://registry.npmjs.org/karma-html2js-preprocessor (GET,200)": 1, "https://registry.npmjs.org/videojs-contrib-eme (GET,200)": 1, "https://registry.npmjs.org/videojs-hotkeys (GET,200)": 1, "https://registry.npmjs.org/webpack-bundle-tracker (GET,200)": 1, "https://registry.npmjs.org/webvtt-parser (GET,200)": 1 }, "hostStats": { "api.github.com": { "requestCount": 50, "requestAvgMs": 370, "queueAvgMs": 0 }, "auth.docker.io": { "requestCount": 7, "requestAvgMs": 1207, "queueAvgMs": 0 }, "index.docker.io": { "requestCount": 21, "requestAvgMs": 1759, "queueAvgMs": 0 }, "pypi.org": { "requestCount": 26, "requestAvgMs": 925, "queueAvgMs": 0 }, "registry.npmjs.org": { "requestCount": 13, "requestAvgMs": 3750, "queueAvgMs": 0 } }, "totalRequests": 117 } DEBUG: dns cache { "hosts": [ "api.github.com", "registry.npmjs.org", "pypi.org", "index.docker.io", "auth.docker.io", "production.cloudflare.docker.com" ] } INFO: Repository finished { "cloned": true, "durationMs": 954425 }