-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 44740d4
Showing
4 changed files
with
170 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Renovate Reproduction Repo | ||
|
||
Renovate might update an (poetry) update PR, instead of a proper | ||
rebase (taking again the newest pyproject.toml / poetry.lock file | ||
version as base), the update is redone on the previous branch version. | ||
|
||
However, it is still pushed with the newest branch version as parent. | ||
|
||
## Steps to reproduce | ||
|
||
1. Let renovate open a normal PR (e.g. boto3 update) | ||
2. Merge an indepenent change (upgrade idna in this case). | ||
3. Wait until a new version is released (no normal "rebase" must be triggered) | ||
4. Renovate updates the first PR, however, it is based on the old branch version | ||
and therefore reverts the change merged in the mean time. | ||
|
||
|
||
Concreate example: | ||
|
||
1. boto3 1.34.109 -> 1.34.112 PR is opened | ||
2. idna PR is opened | ||
3. idna PR is merged | ||
4. 1.34.113 is released | ||
5. boto3 PR updated boto3 1.34.113 (but "downgrades" idna). |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "msw" | ||
version = "1.1" | ||
description = "some project" | ||
authors = ["Myself <test@example.org>"] | ||
classifiers = ["Private :: Do Not Upload"] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10" | ||
idna = "==3.1" | ||
boto3 = "^1.34.109" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended", | ||
], | ||
} |