| Name: | sed |
|---|---|
| Version: | 4.8 |
| Release: | 10.el9 |
| Architecture: | x86_64 |
| Group: | Unspecified |
| Size: | 812407 |
| License: | GPLv3+ |
| RPM: | sed-4.8-10.el9.x86_64.rpm |
| Source RPM: | sed-4.8-10.el9.src.rpm |
| Build Date: | Tue Mar 10 2026 |
| Build Host: | build-ol9-x86_64.oracle.com |
| Vendor: | Oracle America |
| URL: | http://sed.sourceforge.net/ |
| Summary: | A GNU stream text editor |
| Description: | The sed (Stream EDitor) editor is a stream or batch (non-interactive) editor. Sed takes text as input, performs an operation or set of operations on the text and outputs the modified text. The operations that sed performs (substitutions, deletions, insertions, etc.) can be specified in a script file or from the command line. |
- lib/dfa.c: Increase the maximum size of the transitions table - After changes introduced between sed 4.2 and 4.4, some regexps started to hit the table size limits. This lead to repeated deletion and rebuilding of the table, leading to massive performance drops. While the core issue is still present, this change should at least help by moving the threshold of the regexp complexity that triggers the table rebuilds. - Resolves: RHEL-144026