-
Notifications
You must be signed in to change notification settings - Fork 119
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
Ignore deprecated release tag from manifests #647
Conversation
go.mod
Outdated
@@ -145,3 +145,5 @@ require ( | |||
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect | |||
sigs.k8s.io/yaml v1.2.0 // indirect | |||
) | |||
|
|||
replace github.com/elastic/package-spec v1.3.0 => github.com/jsoriano/package-spec v0.0.0-20220112095620-98e0d531845d |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change won't be included.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I understand that this PR is blocked on the other one: elastic/package-spec#256?
bc49663
to
5cf33c8
Compare
5cf33c8
to
b719f91
Compare
b719f91
to
0d43aab
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code changes LGTM, just left questions about dependent issues.
go.mod
Outdated
@@ -145,3 +145,5 @@ require ( | |||
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect | |||
sigs.k8s.io/yaml v1.2.0 // indirect | |||
) | |||
|
|||
replace github.com/elastic/package-spec v1.3.0 => github.com/jsoriano/package-spec v0.0.0-20220112095620-98e0d531845d |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I understand that this PR is blocked on the other one: elastic/package-spec#256?
@@ -19,9 +19,12 @@ import ( | |||
|
|||
// SearchOptions specify the query parameters without the package name for the search API | |||
type SearchOptions struct { | |||
Experimental bool `url:"experimental"` | |||
Prerelease bool `url:"prerelease"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
... oh, and on the EPR release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I think this will be the last piece to merge.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved, but considering the order of other pull requests :)
efa3531
to
35868ba
Compare
Testing with integrations repo in elastic/integrations#2651 |
6c6de82
to
21b91cb
Compare
Added changes to implement in @mtojek could you please take another look? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
/test |
Stop showing information about the release tag of packages, to be deprecated in elastic/package-spec#256.
Use the
prerelease
parameter when searching for packages, related to elastic/package-registry#785.Part of elastic/package-spec#225