-
Notifications
You must be signed in to change notification settings - Fork 89
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
Updates source code for ownership change #279
Conversation
4241d4c
to
e4c213a
Compare
fd6d216
to
6ac388a
Compare
c94576c
to
a0029fb
Compare
Signed-off-by: Jean du Plessis <[email protected]>
a0029fb
to
ba13938
Compare
@ulucinar @sergenyalcin, as maintainers of the project, please indicate your acceptance of this code ownership change. |
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.
Thanks @jeanduplessis LGTM! I left a few nit comments.
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.
There are some yaml formatting in this file. But I think it will not affect the functionality.
|
||
go 1.20 | ||
|
||
require ( | ||
dario.cat/mergo v1.0.0 | ||
github.com/antchfx/htmlquery v1.2.4 | ||
github.com/crossplane/crossplane v1.10.0 | ||
github.com/crossplane/crossplane-runtime v0.20.0 | ||
github.com/crossplane/crossplane v1.13.2 |
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.
It seems that our crossplane dependencies are a bit old and updating them make sense to me. However, while switching to new architecture, protecting the versions may also be considered. What are your thoughts @jeanduplessis @ulucinar
@@ -18,7 +22,7 @@ func FilterDescription(description, keyword string) string { | |||
} | |||
} | |||
if len(result) == 0 { | |||
return strings.ReplaceAll(strings.ToLower(description), keyword, "Upbound official provider") | |||
return strings.ReplaceAll(strings.ToLower(description), keyword, "provider") |
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.
nit:
return strings.ReplaceAll(strings.ToLower(description), keyword, "provider") | |
return strings.ReplaceAll(strings.ToLower(description), keyword, "crossplane provider") |
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.
Thanks @jeanduplessis, lgtm.
Description of your changes
This PR prepares the repo for ownership transfer to github.com/crossplane
Project name: Upjet
Destination repo: crossplane/upjet
CI/CD pipeline: Does not depend on Upbound specific code or infrastructure
Preparation tasks
I have:
make reviewable
to ensure this PR is ready for review.backport release-x.y
labels to auto-backport this PR if necessary.How has this code been tested