You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generate the 7.17.14 release notes and publish them before or on the release day, which is October 10, 2023.
Milestone dates:
FF: October 4, 2023
BC: October 6, 2023
Release: October 10, 2023
Steps
Create a new branch:
a. From the CLI, run git checkout 7.17 to checkout the 7.17 branch. Can also checkout the branch using GH Desktop.
b. Run git fetch origin to retrieve the latest version of the 7.17 branch.
c. Run git pull to pull down the latest changes in the main branch.
d. Run git checkout -b issue-XXX-7.17.14-rn to create a new local branch.
Open the Security docs project in your text editor (VS Code).
Expand the release-notes folder the open the 7.17.asciidoc file.
At the top of the file, create a new section for the 7.17.14 release notes, for example:
Open the release-notes.asciidoc file and insert a link to the 7.17.14 release notes, for example: <<release-notes-7.17.14, {elastic-sec} version 7.17.14>>
Save your changes.
Commit and push your changes. Can do all of this from GH Desktop or from the CLI. Steps for CLI:
a. Run git add --all to add changes from all tracked and untracked files.
b. Run git commit -m "A brief description of your change" to commit your changes.
c. Run git push to create a remote branch and push your changes it. If the branch doesn’t already exist in the remote repo, it is automatically created.
Open a PR in GH to start reviewing your changes. Remember to choose the 7.17 branch when specifying which branch the PR should be merged into. DO NOT merge the PR with main.
If you add the PR to the Endpoint feature/bug/known issue, use the hardcoded URL to create the reference link. Here is an example.
ResponseOps features for cases, connectors, and alerts are always doc'd in the Kibana release notes unless they are Security-specific features. This is also the case for Osquery feature and enhancements.
There is no need to add additional version labels to the PR. The PR will not need to be backported.
The text was updated successfully, but these errors were encountered:
Description
Generate the 7.17.14 release notes and publish them before or on the release day, which is October 10, 2023.
Milestone dates:
Steps
a. From the CLI, run
git checkout 7.17
to checkout the7.17
branch. Can also checkout the branch using GH Desktop.b. Run
git fetch origin
to retrieve the latest version of the7.17
branch.c. Run
git pull
to pull down the latest changes in themain
branch.d. Run
git checkout -b issue-XXX-7.17.14-rn
to create a new local branch.release-notes
folder the open the7.17.asciidoc
file.7.17.14
release notes, for example:release-notes.asciidoc
file and insert a link to the7.17.14
release notes, for example:<<release-notes-7.17.14, {elastic-sec} version 7.17.14>>
a. Run
git add --all
to add changes from all tracked and untracked files.b. Run
git commit -m "A brief description of your change"
to commit your changes.c. Run
git push
to create a remote branch and push your changes it. If the branch doesn’t already exist in the remote repo, it is automatically created.7.17
branch when specifying which branch the PR should be merged into. DO NOT merge the PR withmain
.Notes:
The text was updated successfully, but these errors were encountered: