diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b35b2e984..1b47388d3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,33 @@ conda-smithy Change Log .. current developments +v3.34.1 +==================== + +**Removed:** + +* ``false`` is no longer a valid value for ``bot.inspection`` in the ``conda-forge.yml`` file. Use ``disabled`` instead. + +**Fixed:** + +* ``object`` is no longer an explicit base class of ``Subcommand`` (Python 3 class style) +* replace ``logger.warn`` (deprecated) with ``logger.warning`` +* typo: `Usage` in ``update_conda_forge_config`` +* Unexpected top-level ``conda-forge.yml`` keys should no longer fail with a traceback. + +**Security:** + +* Use sandboxed jinja2 environments. (#1902) + +**Authors:** + +* Matthew R. Becker +* pre-commit-ci[bot] +* Nicholas Bollweg +* Yannik Tausch + + + v3.34.0 ==================== diff --git a/news/1892-drop-support-inspection-false.rst b/news/1892-drop-support-inspection-false.rst deleted file mode 100644 index 110e3a5cf..000000000 --- a/news/1892-drop-support-inspection-false.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* ``false`` is no longer a valid value for ``bot.inspection`` in the ``conda-forge.yml`` file. Use ``disabled`` instead. - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/1897-small-fixes.rst b/news/1897-small-fixes.rst deleted file mode 100644 index 30973740c..000000000 --- a/news/1897-small-fixes.rst +++ /dev/null @@ -1,25 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* ``object`` is no longer an explicit base class of ``Subcommand`` (Python 3 class style) -* replace ``logger.warn`` (deprecated) with ``logger.warning`` -* typo: `Usage` in ``update_conda_forge_config`` - -**Security:** - -* diff --git a/news/gh-1895-top-level-error.rst b/news/gh-1895-top-level-error.rst deleted file mode 100644 index 47c051dbb..000000000 --- a/news/gh-1895-top-level-error.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Unexpected top-level ``conda-forge.yml`` keys should no longer fail with a traceback. - -**Security:** - -* diff --git a/news/jinja2-sandbox.rst b/news/jinja2-sandbox.rst deleted file mode 100644 index 658e7f5be..000000000 --- a/news/jinja2-sandbox.rst +++ /dev/null @@ -1,3 +0,0 @@ -**Security:** - -* Use sandboxed jinja2 environments. (#1902)