From 83c1ebcc24820417b9d21862674a7c06f5418084 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Sun, 2 Nov 2025 12:32:29 -0300 Subject: [PATCH 1/3] bugfix: deshabilito los checks para la ejecucion de commandos para obtener tags --- git-flow | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-flow b/git-flow index 2b52804..085c9d8 100755 --- a/git-flow +++ b/git-flow @@ -327,7 +327,7 @@ def tag_command(): message = output[pos+1:] merged_branch = None - output = Git("describe", commit, tags=True, exact_match=True).firstline() + output = Git("describe", commit, tags=True, exact_match=True).without_checking().firstline() if output: print_error("El ultimo merge ya tiene tag: " + output) @@ -345,7 +345,7 @@ def tag_command(): remote = Git.flow_config("flow.remote").firstline() branch = Git.get_current_branch() - output = Git("describe", abbrev="0", tags=True).firstline() + output = Git("describe", abbrev="0", tags=True).without_checking().firstline() last_version = output if output else "v1.0.0" from_major = 1 until_dash = last_version.index("-") if "-" in last_version else None From ee8eb178f51691c2328a57ae9ce3b4781b8d2809 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Sun, 2 Nov 2025 12:34:18 -0300 Subject: [PATCH 2/3] bugfix: cambio imagen de python a la default de atlassian --- bitbucket-pipelines.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 9aa74a8..dd23e55 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -1,4 +1,3 @@ -image: python:3.12-slim-bookworm pipelines: branches: 'dev': From 42b1c28cb9d240ae56cfc382b864a90e1c8a05ae Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Sun, 2 Nov 2025 12:34:24 -0300 Subject: [PATCH 3/3] Updated CHANGELOG.md --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e917d81..8db57b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## Jonathan Teran Carballo (jonathan.nerat@gmail.com) - 02/11/2025 12:34 + +**bugfix/tag-command-checks** +- **bugfix**: cambio imagen de python a la default de atlassian (ee8eb17) + - bitbucket-pipelines.yml (M) +- **bugfix**: deshabilito los checks para la ejecucion de commandos para obtener tags (83c1ebc) + - git-flow (M) + +--- + ## Jonathan Teran Carballo (jonathan.nerat@gmail.com) - 02/11/2025 12:26 **feature/agregar-bitbucket-pipelines.yml**