Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Changelog support for pipeline templates (HEXA-1166) #907

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
bbdcdc0
Rename
YolanFery Jan 14, 2025
120e398
Revert "Rename"
YolanFery Jan 14, 2025
b7c7b77
v1
YolanFery Jan 14, 2025
b8cac96
Merge
YolanFery Jan 17, 2025
8374053
Better signature
YolanFery Jan 17, 2025
27e3abd
rename
YolanFery Jan 17, 2025
a825f6c
rename id to pipeline_id
YolanFery Jan 17, 2025
a15b027
rename id to pipeline_id
YolanFery Jan 17, 2025
793761e
permissions
YolanFery Jan 17, 2025
b69c1cb
Abstraction
YolanFery Jan 17, 2025
241eec5
Name
YolanFery Jan 17, 2025
4b80db8
Model
YolanFery Jan 17, 2025
d1bc317
Schema
YolanFery Jan 17, 2025
1dc7904
new_template_versions
YolanFery Jan 18, 2025
7861fc1
tets model
YolanFery Jan 18, 2025
0203ed5
Add changelog to schema
YolanFery Jan 18, 2025
78a3cc5
Fix snake case
YolanFery Jan 18, 2025
9349431
Correct order
YolanFery Jan 18, 2025
368fd1d
Merge remote-tracking branch 'origin/main' into HEXA-1166-changelog-f…
YolanFery Jan 20, 2025
894c2df
Fix linter and tests
YolanFery Jan 20, 2025
cb86b3a
Fix case when no version
YolanFery Jan 21, 2025
04ff6af
Merge remote-tracking branch 'origin/main' into HEXA-1166-changelog-f…
YolanFery Jan 24, 2025
32ec823
Merge
YolanFery Jan 24, 2025
4bb752e
Move to pipeline_templates
YolanFery Jan 24, 2025
052ccc8
Nitpick
YolanFery Jan 24, 2025
c1b4f50
Refactor schema
YolanFery Jan 24, 2025
6435b97
Fix tests
YolanFery Jan 24, 2025
a05ac5e
Endpoint
YolanFery Jan 29, 2025
3d23600
Merge remote-tracking branch 'origin/main' into HEXA-1166-changelog-f…
YolanFery Jan 29, 2025
d433f8b
Fix test
YolanFery Jan 29, 2025
320e0c5
Fix test
YolanFery Jan 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix snake case
  • Loading branch information
YolanFery committed Jan 18, 2025
commit 78a3cc543529b515e1fa5237cfc15c43a3d9a3c6
2 changes: 1 addition & 1 deletion hexa/pipelines/schema/queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def resolve_available_pipeline_versions(_, info, **kwargs):
request: HttpRequest = info.context["request"]
try:
pipeline = Pipeline.objects.filter_for_user(request.user).get(
id=kwargs["pipelineId"]
id=kwargs["pipeline_id"]
)
except Pipeline.DoesNotExist:
return []
Expand Down