diff --git a/client-templates/azure-repos/accept.json.sample b/client-templates/azure-repos/accept.json.sample index ef87fc03d..c9c1a71d2 100644 --- a/client-templates/azure-repos/accept.json.sample +++ b/client-templates/azure-repos/accept.json.sample @@ -106,6 +106,10 @@ "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -195,6 +199,10 @@ "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", diff --git a/client-templates/bitbucket-server/accept.json.sample b/client-templates/bitbucket-server/accept.json.sample index 9eb7bfa83..1da6553f2 100644 --- a/client-templates/bitbucket-server/accept.json.sample +++ b/client-templates/bitbucket-server/accept.json.sample @@ -252,7 +252,51 @@ { "//": "used to determine the full dependency tree", "method": "GET", - "path": "/projects/:project/repos/:repo/browse*%poetry.lock", + "path": "/projects/:project/repos/:repo/browse*%2Fpoetry.lock", + "origin": "https://${BITBUCKET_API}", + "auth": { + "scheme": "basic", + "username": "${BITBUCKET_USERNAME}", + "password": "${BITBUCKET_PASSWORD}" + } + }, + { + "//": "used to determine the full dependency tree", + "method": "GET", + "path": "/projects/:project/repos/:repo/browse*/Pipfile", + "origin": "https://${BITBUCKET_API}", + "auth": { + "scheme": "basic", + "username": "${BITBUCKET_USERNAME}", + "password": "${BITBUCKET_PASSWORD}" + } + }, + { + "//": "used to determine the full dependency tree", + "method": "GET", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile", + "origin": "https://${BITBUCKET_API}", + "auth": { + "scheme": "basic", + "username": "${BITBUCKET_USERNAME}", + "password": "${BITBUCKET_PASSWORD}" + } + }, + { + "//": "used to determine the full dependency tree", + "method": "GET", + "path": "/projects/:project/repos/:repo/browse*/Pipfile.lock", + "origin": "https://${BITBUCKET_API}", + "auth": { + "scheme": "basic", + "username": "${BITBUCKET_USERNAME}", + "password": "${BITBUCKET_PASSWORD}" + } + }, + { + "//": "used to determine the full dependency tree", + "method": "GET", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile.lock", "origin": "https://${BITBUCKET_API}", "auth": { "scheme": "basic", diff --git a/client-templates/github-com/accept.json.sample b/client-templates/github-com/accept.json.sample index e2ac337e5..51bb8644c 100644 --- a/client-templates/github-com/accept.json.sample +++ b/client-templates/github-com/accept.json.sample @@ -74,6 +74,22 @@ "path": "commits.*.modified.*", "value": "poetry.lock" }, + { + "path": "commits.*.added.*", + "value": "Pipfile" + }, + { + "path": "commits.*.modified.*", + "value": "Pipfile" + }, + { + "path": "commits.*.added.*", + "value": "Pipfile.lock" + }, + { + "path": "commits.*.modified.*", + "value": "Pipfile.lock" + }, { "path": "commits.*.added.*", "value": "pom.xml" diff --git a/client-templates/github-enterprise/accept.json.sample b/client-templates/github-enterprise/accept.json.sample index fefb79aaa..ae6920e43 100644 --- a/client-templates/github-enterprise/accept.json.sample +++ b/client-templates/github-enterprise/accept.json.sample @@ -74,6 +74,22 @@ "path": "commits.*.modified.*", "value": "poetry.lock" }, + { + "path": "commits.*.added.*", + "value": "Pipfile" + }, + { + "path": "commits.*.modified.*", + "value": "Pipfile" + }, + { + "path": "commits.*.added.*", + "value": "Pipfile.lock" + }, + { + "path": "commits.*.modified.*", + "value": "Pipfile.lock" + }, { "path": "commits.*.added.*", "value": "pom.xml" diff --git a/client-templates/gitlab/accept.json.sample b/client-templates/gitlab/accept.json.sample index 06236a360..b04bde44c 100644 --- a/client-templates/gitlab/accept.json.sample +++ b/client-templates/gitlab/accept.json.sample @@ -158,6 +158,31 @@ "path": "/api/v4/projects/:project/repository/files*%2Fpoetry.lock", "origin": "https://${GITLAB}" }, + { + "//": "used to determine the full dependency tree", + "method": "GET", + "path": "/api/v4/projects/:project/repository/files*/Pipfile", + "origin": "https://${GITLAB}" + }, + { + "//": "used to determine the full dependency tree", + "method": "GET", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile", + "origin": "https://${GITLAB}" + }, + + { + "//": "used to determine the full dependency tree", + "method": "GET", + "path": "/api/v4/projects/:project/repository/files*/Pipfile.lock", + "origin": "https://${GITLAB}" + }, + { + "//": "used to determine the full dependency tree", + "method": "GET", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile.lock", + "origin": "https://${GITLAB}" + }, { "//": "used to determine the full dependency tree", "method": "GET", diff --git a/test/unit/__snapshots__/runtime-rules-hotloading.test.ts.snap b/test/unit/__snapshots__/runtime-rules-hotloading.test.ts.snap index 3861711d7..14f809925 100644 --- a/test/unit/__snapshots__/runtime-rules-hotloading.test.ts.snap +++ b/test/unit/__snapshots__/runtime-rules-hotloading.test.ts.snap @@ -106,6 +106,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -201,6 +205,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -638,7 +646,51 @@ Object { }, "method": "GET", "origin": "https://\${BITBUCKET_API}", - "path": "/projects/:project/repos/:repo/browse*%poetry.lock", + "path": "/projects/:project/repos/:repo/browse*%2Fpoetry.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile.lock", }, Object { "//": "used to determine the full dependency tree", @@ -3393,6 +3445,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -4800,6 +4868,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -5164,6 +5248,30 @@ Object { "origin": "https://\${GITLAB}", "path": "/api/v4/projects/:project/repository/files*%2Fpoetry.lock", }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile.lock", + }, Object { "//": "used to determine the full dependency tree", "method": "GET", @@ -6672,6 +6780,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -6767,6 +6879,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -7234,7 +7350,51 @@ Object { }, "method": "GET", "origin": "https://\${BITBUCKET_API}", - "path": "/projects/:project/repos/:repo/browse*%poetry.lock", + "path": "/projects/:project/repos/:repo/browse*%2Fpoetry.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile.lock", }, Object { "//": "used to determine the full dependency tree", @@ -10034,6 +10194,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -11453,6 +11629,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -11817,6 +12009,30 @@ Object { "origin": "https://\${GITLAB}", "path": "/api/v4/projects/:project/repository/files*%2Fpoetry.lock", }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile.lock", + }, Object { "//": "used to determine the full dependency tree", "method": "GET", @@ -13343,6 +13559,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -13440,6 +13660,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -13909,7 +14133,51 @@ Object { }, "method": "GET", "origin": "https://\${BITBUCKET_API}", - "path": "/projects/:project/repos/:repo/browse*%poetry.lock", + "path": "/projects/:project/repos/:repo/browse*%2Fpoetry.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile.lock", }, Object { "//": "used to determine the full dependency tree", @@ -16743,6 +17011,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -18174,6 +18458,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -18538,6 +18838,30 @@ Object { "origin": "https://\${GITLAB}", "path": "/api/v4/projects/:project/repository/files*%2Fpoetry.lock", }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile.lock", + }, Object { "//": "used to determine the full dependency tree", "method": "GET", @@ -20076,6 +20400,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -20171,6 +20499,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -20638,7 +20970,51 @@ Object { }, "method": "GET", "origin": "https://\${BITBUCKET_API}", - "path": "/projects/:project/repos/:repo/browse*%poetry.lock", + "path": "/projects/:project/repos/:repo/browse*%2Fpoetry.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile.lock", }, Object { "//": "used to determine the full dependency tree", @@ -23438,6 +23814,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -24857,6 +25249,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -25221,6 +25629,30 @@ Object { "origin": "https://\${GITLAB}", "path": "/api/v4/projects/:project/repository/files*%2Fpoetry.lock", }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile.lock", + }, Object { "//": "used to determine the full dependency tree", "method": "GET", @@ -26747,6 +27179,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -26852,6 +27288,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -27151,6 +27591,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -27250,6 +27694,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -27691,7 +28139,51 @@ Object { }, "method": "GET", "origin": "https://\${BITBUCKET_API}", - "path": "/projects/:project/repos/:repo/browse*%poetry.lock", + "path": "/projects/:project/repos/:repo/browse*%2Fpoetry.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile.lock", }, Object { "//": "used to determine the full dependency tree", @@ -28888,7 +29380,51 @@ Object { }, "method": "GET", "origin": "https://\${BITBUCKET_API}", - "path": "/projects/:project/repos/:repo/browse*%poetry.lock", + "path": "/projects/:project/repos/:repo/browse*%2Fpoetry.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile.lock", }, Object { "//": "used to determine the full dependency tree", @@ -31741,6 +32277,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -33892,6 +34444,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -35353,6 +35921,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -36778,6 +37362,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -37142,6 +37742,30 @@ Object { "origin": "https://\${GITLAB}", "path": "/api/v4/projects/:project/repository/files*%2Fpoetry.lock", }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile.lock", + }, Object { "//": "used to determine the full dependency tree", "method": "GET", @@ -38757,6 +39381,30 @@ Object { "origin": "https://\${GITLAB}", "path": "/api/v4/projects/:project/repository/files*%2Fpoetry.lock", }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile.lock", + }, Object { "//": "used to determine the full dependency tree", "method": "GET", @@ -40289,6 +40937,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -40384,6 +41036,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -40821,7 +41477,51 @@ Object { }, "method": "GET", "origin": "https://\${BITBUCKET_API}", - "path": "/projects/:project/repos/:repo/browse*%poetry.lock", + "path": "/projects/:project/repos/:repo/browse*%2Fpoetry.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile.lock", }, Object { "//": "used to determine the full dependency tree", @@ -43570,6 +44270,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -44971,6 +45687,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -45335,6 +46067,30 @@ Object { "origin": "https://\${GITLAB}", "path": "/api/v4/projects/:project/repository/files*%2Fpoetry.lock", }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile.lock", + }, Object { "//": "used to determine the full dependency tree", "method": "GET", @@ -46843,6 +47599,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -46938,6 +47698,10 @@ Object { "**%2Fpyproject.toml", "**/poetry.lock", "**%2Fpoetry.lock", + "**/Pipfile", + "**%2FPipfile", + "**/Pipfile.lock", + "**%2FPipfile.lock", "**/build.gradle", "**%2Fbuild.gradle", "**/gradle.lockfile", @@ -47375,7 +48139,51 @@ Object { }, "method": "GET", "origin": "https://\${BITBUCKET_API}", - "path": "/projects/:project/repos/:repo/browse*%poetry.lock", + "path": "/projects/:project/repos/:repo/browse*%2Fpoetry.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "auth": Object { + "password": "\${BITBUCKET_PASSWORD}", + "scheme": "basic", + "username": "\${BITBUCKET_USERNAME}", + }, + "method": "GET", + "origin": "https://\${BITBUCKET_API}", + "path": "/projects/:project/repos/:repo/browse*%2FPipfile.lock", }, Object { "//": "used to determine the full dependency tree", @@ -50124,6 +50932,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -51525,6 +52349,22 @@ Object { "path": "commits.*.modified.*", "value": "poetry.lock", }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile", + }, + Object { + "path": "commits.*.added.*", + "value": "Pipfile.lock", + }, + Object { + "path": "commits.*.modified.*", + "value": "Pipfile.lock", + }, Object { "path": "commits.*.added.*", "value": "pom.xml", @@ -51889,6 +52729,30 @@ Object { "origin": "https://\${GITLAB}", "path": "/api/v4/projects/:project/repository/files*%2Fpoetry.lock", }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*/Pipfile.lock", + }, + Object { + "//": "used to determine the full dependency tree", + "method": "GET", + "origin": "https://\${GITLAB}", + "path": "/api/v4/projects/:project/repository/files*%2FPipfile.lock", + }, Object { "//": "used to determine the full dependency tree", "method": "GET",