Scrapli

Latest version: v2025.1.30

Safety actively analyzes 723683 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 6

2020.12.31

- Make log messages for textfsm and genie parsers failing to parse consistent as `log.warning`
- Add factory example
- Add "root" priv level to junos driver -- probably should be considered experimental for now :)
- Fix issue where `send_config` unified result did not have finish time set
- **POSSIBLY BREAKING CHANGE:** logger names have changed to be easier to get/make more sense -- the logger for each
instance used to look like: "scrapli-channel-{{ HOST }}" which kinda was not really smart :). Loggers now look
like: "scrapli.{{ HOST }}:{{ PORT }}.channel" -- can be channel|driver|transport!
- Changes to test environment:
- ~~Support running devices on localhost w/ nat'd management ports -- in "vrouter" mode (poorly named) -- this is
enabled with the `SCRAPLI_VROUTER` environment variable set to on/true/something~~ **Update 2022.01.30** - renamed
to `SCRAPLI_BOXEN` but does the same thing!
- Added bootvar into nxos base config -- when missing causes qemu nxosv to boot into loader prompt so thats no good
- Replace resource settings in vdc in nxos to account for nxos instances with differing resources (memory/cpu)
- Got rid of static license udi in iosxe config, replaced more certificate stuff so show run comparisons are
easier on iosxe
- **NEW TRANSPORT** `asynctelnet` transport is built using standard library asyncio, as such it is part of scrapli core
- Should be considered beta for a while :)
- Added a bunch of tests mocking streamreader/writer to ensure that this driver is well tested
- Added asynctelnet support in nxos and juniper drivers (to change prompt for those platforms)
- Support asynctelnet in base driver
- `auth_bypass` for both telnet drivers completely bypasses not only auth (as it did previously) but also the auth
validation where we confirm we got logged in successfully -- reason being is that for console servers and such you
may not care about that, you may just want to log in and read data.
- Removed unnecessary re-checking/verifying of ssh config file in system transport (was basically duplicated from
base transport, so was pointless!)
- Bumped all the default timeout values up as they were probably a bit on the aggressive side
- Added `eager` argument to send commands/commands from file and config/configs/configs from file methods --
basically this `eager` mode will *not* look for a prompt between lines of commands/configs. This means that things
have a tiny potential to get out of whack because we will just send things as fast as possible. In order to not
totally break things we *will* (whether you like it or not!) wait and find the prompt on the last command/config
in the list though -- that way we dont get too out of whack. This now means we can use `eager` to configure
banners and macros and things and we no longer need to do the dirty send interactive workaround.
- Added `ScrapliConnectionLost` exception and raise it if we get EOF in system transport -- with a message that is
more clear than just "EOF" and some obscure line in ptyprocess!
- Added `tclsh` privilege level for IOSXE
- Fixed a bug that would prevent going to "parallel" privilege levels -- i.e. going from tclsh to configuration or
visa versa in IOSXE or from configuration to configuration_exclusive in IOSXR
- If no `failed_when_contains` is passed to `send_interactive` network drivers will now use the network drivers
`failed_when_contains` attribute to bring it inline with the normal command/config methods
- Added `timeout_ops` to `send_interactive` and wrap those methods with the `TimeoutModifier` decorator
- Add logic to properly fetch socket address family type so we can handle IPv6 hosts (w/ scrapli-ssh2/scrapli-paramiko)
- Added `tclsh` privilege level for NXOS, didn't even know that existed before!

2020.11.15

- Support namespaces in hello messages -- primarily to support "rfc-compliant" mode in JunOS -- thank you
[Gary Napier](https://github.com/napierg) for finding this and coming up with the fix!
- Another fixup to chunk checker -- think that the itty bitty chunk issues have now been solved :)

2020.10.24

- Improve the "echo" checker -- and add this for sync as well, because...
- SSH2 and Paramiko are now supported transports!
- As part of the "improved echo checker" sync channel now also overrides the read_until_input method like the async
channel does -- again, for the same reasons.
- All transports minus system are now optional extras -- this means that asyncssh is no longer an install requirement
- As expected with above point -- added optional extras install options in setup.py as well as a "full" option just
like scrapli core
- MAYBE BREAKING CHANGE: shouldn't be an issue for 99.9999% of people, however, the asyncssh transport is no longer
imported and available in the transport package
- Add `error_messages` attribute to response object -- initialized as an empty list and the text of any `rpc-error/error
-message` fields are placed into this list if there are any in the response from the server
- Improve netconf 1.1 chunk matching regex to not ignore/chop off Nokia error messages that contained `` symbols

2020.10.10

- Handle netconf 1.1 devices that have chunk sizes of 1
- Ensure results are "pretty printed"
- Above two items were worked out with thanks to Hugo Tinoco! PS - this has been tested on Nokia devices now too!
- Hopefully improved asyncssh "echo checker" (see _check_echo) method in async_channel for details
- Update CI to use 3.9 instead of 3.9-dev (and update deprecated set-env)
- Remove transport session locks

2020.09.26

- Improved error handling/exceptions for scrapli `Factory`
- Fixed issue where `system` transport did not properly close/kill SSH connections
- Added 3.9-dev testing to GitHub Actions
- Added initial testing/support of `on_init` callable to base driver -- the idea for `on_init` is mostly to allow
`scrapli_community` platform creators to be able to add an additional callable to be executed after initialization
of the scrapli object, but before any `open` method is called
- Added initial testing/support of `scrapli_community` driver classes -- this would allow `scrapli_community
` platform creators to create driver classes so that they can implement custom methods for each platform type if
desired
- Minor improvements to `telnet` transport to improve logging as well as authentication validation (are we
authenticated); this also makes `telnet` look/feel a lot more like `system` which is nice for consistency reasons
- Fix regression that caused scrapli to spam a bajillion log entries -- now a filter gets applied in both `Channel
` and `Transport` base classes to snag the filter from the root `scrapli` logger and apply it to the base/channel
loggers
- Fully give into the warm embrace of dependabot and pin all the dev requirements to specific versions... dependabot
can keep us up to date and this lets us not worry about builds failing because of dev requirements getting changed
around
- Fix ptyprocess file object closing issue

2020.09.23

- Strip server capabilities so we don't save capabilities with newlines/whitespace
- Add `validate` and `delete_config` methods

Page 3 of 6

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.