diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8b7c7552..b0e2ef4e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,7 +13,7 @@ ci: - poetry-audit repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: 2c9f875913ee60ca25ce70243dc24d5b6415598c # frozen: v4.6.0 + rev: cef0300fd0fc4d2a87a85fa2093c6b283ea36f4b # frozen: v5.0.0 hooks: - id: check-yaml args: [--unsafe] @@ -39,7 +39,7 @@ repos: - id: remove-tabs - id: forbid-tabs - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 5c70e3d884fdbe99af42f2714a444e39f321498d # frozen: 0.29.2 + rev: aa1acdb72677dfbc5f507d2dfd45d8380bbcc2e0 # frozen: 0.29.3 hooks: - id: check-readthedocs - id: check-dependabot @@ -47,12 +47,12 @@ repos: - id: check-github-workflows args: [--verbose] - repo: https://github.com/Mateusz-Grzelinski/actionlint-py - rev: c01fb5723b54075325cd9b5e5665a9ae84baf950 # frozen: v1.7.1.15 + rev: 27445053da613c660ed5895d9616662059a53ca7 # frozen: v1.7.3.17 hooks: - id: actionlint additional_dependencies: [pyflakes, shellcheck-py] - repo: https://github.com/commitizen-tools/commitizen - rev: d7e01aa9b0cfe3c1b732e66d523bbd0656221127 # frozen: v3.29.0 + rev: a3498aba5e94c9f7c4acb529b5e7eb6df65fd053 # frozen: v3.29.1 hooks: - id: commitizen stages: [commit-msg] @@ -138,7 +138,7 @@ repos: always_run: true args: [audit, --json, --ignore-code=CVE-2019-8341] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: 24d039e647a08707e6cb31e75e01844eeff925e7 # frozen: v0.6.2 + rev: 75b98813cfb7e663870a28c74366a1e99d7bfe79 # frozen: v0.6.9 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] diff --git a/CHANGELOG.md b/CHANGELOG.md index 53589763..766bd55b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,71 @@ Valid subsections within a version are: Things to be included in the next release go here. +### Fixed + +- fix: TekScope2K active channel query needs VERBOSE and HEADER options enabled to function properly + +### Added + +- `collectgarbage()` is now called during cleanup of `TSPDevice` children. +- Added USB Support for AFG31K and MDO3 models. + +--- + +## v2.4.0 (2024-09-19) + +### Merged Pull Requests + +- Update TSPDevice.load_script() to accept raw strings ([#308](https://github.com/tektronix/tm_devices/pull/308)) +- fix: Update stub generation helper function to handle classes followed by dataclasses ([#307](https://github.com/tektronix/tm_devices/pull/307)) +- Add function to register USBTMC connection information for devices that don't have native USBTMC connection support in tm_devices ([#306](https://github.com/tektronix/tm_devices/pull/306)) +- python-deps(deps-dev): Bump the python-dependencies group with 2 updates ([#304](https://github.com/tektronix/tm_devices/pull/304)) +- fix: Ensure that the default VISA timeout value is not overwritten if a new config is loaded that doesn't specify a default VISA timeout. ([#303](https://github.com/tektronix/tm_devices/pull/303)) +- gh-actions(deps): Bump tektronix/python-package-ci-cd ([#287](https://github.com/tektronix/tm_devices/pull/287)) +- chore: Bump the version of tektronix/python-package-ci-cd to v1.3.0 in workflows ([#301](https://github.com/tektronix/tm_devices/pull/301)) +- build: Update license identifier ([#299](https://github.com/tektronix/tm_devices/pull/299)) +- python-deps(deps): Bump the python-dependencies group with 3 updates ([#300](https://github.com/tektronix/tm_devices/pull/300)) +- Enable customizing the default visa timeout ([#293](https://github.com/tektronix/tm_devices/pull/293)) +- python-deps(deps-dev): Bump the python-dependencies group with 4 updates ([#296](https://github.com/tektronix/tm_devices/pull/296)) +- Update python-pacage-ci-cd to v1.1.0 and use tokens to upload to PyPI ([#291](https://github.com/tektronix/tm_devices/pull/291)) +- python-deps(deps): Bump the python-dependencies group across 1 directory with 2 updates ([#288](https://github.com/tektronix/tm_devices/pull/288)) +- chore: Remove an unneeded development dependency ([#286](https://github.com/tektronix/tm_devices/pull/286)) +- Convert to using reusable workflows from the `tektronix/python-package-ci-cd` repo ([#284](https://github.com/tektronix/tm_devices/pull/284)) + +### Added + +- Added a config option (`default_visa_timeout`) to specify the default VISA timeout for all initial VISA device connections. +- Added a new function, `register_additional_usbtmc_mapping()`, to enable users to add USBTMC connection information for devices that don't have native support for USBTMC connections in `tm_devices` yet. +- Added `TSPDevice.export_buffers()` to write tsp buffer data fields to file, default is comma separated values with buffer names header. + +### Changed + +- Switched all workflows to use the new [`tektronix/python-package-ci-cd`](https://github.com/tektronix/python-package-ci-cd) reusable workflows. +- Reduced the out-of-the box `default_visa_timeout` value from 30 seconds to 5 seconds. +- _**SEMI-BREAKING CHANGE**_: Changed the `USB_MODEL_ID_LOOKUP` constant to use `SupportedModels` as keys instead of values to make the documentation clearer. +- _**SEMI-BREAKING CHANGE**_: Changed the `DEVICE_DRIVER_MODEL_MAPPING` constant to use `SupportedModels` as keys instead of values to make the documentation clearer. +- _**SEMI-BREAKING CHANGE**_: Changed the input parameter order in `TSPDevice.load_script()` and updated it to accept raw string input in addition to the `file_path` parameter for the script content. +- Verbosity with `PIDevice.write()` now handles multiline input printouts. + +### Deprecated + +- Renamed `TSPDevice.write_buffers()` to `TSPDevice.export_buffers()` for clarity. + +### Fixed + +- Fixed a bug in the stubgen helper code responsible for adding dynamically added methods to stub files that caused invalid stub files to be created if a dataclass immediately followed a class that was being dynamically updated. + +--- + +## v2.3.0 (2024-08-23) + +### Merged Pull Requests + +- feat: Added Full API support for TekscopePC. ([#282](https://github.com/tektronix/tm_devices/pull/282)) +- feat: Add curve query support for MSO2KB series scopes ([#269](https://github.com/tektronix/tm_devices/pull/269)) +- python-deps(deps-dev): bump the python-dependencies group with 2 updates ([#279](https://github.com/tektronix/tm_devices/pull/279)) +- ci: Use nodeenv to install node during tox runs, and install node with nodeenv during initial contributor setup ([#278](https://github.com/tektronix/tm_devices/pull/278)) + ### Added - `collectgarbage()` is now called during cleanup of `TSPDevice` children.