-
Notifications
You must be signed in to change notification settings - Fork 24
docs: add docs for deprecating a feature #74
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -316,7 +316,7 @@ func (c *ProjectConfig) GetProjectDirPath() (string, error) { | |
| if _, err := c.fs.Stat(projectHooksJSONPath); os.IsNotExist(err) { | ||
|
|
||
| // Fallback check for slack.json and .slack/slack.json file | ||
| // TODO(semver:major): remove both fallbacks next major release | ||
| // DEPRECATED(semver:major): remove both fallbacks next major release | ||
|
Member
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. This is so much more obvious! 🙏 I find searches for Also, thanks for finding these instances in code!
Member
Author
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 agree, so far this makes assessing the effort involved in removing a deprecation a lot easier! |
||
| projectSlackJSONPath := filepath.Join(currentDir, "slack.json") | ||
| if _, err := c.fs.Stat(projectSlackJSONPath); err == nil { | ||
| return currentDir, nil | ||
|
|
||
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 be so helpful in moving to the next major versions! I am a big fan of this pattern, even if it causes noise after an update 📚 ✨