mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Separate the chrome extension changelog (#18080)
Separating the chrome extension changelog. --------- Co-authored-by: Lucas Manuel Rodriguez <lucas@fleetdm.com>
This commit is contained in:
parent
bcba0efd55
commit
b3c2e25794
3 changed files with 7 additions and 1 deletions
2
.github/pull_request_template.md
vendored
2
.github/pull_request_template.md
vendored
|
|
@ -4,7 +4,7 @@ If some of the following don't apply, delete the relevant line.
|
|||
|
||||
<!-- Note that API documentation changes are now addressed by the product design team. -->
|
||||
|
||||
- [ ] Changes file added for user-visible changes in `changes/` or `orbit/changes/`.
|
||||
- [ ] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`.
|
||||
See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information.
|
||||
- [ ] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements)
|
||||
- [ ] Added support on fleet's osquery simulator `cmd/osquery-perf` for new osquery data ingestion features.
|
||||
|
|
|
|||
5
Makefile
5
Makefile
|
|
@ -324,6 +324,11 @@ changelog-orbit:
|
|||
sh -c "cat new-CHANGELOG.md orbit/CHANGELOG.md > tmp-CHANGELOG.md && rm new-CHANGELOG.md && mv tmp-CHANGELOG.md orbit/CHANGELOG.md"
|
||||
sh -c "git rm orbit/changes/*"
|
||||
|
||||
changelog-chrome:
|
||||
sh -c "find ee/fleetd-chrome/changes -type file | grep -v .keep | xargs -I {} sh -c 'grep \"\S\" {}; echo' > new-CHANGELOG.md"
|
||||
sh -c "cat new-CHANGELOG.md ee/fleetd-chrome/CHANGELOG.md > tmp-CHANGELOG.md && rm new-CHANGELOG.md && mv tmp-CHANGELOG.md ee/fleetd-chrome/CHANGELOG.md"
|
||||
sh -c "git rm ee/fleetd-chrome/changes/*"
|
||||
|
||||
# Updates the documentation for the currently released versions of fleetd components in Fleet's TUF.
|
||||
fleetd-tuf:
|
||||
sh -c 'echo "<!-- DO NOT EDIT. This document is automatically generated by running \`make fleetd-tuf\`. -->\n# tuf.fleetctl.com\n\nFollowing are the currently deployed versions of fleetd components on the \`stable\` and \`edge\` channel.\n" > orbit/TUF.md'
|
||||
|
|
|
|||
1
ee/fleetd-chrome/changes/.keep
Normal file
1
ee/fleetd-chrome/changes/.keep
Normal file
|
|
@ -0,0 +1 @@
|
|||
IGNORE BUT DO NOT REMOVE. THIS IS HERE SO THAT THE DIRECTORY REMAINS
|
||||
Loading…
Reference in a new issue