Changelog History
Page 1
-
v4.0.0 Changes
October 07, 2020๐ฑ โ ๏ธ Backward Incompatible Changes โ ๏ธ
- ๐ streamparse now only supports Python 3.6+
๐ Features
- ๐ Switched depending on
thriftpy
tothriftpy2
, becausethriftpy
is no longer maintained (PR #481)
-
v3.16.0 Changes
April 08, 2019๐ Features
- ๐ Faster virtualenv creation when passing multiple requirements files to
sparse submit
(PR #459) - โ Add
sudo_user
option toconfig.json
that can be used for specifying a different user that is used for virtualenv creation/deletion instead of always using the SSH login user. (PR #455)
๐ Fixes
- ๐ Fix typo that would cause
update_virtualenv
to when no CLI options were passed (PR #459)
๐ โ ๏ธ In the upcoming streamparse 4.0 release, support for Python 2 will be dropped. โ ๏ธ
- ๐ Faster virtualenv creation when passing multiple requirements files to
-
v3.15.1 Changes
January 23, 2019๐ Fixes
- โก๏ธ Make
update_virtualenv
create virtualenvs as sudo user, and not just when trying to delete them (0250cfa) - ๐ Prevent pip 19.0 from being installed because it breaks
--no-cache-dir
installs (db26183) - ๐ Prevent virtualenv from downloading pip versions other than what we have pinned (0573bc8)
- ๐ Make redis examples work with
sparse run
again (b61c85d) - ๐ Fix issues where
repr(Topology)
was alwaysNone
(fd5b4b6)
Misc.
- ๐ Simplify Travis setup (#454)
- โก๏ธ Make
-
v3.15.0 Changes
December 06, 2018๐ Features
- ๐ Allow submitting topologies as inactive/deactivated (PR #448)
- โก๏ธ Stop pinning pip to 9.x when running
update_virtualenv
(PR #444)
๐ Fixes
- โ Added missing
options
argument to bootstrap project (PR #436) - ๐ Import fixes in redis example (PR #451)
- ๐ Fix issues with virtualenv-related option resolution, which made options only in
config.json
not get used. (PR #453)
Misc.
- Reformatted code with black
-
v3.14.0 Changes
August 15, 2018 -
v3.13.1 Changes
January 16, 20180๏ธโฃ This fixes an issue with the
--overwrite_virtualenv
option introduced in 3.13.0 when some of the files in the virtualenv are not removable due to insufficient permissions. You can now specify the user to user for removing them with--user
. We also delete usingsudo
by default now. (PR #417) -
v3.13.0 Changes
January 12, 2018โก๏ธ This tiny release just adds the
--overwrite_virtualenv
flag tosparse submit
andsparse update_virtualenv
for the cases where you want to recreate a virtualenv without having to manually delete it from all the worker nodes. (PR #416) -
v3.12.0 Changes
December 22, 2017๐ This release mostly improves and fixes some CLI option handling.
๐ Features
- โ Added
--config
option to all commands to pass customconfig.json
path. (PR #409, Issue #343) - โ Added
--options
option tosparse update_virtualenv
, so it can properly handle customized worker lists. (PR #409) - ๐ Switched from using
prettytable
totexttable
, which has better line wrapping support for wide tables. (PR #413) - โก๏ธ Updated version of
storm.thrift
used internally to the one from Storm 1.1.1, which made thesparse list
tables more informative. We also now verify that Storm believe the topology name you are submitting is a valid name. (PR #414)
๐ Fixes
- โ Added
-
v3.11.0 Changes
October 12, 2017 -
v3.10.0 Changes
September 13, 2017This release just adds
options
topre_submit_hook
andpost_submit_hook
arguments. This is mostly so you can use the storm workers list inside hooks. (PR #396)