Changelog 7.3 KB

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