Commit Graph

3039 Commits (155dad6ee19e8090590f98587a69a49738e26e58)
 

Author SHA1 Message Date
Tim Stack fc67f704cc [build] fix autogen path 1 year ago
Tim Stack 231a76c14b [build] fix order of autogen 1 year ago
Tim Stack a403788d90 [build] fix some typos 1 year ago
Tim Stack 1cc35fd6be [build] move into extract 1 year ago
Tim Stack b529ecf979 [build] move to dockerfile 1 year ago
Tim Stack b357efea7a [build] fix ncurses url 1 year ago
Tim Stack 7a08a54f59 [build] install deps 1 year ago
Tim Stack 4da325882b [build] sh instead of bash? 1 year ago
Tim Stack 2771fe0b52 [build] sigh, no hash bang 1 year ago
Tim Stack 17d5bde24a [build] set x bit 1 year ago
Tim Stack 2c478c921f [build] downgrade alpine version 1 year ago
Tim Stack 156eb1d779 [build] more stuff 1 year ago
Tim Stack 1d18566b8d [build] try to build musl using an action 1 year ago
Tim Stack 9f1cf33120 [release] bump deps 1 year ago
Tim Stack dd21bdfd82 [text_filter] scrub ansi when testing a filter
Related to #1163
1 year ago
Tim Stack f98f1e52c9
Merge pull request #1160 from he32/shift-overflow-fix
ArenaAlloc/arenaallocimpl.h: avoid shift overflow on 32-bit hosts.
1 year ago
Tim Stack 2d870dece8
Merge pull request #1159 from he32/isdigit-fix
strnatcmp.c: ensure correct value range for isdigit() argument.
1 year ago
Havard Eidnes 0b51752974 ArenaAlloc/arenaallocimpl.h: avoid shift overflow on 32-bit hosts.
Use the constants defined by <stdint.h> to avoid right-shift by 32
on a 32-bit host by comparing SIZE_MAX to UINT32_MAX, since `value`
is a size_t.

Found by building on NetBSD/macppc with -Wshift-count-overflow
(which is default on in the pkgsrc setup, which this is from).

./third-party/ArenaAlloc/arenaallocimpl.h:111:22: warning: right shift count >=
width of type [-Wshift-count-overflow]
  111 |       value |= value >> 32;
      |                ~~~~~~^~~~~
1 year ago
Havard Eidnes f5daea2273 strnatcmp.c: ensure correct value range for isdigit() argument.
The valid values to pass to `isdigit()` is the values represented
by `unsigned char` and the value of EOF (usually -1).  Other values
such as the other negative `signed char` values may invoke undefined
behaviour.

Fix this by casting the argument to `isdigit()` to `unsigned char`.

Found by building on NetBSD/macppc with -Wchar-subscripts turned on.
1 year ago
Tim Stack 34f026e444 [tests] unset NO_COLOR since it can affect the tests where color is captured in the output
Related to #1154
1 year ago
Tim Stack 9323958296 [args] fix handling of non-numeric text after colon in a path
Fixes #1155
1 year ago
Tim Stack a324bc8c1c [docs] add a note that level regexes are not anchored
Related to #1153
1 year ago
Tim Stack c3abaee445 [log/text-views] reload selectable config
Related to #1088
1 year ago
Tim Stack 822eaf5a1a [json_log] auto detect the required width for a column
Related to #1146
1 year ago
Tim Stack cd59577324
Merge pull request #1147 from FlorianMuenchbach/feature/cursor-mode-tests
Some test cases for listview behavior in cursor mode
1 year ago
Tim Stack de0cccd2b2
Merge pull request #1152 from tstack/dependabot/bundler/docs/nokogiri-1.14.3
Bump nokogiri from 1.14.2 to 1.14.3 in /docs
1 year ago
dependabot[bot] 895bb963a3
Bump nokogiri from 1.14.2 to 1.14.3 in /docs
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.14.2 to 1.14.3.
- [Release notes](https://github.com/sparklemotion/nokogiri/releases)
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.14.2...v1.14.3)

---
updated-dependencies:
- dependency-name: nokogiri
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
1 year ago
Tim Stack f2a0c8f21c [logfile] include microseconds when converting timestamps
Mentioned in #1145

Also, fix the field hiding issue mentioned in #1146
1 year ago
Florian Münchbach 1b250cc124 Add test input files to Makefile 1 year ago
Florian Münchbach 4d7f929d9a Add test cases for cursor mode 1 year ago
Florian Münchbach ea5d59e7e2 Use set_selection instead set_top in listview driver 1 year ago
Florian Münchbach 6c642abad6 Prefix selected line in listview driver output with '+' 1 year ago
Florian Münchbach e7a4e388a2 Add command options for cursor mode and key 'press' input to listview driver 1 year ago
Tim Stack add3982d2e
Merge pull request #1144 from kbdharun/master
CI (workflows): bump actions version, fix Node 12 deprecation warning in action runs
1 year ago
K.B.Dharun Krishna 3024d929db
tailer-ape.yml: bump actions/checkout to v3 1 year ago
K.B.Dharun Krishna 91c30c9c76
coverity.yml: bump actions/checkout to v3 1 year ago
K.B.Dharun Krishna e3b8c56098
c-cpp.yml: bump actions version to v3 (Node 16) 1 year ago
Tim Stack 44b564681b [format_loader] catch invalid format names
Fixes #1122
1 year ago
Tim Stack a2f076a967 [test_sql_str_func] disable url test that is dependent on the curl version 1 year ago
Tim Stack 3862ba8ac1 [tests] fix file path 1 year ago
Tim Stack 70dee8a747 [ci] try to fix some test failures 1 year ago
Tim Stack 65b0d78143 [log_format/json] appending an empty string can trigger an assert
Fixes #1132
1 year ago
Tim Stack db1fc92fdd [ansi] missed resizing a buffer when scrubbing ansi
Fixes #1135
1 year ago
Tim Stack 5ad75f156a [build] try to fix CI for test that uses a syslog logfile 1 year ago
Tobias Gruetzmacher 7e320b591e
Add example bunyan logfile
Taken directly from a live renovate instance.
1 year ago
Tobias Gruetzmacher d675a8d10e
Add support for the bunyan JSON log format
See https://github.com/trentm/node-bunyan
1 year ago
Tim Stack 33a80db95c
Merge pull request #1125 from tstack/dependabot/bundler/docs/commonmarker-0.23.8
Bump commonmarker from 0.23.6 to 0.23.8 in /docs
1 year ago
dependabot[bot] 6bb1f7c0b6
Bump commonmarker from 0.23.6 to 0.23.8 in /docs
Bumps [commonmarker](https://github.com/gjtorikian/commonmarker) from 0.23.6 to 0.23.8.
- [Release notes](https://github.com/gjtorikian/commonmarker/releases)
- [Changelog](https://github.com/gjtorikian/commonmarker/blob/main/CHANGELOG.md)
- [Commits](https://github.com/gjtorikian/commonmarker/compare/v0.23.6...v0.23.8)

---
updated-dependencies:
- dependency-name: commonmarker
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
1 year ago
Tim Stack 71d22e6567
Merge pull request #1124 from tstack/dependabot/bundler/docs/nokogiri-1.14.2
Bump nokogiri from 1.13.9 to 1.14.2 in /docs
1 year ago
dependabot[bot] 1fbdebb713
Bump nokogiri from 1.13.9 to 1.14.2 in /docs
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.9 to 1.14.2.
- [Release notes](https://github.com/sparklemotion/nokogiri/releases)
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.13.9...v1.14.2)

---
updated-dependencies:
- dependency-name: nokogiri
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
1 year ago