Closed tomirio619 closed 2 years ago
Hi there,
Help us by making a minimal reproduction repository.
Before we can start work on your issue we first need to know exactly what's causing the current behavior. A minimal reproduction helps us with this.
To get started, please read our guide on creating a minimal reproduction to understand what is needed.
We may close the issue if you (or someone else) have not provided a minimal reproduction within two weeks. If you need more time, or are stuck, please ask for help or more time in a comment.
Good luck,
The Renovate team
I've added a reproduction repository to my issue description
Hi, can you copy it over to github.com? We need that in order to fork it into our reproductions org
Hi there,
Help us by making a minimal reproduction repository.
Before we can start work on your issue we first need to know exactly what's causing the current behavior. A minimal reproduction helps us with this.
To get started, please read our guide on creating a minimal reproduction to understand what is needed.
We may close the issue if you (or someone else) have not provided a minimal reproduction within two weeks. If you need more time, or are stuck, please ask for help or more time in a comment.
Good luck,
The Renovate team
@rarkins I've copied it over to Github (see updated issue description)
I've tested against #12544 and found it fixes the problem. See https://github.com/renovate-reproductions/renovate-12682/pull/1
:tada: This issue has been resolved in version 29.12.1 :tada:
The release is available on:
29.12.1
Your semantic-release bot :package::rocket:
Great, thanks!
How are you running Renovate?
Self-hosted
If you're self-hosting Renovate, tell us what version of Renovate you run.
29.8.4
Please select which platform you are using if self-hosting.
gitlab.com
If you're self-hosting Renovate, tell us what version of the platform you run.
14.4.2-ee
Describe the bug
I have private Gitlab repository that contains a
Pipfile
with the following contents:The renovate configuration is as follows:
When I run (a dockerized instance of) renovate, I expect that it creates a MR in which all Pipenv dependencies are updated to their latest versions. However, renovate reports dependency lookup warnings for all AWS CDK dependencies (see logs).
I tried to:
aws-cdk-aws-apigateway = "==1.129.0"
);but the results were the same.
The commands to run renovate is as follows:
where
<project_access_token>
is a project access token withapi
scope.Relevant debug logs
Logs
``` DEBUG: Using RE2 as regex engine DEBUG: Parsing configs DEBUG: Checking for config file in /usr/src/app/config DEBUG: No config file found on disk - skipping DEBUG: File config "config": {} DEBUG: CLI config "config": {} DEBUG: Env config "config": { "hostRules": [], "platform": "gitlab", "endpoint": "[REDACTED]/api/v4", "token": "***********", "autodiscover": true } DEBUG: Combined config "config": { "hostRules": [], "platform": "gitlab", "endpoint": "[REDACTED]/api/v4", "token": "***********", "autodiscover": true } DEBUG: Adding trailing slash to endpoint DEBUG: GitLab version is: 14.4.2-ee DEBUG: Using platform gitAuthor: renovateHave you created a minimal reproduction repository?