Releases: enthought/envisage
Envisage 7.0.4
This is a bugfix release.
Fixes
- Fix a situation where preferences were incorrectly written by
thePreferencesPanebefore changes were approved. (#583) - Add a name attribute to the
EventManagerPlugin. (#571)
Build
- Update copyright header end years for 2024, 2025. (#572, #589)
- Add dependendabot config for GitHub Actions; bump individual
actions to their latest versions. (#573, #575, #576, #577, #579, #581, #588) - Remove Slack notifications, which were using an outdated
and unmaintained GitHub Action. (#580) - Require apptools 5.3 or later and Python 3.8 or later. (#584)
- Update black to version 24.3.0 to address a ReDoS
vulnerability in earlier versions. (#585)
Tests
- Remove skip decorator on some PySide6-related tests. (#587)
Documentation
- Remove the
sphinx.ext.githubpagesextension. (#566)
Envisage 7.0.3
This is a bugfix release that fixes the automated documentation build
for releases.
Fixes
- Fix the GitHub Actions workflow for automated documentation updates
on releases. (#568)
Envisage 7.0.2
This is a bugfix release that fixes some test interaction issues and
automates the documentation build.
Fixes
- Fix test-ordering issues with egg-based tests that modify
pkg_resources
global state. (#564)
Documentation
- Reorganise the gh-pages documentation. The main gh-pages page
(https://docs.enthought.com/envisage) now matches the contents of the GitHub
mainbranch, while subdirectories (e.g.,
https://docs.enthought.com/envisage/7.0) provide documentation for released
versions. A 'latest' symlink is in place, so
https://docs.enthought.com/envisage/latest will bring up the documentation
for the latest release. (#565)
Build
- Add GitHub Actions workflows to automate documentation updates. The main
documentation is updated on every push tomain, while the release
documentation is updated on each GitHub release creation. (#565)
Envisage 7.0.1
Envisage 7.0.0
This is a major release aimed at modernization and cleanup of some out-of-date
code. In particular, this release removes the IPython-related plugins, and
drops support for Python 3.6.
Thanks to:
- Mark Dickinson
- Chengyu Liu
- Corran Webster
Features
- There's a new
unbind_extension_pointfunction that reverses the effects
ofbind_extension_point. This can be useful for clean teardown. (#546) - All id string constants that were previously available from
envisage.ids
are now also exported inenvisage.api. Users are encouraged to import
everything they need fromenvisage.api, and to open an issue if anything
they need is not exported inenvisage.api. (#508)
Changes
- When exiting a
TasksApplication, the plugins are now stopped after
exiting the event loop. Previously they were stopped while the event loop was
still running, causing some lifecycle issues. (#524) - The
extension_registryargument tobind_extension_pointis no
longer optional, andExtensionPointBindingwill no longer look for
an extension registry on theExtensionPointclass. (#545) - Operations that used to raise
SystemErrornow raise something more
appropriate. In particular, thePluginManager.start_pluginand
PluginManager.stop_pluginmethods now raiseValueErrorrather
thanSystemErrorwhen given an invalid plugin id. (#529) envisage.__version__is no longer defined. If you need the Envisage
version at runtime, useimportlib.metadatato retrieve it. (#513)- Python 3.6 is no longer supported. All current versions of Python (3.7
through 3.11) are supported. (#513)
Fixes
- The
reprof aPlugininstance now correctly uses the name of the
plugin class. (#535)
Deprecations
- The
EggPluginManager,EggBasketPluginManagerand
PackagePluginManagerare deprecated, and will be removed in Envisage 8.0.
(#540) - The
includeandexcludetraits on thePluginManagerare
deprecated, and will be removed in Envisage 8.0. (#544)
Removals
- Plugins and machinery related to IPython have been removed. Specifically,
theIPythonKernelPluginandIPythonKernelUIPluginplugins have been
removed, along with supporting classesInternalIPKerneland
IPKernelApp. (#496) - The
ExtensionPoint.bindmethod has been removed. (#545) - The previously deprecated
safeweakref.refclass has been removed. (#522) - Some legacy unmaintained examples have been removed. (#557)
Documentation
- The changelog is now included in the built documentation. (#550)
Tests
- Old-style namespace packages used for testing have been replaced with
normal non-namespace packages. This fixes some warnings from the latest
setuptools. (#543) - The test suite now runs cleanly under
pytest. (#539) - Tests that are skipped due to a PySide6 problem should now be run
if the version of PySide6 is recent enough. (#554)
Build
- Package configuration now uses
pyproject.tomlin place of the old
setup.py-based configuration. (#513) - Optional dependencies are no longer declared. (#513)
- A new style-checking workflow has been added that runs
black,isort
andflake8over the codebase, and new code is expected to comply with
blackandisortconfigurations. (#549) - A new documentation-build workflow has been added. The built documentation
is uploaded as an artifact. (#551)
Envisage 6.1.1
This is a bugfix release that fixes an incompatibility between the workbench code and the latest Traits version, among other minor fixes.
Thanks to:
- Mark Dickinson
- Prabhu Ramachandran
- Scott Talbert
Fixes
- A trait validation error in the Workbench
DefaultActionSethas been fixed. This fixes a compatibility issue with Traits 6.4. (#485) - Initialization of application directories now correctly respects the value of
self.state_location. (#490) - In the test suite, egg generation now uses
sys.executableto ensure it picks up the correct Python executable. (#499)
Other changes
- The version of PySide6 used in test workflows has been restricted. (#487)
- The EDM version used in test workflow has been updated. (#484)
- Various fixes have been made to the GitHub Actions workflows, for compatibility with the newest runners. (#491, #494)
- Copyright headers have been updated for 2023. (#493)
Envisage 6.1.0
This is a minor feature release whose main focus is on compatibility with
Python 3.8 and PySide 6. It includes a collection of other cleanups and minor
fixes.
In this release, there are some changes in the way that the Envisage
Application interacts with ETSConfig. You should double check that
the locations of user data, preferences and application home directories are
the ones that you expect after upgrading.
Please note that the IPython-related portions of Envisage are currently not
compatible with the latest versions of ipykernel and IPython available from
PyPI. This has been made explicit in this release in the form of version
restrictions on those packages in the envisage[ipython] install target.
Thanks to:
- Aaron Ayres
- Mark Dickinson
- Sai Rahul Poruri
- Corran Webster
Changes
- The
Application.user_datadirectory no longer includes the id
of the application, but instead matches theETSConfig.user_data. (#467) - The Envisage
Applicationwill no longer try to change the
ETSConfig.application_homeattribute. (#467) - The
PackageResourceProtocolnow usesimportlib.resourcesinstead
ofpkg_resources. (#466) - The IPython-related features of Envisage require ipykernel version < 6 and
IPython version < 8. (#449)
Fixes
- Fix EggPluginManager to use current pkg_resources.working_set. (#444)
Refactoring and maintenance
Tests
- The tests no longer rely on pre-built eggs for test packages. (#459, #436)
- Skip tests for recent ipykernel, and add check for IPython version. (#457)
- Work around a Python 3.6 issue with
isinstanceand lru caches in tests.
(#470) - Fix an
EggBasketPluginManagertest that only passed due to test
interactions. (#443) - Some pickles used in testing have been regenerated in order to work
correctly with more recent versions of Traits. (#472) - Fix poorly specified action and menu groups in tests. (#468)
- Fix test hangs with PySide2 / macOS 11. (#454)
- Skip an ipykernel-using test if ipykernel is not available in the test
environment. (#423)
Examples
Documentation
- Code samples in the documentation now have a "copy" button. (#474)
- Stylistic changes and updates to documentation. (#406)
- Fix documentation links to examples on main branch. (#447)
- Add a Read the Docs config file. (#434)
- Miscellaneous minor fixes. (#435)
Build and CI
- Update build machinery to support Python 3.8 and PySide 6. (#477)
- Add workflow to automatically upload releases to PyPI. (#478)
- Set up Slack notification for cron jobs. (#433)
- Cron job failures are now reported to the main Slack channel, not
to the bots channel. (#473) - Add GitHub Actions workflow to test PyPI install. (#450)
- The default branch has been renamed from master to main. (#446)
- Update classifiers for Python 3.10. (#437)
- Port CI from Appveyor to GitHub Actions. (#432, #426)
- Simplify flake8 command in
etstool.py. (#431) - Traits version 6.2 or later is now required. (#410)
Envisage 6.0.1
This bugfix release fixes the issue where Extension Point resolution was
happening too eagerly, which caused issues during application startup time in
certain cases. We recommend all users of Envisage to upgrade to this bugfix
version.
Fixes
Tests
Envisage 6.0.0
This major release focuses on speeding up Envisage applications. We achieved this speedup by removing unused functionality in the package. Specifically, we removed the @contributes_to decorator and the code needed to handle methods decorated with the above decorator.
Additionally, with this release, parts of Envisage start using the new Traits observation framework instead of the old Traits on_trait_change. So, Envisage now depends on Traits version >= 6.2.
Features
- Support
observe(name:items)for Extension Points. (#354)
Changes
- Replace
Eithertrait type withUnion. (#405) - Rewrite
*_changedstatic trait handlers to useobserve. (#401) - Replace
depends_oninPropertytraits withobserve. (#400) - Change default pickle protocol to be compatible with Python >= 3.4. (#390)
Removals
- Remove
contributes_todecorator and supporting code. (#402) - Remove unnecessary
returnstatements throughout the codebase. (#393)
Build
- Ensure that the cron job installs all necessary dependencies. (#383)
Envisage 5.0.0
This is a major release mainly relating to code modernization. In this
release, support for Python versions <3.6 have been dropped. The
class_load_hooks and single_project modules have been removed. Additionally,
there were various fixes to bugs, examples, tests, and documentation. Demo
examples are also distributed as package data such that they are visible via
the "etsdemo" GUI application (to be installed separately).
Features
- Re-export CorePlugin in envisage.api (#332)
- Create and fill plugin subpackage api modules (#323)
- Add relevant classes to envisage.ui.tasks.api (#322)
Fixes
- Fix index slice in ExtensionPointChangedEvent when plugin changes (#357)
- Fix ValueError from unregistering services when application stops (#345)
- Fix the MOTD example (#319)
- Fix the Hello_World example (#318)
- Fix the attractors tasks application example (#317)
- Make TasksApplication.gui expect an IGUI interface, not a GUI instance (#301)
Documentation
- Contribute examples to etsdemo (#380)
- Refactor documentation links to source on GitHub (#379)
- Make example run from any directory (#377)
- Setup intersphinx in docs (#343)
- Add documentation for envisage APIs (#340)
- Use jinja templates for API documentation (#339)
- Improve API docs : document traits (#334)
- Rebuild documentation, mostly to fix search functionality (#290)
Deprecations
- Deprecate safeweakref and replace its uses (#275)
Removals
- Drop support for Python 3 versions older than Python 3.6. (#341)
- Remove single_project (#331)
- Remove class_load_hooks and ClassLoadHook (#321)
Tests
- Add tests for ExtensionRegistry getters (#349)
- Add tests to demonstrate behaviour when mutating extension point directly
(#346) - Use mixin instead of having ProviderExtensionRegistryTestCase inherit from
ExtensionRegistryTestCase (#335) - Switch on default warning flag for CI test command (#326)
- Add test eggs for Python 3.9 and remove eggs for Python 2.7 (#289)
Build
- Turn off macOS builds on Travis CI (#375)
- Fix CI cron job setup to install apptools (#348)
- Update setup.py to allow prerelease version (#344)
- Add wx as being supported in etstool, add it back to CI, and test against
wxPython v4.x (#336) - Update EDM version to 3.0.1 in Travis CI and Appveyor. (#297)
- Stop reporting code coverage in CI (#288)
- Fix CI setup on Linux, Windows (#287)
- Remove support for PySide and PyQt4 from CI (#285)
- Add Slack notification for Travis CI runs (#283)
- Add flake8 check to etstool and CI (#268)