summaryrefslogtreecommitdiffstats
path: root/HISTORICAL_CHANGELOG.md
AgeCommit message (Collapse)Author
2020-01-15multiple files: fix typos (#7752)Lucas Gabriel Schneider
2019-08-15Fix Markdown Lint warnings (#6664)Promise Akpan
* make remark access all directories * detailed fix after autofix by remark lint * cross check autofix for this set of files * crosscheck more files * crosschecking and small fixes * crosscheck autofixed md files
2018-11-21Wiki Link Updates (#4699)Chris Akritidis
##### Summary <!--- Describe the change below, including rationale and design decisions --> Replaces links to wiki pages with links to the respective markdown files in the repo. The files with the updates in this PR are not MD files. Fixes #4650 <!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue --> ##### Component Name <!--- Write the short name of the module or plugin below --> ##### Additional Information <!--- Include additional information to help people understand the change here --> <!--- A step-by-step reproduction of the problem is helpful if there is no related issue --> <!--- Paste log output below, e.g. before and after your change --> ```paste below ```
2018-11-08Update links to badges documentation. (#4588)Eric Bakken
2018-10-22add autogenerated changelog (#4444)Paweł Krupa
##### Summary <!--- Describe the change below, including rationale and design decisions --> Create changelog based on GitHub labels <!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue --> ##### Component Name <!--- Write the short name of the module or plugin below --> GitHub management ##### Additional Information <!--- Include additional information to help people understand the change here --> <!--- A step-by-step reproduction of the problem is helpful if there is no related issue --> Moving old manually created changelog to HISTORICAL_CHANGELOG.md and using command below to create changelog based on github issues, PRs, and labels. This is a preview and in the near future this will be automated and running daily in cron. <!--- Paste log output below, e.g. before and after your change --> ```sh docker run -it -v "$(pwd)":/project markmandel/github-changelog-generator:latest \ --user "netdata" \ --project "netdata" \ --token "${GITHUB_TOKEN}" \ --since-tag "v1.10.0" \ --unreleased-label "**Next release**" \ --no-compare-link \ --exclude-labels duplicate,question,invalid,wontfix,discussion,documentation ```