-
Notifications
You must be signed in to change notification settings - Fork 38
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: release APIs and Operator independently #541
Merged
toddbaert
merged 15 commits into
open-feature:main
from
thisthat:poc-release-multi-artifacts
Nov 15, 2023
Merged
Changes from 10 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
01c15a4
track API package release independently
thisthat 4035e59
Merge pull request #1 from thisthat/poc-release-multi-artifact
thisthat d888658
add debug info
thisthat a7ae90a
add debug info
thisthat 0d6f0cb
add shell default
thisthat b9bc19d
Merge pull request #4 from thisthat/poc-release-multi-artifact
thisthat b19d30f
bump minor
thisthat 1d464bb
Merge pull request #5 from thisthat/poc-release-multi-artifact
thisthat 2b530e4
add tags
thisthat 2efb990
add tag separator
thisthat b9f0ba6
create new APIS package
thisthat 955fa41
use local pkg replace
thisthat 6d6a647
pin dependency on same versions
thisthat 45b098d
pin dependency on same versions
thisthat a31fb4d
use local replace
thisthat File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
".": "0.2.36" | ||
".": "0.2.36", | ||
"apis": "0.2.36" | ||
} |
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 |
---|---|---|
@@ -1,11 +1,28 @@ | ||
{ | ||
"bootstrap-sha": "7d099c7b72f9a7430581696218458eaee31fb0df", | ||
"separate-pull-requests": true, | ||
"pull-request-title-pattern": "chore: release${component} ${version}", | ||
"last-release-sha": "e5445ae5f41c29a5a62503438d86dcddf2c59617", | ||
"tag-separator": "/", | ||
"packages": { | ||
"apis": { | ||
"release-type": "go", | ||
"package-name": "apis", | ||
"draft": false, | ||
"prerelease": false, | ||
"bump-minor-pre-major": true, | ||
"bump-patch-for-minor-pre-major": true, | ||
"extra-files": [] | ||
}, | ||
".": { | ||
"release-type": "go", | ||
"package-name": "operator", | ||
"draft": false, | ||
"prerelease": false, | ||
"bump-minor-pre-major": true, | ||
"bump-patch-for-minor-pre-major": true, | ||
"exclude-paths": [ | ||
"apis" | ||
], | ||
Comment on lines
+23
to
+25
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't know this was an option. |
||
"extra-files": [ | ||
"README.md", | ||
"chart/open-feature-operator/Chart.yaml", | ||
|
@@ -14,62 +31,62 @@ | |
"Makefile", | ||
"docs/quick_start.md", | ||
"docs/installation.md" | ||
], | ||
"changelog-sections": [ | ||
{ | ||
"type": "feat", | ||
"section": "✨ New Features" | ||
}, | ||
{ | ||
"type": "fix", | ||
"section": "🐛 Bug Fixes" | ||
}, | ||
{ | ||
"type": "chore", | ||
"section": "🧹 Chore" | ||
}, | ||
{ | ||
"type": "docs", | ||
"section": "📚 Documentation" | ||
}, | ||
{ | ||
"type": "perf", | ||
"section": "🚀 Performance" | ||
}, | ||
{ | ||
"type": "build", | ||
"hidden": true, | ||
"section": "🛠️ Build" | ||
}, | ||
{ | ||
"type": "deps", | ||
"section": "📦 Dependencies" | ||
}, | ||
{ | ||
"type": "ci", | ||
"hidden": true, | ||
"section": "🚦 CI" | ||
}, | ||
{ | ||
"type": "refactor", | ||
"section": "🔄 Refactoring" | ||
}, | ||
{ | ||
"type": "revert", | ||
"section": "🔙 Reverts" | ||
}, | ||
{ | ||
"type": "style", | ||
"hidden": true, | ||
"section": "🎨 Styling" | ||
}, | ||
{ | ||
"type": "test", | ||
"hidden": true, | ||
"section": "🧪 Tests" | ||
} | ||
] | ||
} | ||
}, | ||
"changelog-sections": [ | ||
{ | ||
"type": "feat", | ||
"section": "✨ New Features" | ||
}, | ||
{ | ||
"type": "fix", | ||
"section": "🐛 Bug Fixes" | ||
}, | ||
{ | ||
"type": "chore", | ||
"section": "🧹 Chore" | ||
}, | ||
{ | ||
"type": "docs", | ||
"section": "📚 Documentation" | ||
}, | ||
{ | ||
"type": "perf", | ||
"section": "🚀 Performance" | ||
}, | ||
{ | ||
"type": "build", | ||
"hidden": true, | ||
"section": "🛠️ Build" | ||
}, | ||
{ | ||
"type": "deps", | ||
"section": "📦 Dependencies" | ||
}, | ||
{ | ||
"type": "ci", | ||
"hidden": true, | ||
"section": "🚦 CI" | ||
}, | ||
{ | ||
"type": "refactor", | ||
"section": "🔄 Refactoring" | ||
}, | ||
{ | ||
"type": "revert", | ||
"section": "🔙 Reverts" | ||
}, | ||
{ | ||
"type": "style", | ||
"hidden": true, | ||
"section": "🎨 Styling" | ||
}, | ||
{ | ||
"type": "test", | ||
"hidden": true, | ||
"section": "🧪 Tests" | ||
} | ||
], | ||
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
we should decide what should be the first version of the APIs package.
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 think same version as the current package makes sense...?
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 will slightly change how the release process works. @toddbaert and I have dealt with this enough times that it shouldn't be an issue here.