All Versions
23
Latest Version
Avg Release Cycle
66 days
Latest Release
-

Changelog History
Page 2

  • v2019.5.30 Changes

    May 30, 2019
    • โž• Add interactive property to session. (#196)
    • Promote contributors to maintainers, add Open Collective details. (#201)
    • ๐Ÿ›  Fix funding external link. (#200)
    • ๐Ÿ”จ Refactor how Nox defines and process options. (#187)
    • ๐Ÿ›  Fix typo in tutorial. (#194)
    • ๐Ÿ”ง Use 'pytest' instead of 'py.test' in examples and configuration. (#193)
    • ๐Ÿ›  Fix some CSS issues on mobile. (#192)
    • ๐Ÿ‘‰ Use short form of virtualenv path when creating the virtualenv. (#191)
    • ๐Ÿ“„ Refresh tutorial and fixup small docs things. (#190)
    • โž• Add the ability to give parametrized sessions a custom ID. (#186)
    • ๐Ÿ‘‰ Make --list list all available sessions, not just the selected ones. (#185)
    • ๐Ÿ‘ Allow providing a friendlier CLI name to sessions. (#170)
    • โž• Add urllib3 to the list of projects that use Nox (#182)
    • ๐Ÿ›  Fix documentation link for Docker Cloud vs Hub (#179)
  • v2019.4.11 Changes

    April 11, 2019
    • ๐Ÿ“š Include changelog in documentation. (#177)
    • ๐ŸŒฒ Use the relative path of the virtualenv in the "creating virtualenv" log message. (#176)
    • ๐Ÿ‘ Allow not passing "--upgrade" to session.install and change its default behavior to not upgrade. (#172)
    • Expand environment variables when loading the noxfile from provided path. (#171)
    • โž• Add documentation around using Docker to run Nox. (#164)
    • Don't colour output if NO_COLOR is set. (#163)
    • ๐Ÿ›  Fix tox casing to be consistent with their docs, remove .` from pytest. (#160)
    • โšก๏ธ Update issue templates.
    • Add CODE_OF_CONDUCT.md.
    • โž• Add --install-only flag to install dependencies without running anything (#153)
    • ๐Ÿ›  Fix function name in docs. (#155)
    • ๐Ÿ‘ Allow silent argument to be set in session.install. (#157)
    • โš™ Run sessions in the same order specified on the command line. (#152)
  • v2018.10.17 Changes

    October 17, 2018
    • ๐Ÿ›  Fix bug where empty parametrized sessions would fail. (#151)
  • v2018.10.15 Changes

    October 15, 2018
    • Hide the python interpreter on sessions with only one. (#148)
    • โš  Warn when programs not in the virtualenv are used, allow erroring and silencing the warning. (#147)
    • โž• Add --warn-on-external-run flag and the "external" keyword arg to session.run. (#147)
    • โž• Add nox.options which allows specifying command-line configuration in the Noxfile (#145)
    • โž• Add python_requires (>= 3.5) to setup.py.
  • v2018.10.9 Changes

    October 10, 2018

    ๐Ÿ’ฅ Breaking changes:

    • โš  Skip sessions with missing interpreters. Previously, missing interpreters would cause a failed session. Now they just cause a warning. The previous behavior can be used via --error-on-missing-interpreters. (#140)

    ๐Ÿ†• New features:

    • โž• Add session.python property.

    Other changes:

    • ๐Ÿ›  Fix some warnings about escape sequences.
    • ๐Ÿ’ป Group command line args by usage for readability.
    • Blacklist more Tox env vars in nox-to-tox.
    • ๐Ÿ“š Documentation fixes, spelling, etc. (#134)
    • Mention stickers in the contributors guide.
    • Mention Invoke as a Nox alternative.
  • v2018.9.14 Changes

    September 14, 2018
    • Check for NOXSESSION environment variable (#121)
    • ๐Ÿ›  Fix typo in OpenCensus Python (#132)
    • โž• Add new documentation art created by Andrea Caprotti
    • โž• Add Python 3.7 to Travis CI (#129)
  • v2018.8.28 Changes

    August 28, 2018

    ๐Ÿ›  Bugfixes:

    • Adding Session. __slots__. (#128)
    • Don't modify Virtualenv.interpreter in _resolved_interpreter. (#127)
    • ๐Ÿ›  Fix tox-to-nox template.
    • โž• Add the ability to add descriptions to sessions. (#117)
    • Using more specific regex in _resolved_interpreter(). (#119)

    ๐Ÿ†• New features:

    • โž• Adding support for 32-bit binaries on Windows. (#100)

    โœ… Internal/testing changes:

    • Storing platform.system() as global in nox.virtualenv. (#124)
    • ๐Ÿ›  Fix deploy script for Travis.
    • ๐Ÿ“„ Run docs on travis. (#122)
    • ๐Ÿ“š Documentation style updates.
  • v2018.8.23 Changes

    August 24, 2018

    Heads up! This is a very big release for Nox. Please read these release notes thoroughly and reach out to us on GitHub if you run into issues.

    ๐Ÿ’ฅ Breaking changes and other important notes:

    • ๐Ÿš€ Nox is now published as "nox" on PyPI. This means that Nox is installed via pip install nox instead of nox-automation. Since the new release makes so many breaking changes, we won't be updating the old nox-automation package.
    • ๐Ÿ”ง Nox's configuration file is now called noxfile.py instead of nox.py.
    • ๐Ÿ‘ Nox no longer supports Python 2.7. You can still create and run Python 2.7 sessions, but Nox itself must be installed using Python 3.5+.
    • Nox's behavior has been changed from declarative to imperative. Session actions now run immediately. Existing code to setup session virtualenv, such as session.interpreter will break! Please consult the documention on how to use @nox.session(python=[...]) to configure virtualenvs for sessions.
    • ๐Ÿš€ Nox now uses CalVer for releases.
    • ๐Ÿ‘Œ Support for the legacy naming convention (for example, session_tests) has been removed.

    Other changes:

    • โšก๏ธ Update colorlog dependency range.
    • โšก๏ธ Update installation command in contributing. (#101)
    • โœ‚ Remove Python 2.x object inheritance. (#109)
    • ๐Ÿ›  Fix python syntax error on docs. (#111)
    • ๐Ÿ‘‰ Show additional links on PyPI. (#108)
    • โž• Add contributors file. (#113)
    • โš™ Run sphinx with -W option. (#115)
    • Using os.pathsep instead of a hardcoded ':'. (#105)
    • ๐Ÿ”ง Use a configuration file for readthedocs. (#107)
    • โž• Add 'py' alias for nox.session(python=...).
    • ๐Ÿ›  Fix processing of numeric Python versions that specify a patch version.
    • ๐Ÿ‘‰ Use Black to format code.
    • ๐Ÿ‘Œ Support invoking Nox using python -m nox.
    • ๐Ÿ‘ Produce better error message when sessions can't be found.
    • ๐Ÿ›  Fix missing links in README.rst.
    • โœ‚ Remove usage of future imports.
    • โœ‚ Remove usage of six.
    • ๐Ÿ‘‰ Make session.install a simple alias for session.run.
    • ๐Ÿ”จ Refactor nox.command.Command as nox.command.run, reducing complexity.
    • โž• Add list of projects that use Nox.
    • ๐Ÿ‘‰ Use witchhazel pygments theme.
  • v0.19.1 Changes

    Note:: v0.19.1 was the last version released as "nox-automation" on PyPI. Subsequent releases are published as "nox".

    • โšก๏ธ Updates copyright information and contact addresses. No code changes.
  • v0.19.0 Changes

    • โž• Add missing parameter in docs (#89)
    • Don't skip install commands when re-using existing virtualenvs. (#86)
    • โž• Add --nocolor and --forcecolor options (#85)
    • โœ… Simulating unittest.mock backport in the Python 2 standard library. (#81)
    • ๐Ÿ›  Fixing tox-to-nox docs reference. (#80)
    • Removing patch of py.exe on AppVeyor. (#74)
    • โž• Adding Python 3.6 to AppVeyor. (#69)
    • โž• Adding AppVeyor badge to README. (#70)