Skip to content

Latest commit

 

History

History
299 lines (191 loc) · 10.1 KB

CHANGELOG.md

File metadata and controls

299 lines (191 loc) · 10.1 KB

Changelog for sedsed

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Version 2.0.0 released in 2019-12-07

Added

  • The old "home made" buggy parser for sed scripts was replaced by sedparse, a Python clone of the battle-tested GNU sed parser. The previous parsings bugs are now vanished and as a bonus, all the GNU sed extensions are now supported. 961624b 82c5d19

  • Now supporting the GNU sed extra commands: e, F, L, Q, R, T, v, W, z. #14 #20 #33

  • GNU sed extension: Now supporting the optional numeric argument for the following commands: l, q. #33

  • GNU sed extension: Now supporting ~ and + in addresses. #53

  • GNU sed extension: Now supporting the M flag for addresses. 961624b

  • Sedsed can now be imported and used as a Python module. #9 #47 #55 #58

  • Added many new tests to ensure it works as expected. #60 9624d03 3665234 4b07d73 21f6723 cc48068 dc04d78

  • Sedsed is now distributed as a PyPI package. #58

Changed

  • Sedsed license has changed from MIT to GPLv3. This was necessary because sedparse is a derivative work from GNU sed GPL'd code. f5775be

  • Now using Semantic Versioning for sedsed version numbers. #64

  • Source code is now autoformatted by black. 13bd67f be7d394 ed2b881

  • Error messages are now sent to stderr. #46

Removed

  • The sed emulator was removed. It was incomplete and buggy. Gone are the --emu and --emudebug command line options. #35

  • Dropped support for Python 2.6 and 3.3. Now sedsed runs in Python versions 2.7 and >=3.4. #37 4c6ec38

  • Remove unused extrainfo field, that was shown in --token output. It was a somewhat imprecise attribute for the t command, saving the index for its related s command. #65

Fixed

  • Bugfix: comment after { gets repeated. #50

  • Bugfix: ; char should not be special inside comments. #49

  • Bugfix: empty block {} gets double {{. #51

  • Bugfix: Properly parse filenames for r and w. #29

  • Bugfix: [ inside y command breaks the parser. #16

  • Bugfix: Error when line ends with ; and a space. #13

  • Bugfix: Error when using ; as delimiter in s command. #12

  • Bugfix: Add support for escaped chars in y command. #11

  • Bugfix: Raise syntax error for unknown s/// flags. #3

  • Bugfix: Detect and show error on incomplete s and y commands. #48

  • Bugfix: The --silent option was not working. #59

  • Bugfix: Remove trailing space after some commands. #62

  • Bugfix: Command y should not save or set lastaddr. #66

  • Bugfix: lastaddr property should escape non standard delimiters. #67

  • Bugfix: lastaddr property should also include address flags. #68

  • Bugfix: Only regex addresses should be saved as lastaddr. #69

Version 1.1 released in 2019-05-25

Added

  • Added Python 3 support. Now sedsed runs in Python versions 2.6, 2.7 and >=3.3.

  • New extensive test suite, including original tests from BSD and GNU sed.

  • Add support for GNU sed s/// flags: M, m, e. 45f6dea

  • Add support for multiline script in -e option. #10

Changed

  • Source code reformatted (PEP-8) and improved (pylint).

Fixed

  • Bugfix: Improved STDIN handling for BSD sed and Termux. a49703d

  • Bugfix: Now correctly parsing s///w flag. #4

  • Bugfix: Address ranges with spaces before the comma. #2

  • Bugfix: I char removed in some cases. #1

  • Bugfix: htmlize: address I flag not removed anymore. #6

  • Bugfix: indent: no more trailing spaces. #5

  • Bugfix: emulator: fixed command D. #7

Version 1.0 released in 2004-12-09

  • Portable: Many changes to make the debug file portable, so now it works even in old UNIX versions of sed. (thanks Gudermez for requesting) (thanks Laurent Voguel for his excellent sedcheck tool)

  • Debug diet and faster: The debug command to show the current sed command was simplified from s///;P;s/// to a single i command, reducing the debug file size and increasing execution speed. (thanks Thobias Salazar Trevisan for the idea)

  • Now the sed program location on the system is configurable inside the script (if needed).

  • The default indent prefix for --indent has changed from 2 to 4 spaces.

  • Added --dump-debug option to inspect the generated debug file (implies --nocolor and --debug).

  • Generated debug file more readable, with indented debug commands.

  • Bugfix: Now parses a, c, i commands with ; on the text. (thanks Leo Mulders for reporting)

Version 0.8 released in 2003-11-15

  • Huge code cleanup and rearrange, now it is readable

  • Added -n option and its aliases --quiet and --silent (thanks Eric Pement)

  • Added -H option as an alias to --htmlize

  • Now accepts sed script on STDIN (like sed): echo p | sed -f - file

  • Changed internal line separator string to ASCII chars (thanks Thobias Salazar)

  • Bugfix: Script previous checking was broken (thanks Eric Pement)

Version 0.7 released in 2003-01-21

  • Added --color option (for Windows users)

  • Bugfix: Debug file line break on Windows (thanks Eric Pement)

Version 0.6 released in 2002-11-19

  • Now sedsed works on Windows/DOS

  • New stand-alone .EXE version for Windows users (by py2exe)

  • Option -v REALLY changed to -V (lamer...)

Version 0.5 released in 2002-05-08

  • The sedsed program is now compatible with old Python v1.5

  • The sed debug file is now temporary (is removed)

  • Option -v changed to -V

  • Added i flag for s/// command

  • Now the input text is read from STDIN and/or file(s), as in sed

  • Now the sed script is read from -f <file> and/or -e <script>, as in sed

Version 0.4 released in 2002-03-27

  • Added --htmlize option

Version 0.3 released in 2002-02-22

  • Added --version option

  • Added documentation

  • Added i386 binary version

Version 0.2 released in 2001-12-22

  • Status of t command preserved correctly (thanks Paolo Bonzini)

Version 0.1 released in 2001-12-21

  • First release on sed-users list