Changelog 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. # Version 0.11.0 (2022-06-25)
  2. * Output synchronization (separation of output from parallel running targets)
  3. can be configured via the `MAKEFILET_OUTPUT_SYNCHRONIZATION` variable.
  4. Its value is handed over to `make`'s `--output-sync` argument.
  5. Typical values are `line` (default), `target` or `none`.
  6. # Version 0.10.0 (2021-10-31)
  7. * shell:
  8. * allow overriding of all variables
  9. * replace "SHELLCHECK_CALL" with "SHELLCHECK_ARGS"
  10. * introduce new variable SHELL_FILES_DIRECTORIES (default: ".")
  11. # Version 0.9.1 (2021-10-27)
  12. * release: handle VERSION indicator files nested below the project root
  13. (closes: #35)
  14. # Version 0.9.0 (2021-10-27)
  15. * ensure that changes in release-related files for npm
  16. (e.g. `package.json`) are committed via git
  17. * python:
  18. * allow disabling of flake8 lint checks via `DISABLE_PYTHON_FLAKE8=1`
  19. * allow override of files/directories used for flake8
  20. * add linting via black (can be disabled via `DISABLE_PYTHON_BLACK=1`)
  21. * add automatic formatting via black (`make style`)
  22. # Version 0.8.0 (2021-10-26)
  23. * allow selection of alternative download locations via
  24. `MAKEFILET_DOWNLOAD_URL_TEMPLATE` or `MAKEFILET_DOWNLOAD_URL`
  25. # Version 0.7.3 (2021-02-22)
  26. * fix detection of outdated makefilet version
  27. # Version 0.7.2 (2021-02-01)
  28. * fix determination of `shellcheck` path
  29. # Version 0.7.1 (2021-01-13)
  30. * fix detection of outdated makefilet version
  31. # Version 0.7.0 (2021-01-09)
  32. * python:
  33. * force removal of old "foo.egg-info/SOURCES.txt" during "clean-python"
  34. This is a workaround for https://github.com/pypa/setuptools/issues/436.
  35. (closes: #33)
  36. * python support (e.g. for venv) may be forced via MAKEFILET_ENABLE_PYTHON=1
  37. (closes: #23)
  38. * pypi2deb:
  39. * allow version specification for packages
  40. (closes: #26)
  41. * allow to run without a local debian/changelog file
  42. (closes: #25)
  43. * release:
  44. * add support for npm-based release
  45. (closes: #21)
  46. * shell:
  47. * do not disable shell-related checks by default
  48. Shell-related testing and linting can be disabled via DISABLE_SHELL_CHECK=1.
  49. * warn if shellcheck is missing
  50. * rename "test-shell" to "lint-shell"
  51. * automatically run jobs in parallel (if "-j X" is not specified)
  52. (closes: #29)
  53. * warn if the currently active version of makefilet is older than the version
  54. requested via MAKEFILET_DOWNLOAD_VERSION
  55. This may happen if makefilet is installed system-wide.
  56. (closes: #27)
  57. # Version 0.6.8 (2020-11-10)
  58. * python:
  59. * do not try to install virtualenv pre-dependencies which
  60. are part of the standard library
  61. # Version 0.6.7 (2020-11-10)
  62. * release:
  63. * tolerate untracked files during release
  64. * python:
  65. * ensure VIRTUALENV_PREDEPENDENCIES being available inside
  66. the virtualenv
  67. # Version 0.6.6 (2020-08-13)
  68. * python:
  69. * fix handling of "DISABLE_PYTHON_TESTS"
  70. # Version 0.6.5 (2020-08-12)
  71. * deb:
  72. * "test-deb" (and thus "test") does not depend on "lint-deb"
  73. anymore
  74. # Version 0.6.4 (2020-07-18)
  75. * python:
  76. * do not automatically upgrade the packages installed in the
  77. virtualenv
  78. # Version 0.6.3 (2020-07-14)
  79. * python:
  80. * finally fix the recursive virtualenv handling
  81. # Version 0.6.2 (2020-07-14)
  82. * python:
  83. * fix recursive virtualenv handling
  84. # Version 0.6.1 (2020-07-13)
  85. * python:
  86. * detect an active virtual environment and avoid entering
  87. it again
  88. # Version 0.6.0 (2020-07-13)
  89. * python:
  90. * add optional VIRTUALENV_PREDEPENDENCIES variable for
  91. emitting helpful warnings in case of missing build
  92. pre-dependencies
  93. # Version 0.5.5 (2020-06-24)
  94. * release:
  95. * add support for Makefile located in a subdirectory of
  96. a git repository
  97. # Version 0.5.4 (2020-01-09)
  98. * release:
  99. * avoid warning in case of empty BUMP_VERSION_COMMIT_FILES
  100. * handle more than three version number parts gracefully
  101. * download-ondemand:
  102. * do not hide wget error messages
  103. * makefile:
  104. * avoid accessing undefined variables
  105. * python:
  106. * fix coverage report visualization
  107. # Version 0.5.3 (2019-03-16)
  108. * release:
  109. * specify PROJECT_NAME for directory name in release tarball
  110. # Version 0.5.2 (2019-03-12)
  111. * deb:
  112. * allow override of dput call in `deb-upload` target with
  113. DEB_UPLOAD_COMMAND variable
  114. # Version 0.5.1 (2019-02-26)
  115. * fix virtualenv-related dependencies (e.g. for tests)
  116. # Version 0.5.0 (2019-02-25)
  117. * new component "python-django"
  118. * execute django-related check in "virtualenv-check" only for django projects
  119. # Version 0.4.0 (2019-02-25)
  120. * download-ondemand:
  121. * fix portability issue for *BSD
  122. * new component "python-virtualenv"
  123. * python:
  124. * "clean" depends on "clean-python"
  125. * allow disabling of tests explicitly via DISABLE_PYTHON_TESTS=1
  126. # Version 0.3.0 (2019-02-10)
  127. * deb:
  128. * suppress error messages in case of optional missing executables
  129. (e.g. dpkg-architecture)
  130. * allow arguments for lintian (see LINTIAN_ARGS)
  131. * release:
  132. * allow the filename of the bumpversion configuration to be overridden
  133. (BUMP_VERSION_CONFIG)
  134. * explicitly collect the list of files to be committed during
  135. "make release-*" (see BUMP_VERSION_FILES)
  136. * allow "BUMP_VERSION_FILES" to be overridden
  137. * fail if a file listed in "BUMP_VERSION_FILES" is missing
  138. * add "release-tar" and "release-tar-sign" targets
  139. * python:
  140. * fix execution of coverage within a virtualenv
  141. (missing python3-coverage)
  142. * allow override of test execution within a coverage run
  143. (via PYTHON_TEST_ARGS)
  144. * automatically run unittests
  145. (finishing without errors if no tests are found)
  146. * open the coverage report in a browser
  147. (only within a desktop session and if "xdg-open" is available)
  148. * fix dependency of "lint-python"
  149. (now attached to "lint" instead of "test")
  150. * new component "generic":
  151. * generate "tags" file via "ctags"
  152. * shell:
  153. * hide the shellcheck command
  154. (reducing noise in case of long lists of files)
  155. # Version 0.2.10 (2018-12-11)
  156. * release:
  157. * fix broken handling of "make release-undo" (introduced in 0.2.9)
  158. # Version 0.2.9 (2017-12-21)
  159. * release:
  160. * handle missing file ".bumpversion" gracefully
  161. * improved error message if VERSION file is missing
  162. # Version 0.2.8 (2017-11-19)
  163. * pypi2deb:
  164. * allow package-specific environment settings
  165. * improve failure detection
  166. * release: prevent successive (accidental) release commits
  167. * populate "Suggests" of deb package
  168. * documentation fixes
  169. # Version 0.2.7 (2017-08-27)
  170. * fixed recently introduced 'clean' operation
  171. # Version 0.2.6 (2017-08-27)
  172. * remove downloaded makefilet directory during 'clean'
  173. # Version 0.2.5 (2017-05-10)
  174. * fix 'install-python' due to bad 'DESTDIR' handling
  175. # Version 0.2.4 (2017-05-09)
  176. * fix path handling of 'check-dput-config' target for 'upload-deb'
  177. # Version 0.2.3 (2017-05-06)
  178. * tolerate errors in 'clean' targets
  179. * hide misleading error message for missing 'dh_listpackages' (from 'debhelper')
  180. # Version 0.2.2 (2017-05-02)
  181. * allow configurable parameters for 'install-python'
  182. * introduce the new target 'lint' for style checks
  183. * move 'flake8' check from 'test-python' to 'lint-python'
  184. # Version 0.2.1 (2017-04-29)
  185. * add minimal makefile snippet for 'download on-demand' integration into projects
  186. # Version 0.2 (2017-04-29)
  187. * calling 'flake8' on more platforms properly
  188. * deb packaging:
  189. * add 'init-deb' target (calls 'dh_make')
  190. * add deb packaging information for makefile itself (#2)
  191. * add 'test-deb' for lintian tests
  192. * allow quilt-based source format for repositories without submodules
  193. # Version 0.1 (2017-04-24)
  194. * Initial release
  195. * basic support for deb packaging, python, bumpversion, pypi2deb and shell scripts