Skip to content

Commit 1be138e

Browse files
authored
Merge pull request #18 from KyleKing/claude/implement-debug-flag-0164SPN6fj1DYzbYkt1rMYWt
2 parents 6fd3854 + 283128e commit 1be138e

File tree

10 files changed

+70
-374
lines changed

10 files changed

+70
-374
lines changed

.github/workflows/ci_pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
python-version: ["3.9"]
26+
python-version: ["3.10"]
2727
steps:
2828
- uses: actions/checkout@v4
2929
- uses: ./.github/actions/setup
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
matrix:
4141
os: [macos-latest, windows-latest]
42-
python-version: ["3.9"]
42+
python-version: ["3.10"]
4343
steps:
4444
- uses: actions/checkout@v4
4545
- uses: ./.github/actions/setup
@@ -55,7 +55,7 @@ jobs:
5555
strategy:
5656
matrix:
5757
os: [ubuntu-latest]
58-
python-version: ["3.9"]
58+
python-version: ["3.10"]
5959
steps:
6060
- uses: actions/checkout@v4
6161
- uses: ./.github/actions/setup

docs/docs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Unreleased
2+
3+
### Feat
4+
5+
- implement --debug flag for troubleshooting
6+
17
## 1.4.2 (2025-09-10)
28

39
### Fix

docs/docs/CODE_TAG_SUMMARY.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# Collected Code Tags
22

3-
| Type | Comment | Last Edit | Source File |
4-
|---------|------------------------------------------------------------------|------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
5-
| PLANNED | Consider moving to Corallium | 2025-09-11 | [tail_jsonl/_private/core.py:75](https://github.com/KyleKing/tail-jsonl/blame/b8b654530a8750cb53a399e368689168e3cc2123/tail_jsonl/_private/core.py#L75) |
6-
| PLANNED | temporary backward compatibility until part of Corallium | 2024-10-05 | [tail_jsonl/config.py:10](https://github.com/KyleKing/tail-jsonl/blame/bd32054c9276da9dba500cb7c1289061f4e0ada1/tail_jsonl/config.py#L10) |
7-
| TODO | Are these dotted keys properly parsed? | 2025-09-11 | [tail_jsonl/config.py:22](https://github.com/KyleKing/tail-jsonl/blame/57ebf0b3404ebd5daf4f45933267f38b40ae3738/tail_jsonl/config.py#L22) |
8-
| PLANNED | Add a flag (--debug & store_true) to print debugging information | 2023-02-02 | [tail_jsonl/scripts.py:29](https://github.com/KyleKing/tail-jsonl/blame/fd15e5907afae783ba21bb0f9d310cc6b08008c4/tail_jsonl/main.py#L34) |
3+
| Type | Comment | Last Edit | Source File |
4+
|---------|----------------------------------------------------------|------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
5+
| PLANNED | Consider moving to Corallium | 2025-09-11 | [tail_jsonl/_private/core.py:89](https://github.com/KyleKing/tail-jsonl/blame/b8b654530a8750cb53a399e368689168e3cc2123/tail_jsonl/_private/core.py#L75) |
6+
| PLANNED | temporary backward compatibility until part of Corallium | 2024-10-05 | [tail_jsonl/config.py:10](https://github.com/KyleKing/tail-jsonl/blame/bd32054c9276da9dba500cb7c1289061f4e0ada1/tail_jsonl/config.py#L10) |
7+
| TODO | Are these dotted keys properly parsed? | 2025-09-11 | [tail_jsonl/config.py:22](https://github.com/KyleKing/tail-jsonl/blame/57ebf0b3404ebd5daf4f45933267f38b40ae3738/tail_jsonl/config.py#L22) |
98

10-
Found code tags for TODO (1), PLANNED (3)
9+
Found code tags for TODO (1), PLANNED (2)
1110

1211
<!-- calcipy_skip_tags -->

docs/docs/DEVELOPER_GUIDE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ poetry config pypi-token.pypi ...
4949
|-------------------------------------------|-----------:|--------:|---------:|---------:|
5050
| `tail_jsonl/__init__.py` | 4 | 0 | 0 | 100.0% |
5151
| `tail_jsonl/_private/__init__.py` | 0 | 0 | 0 | 100.0% |
52-
| `tail_jsonl/_private/core.py` | 54 | 1 | 0 | 97.0% |
52+
| `tail_jsonl/_private/core.py` | 59 | 4 | 0 | 89.9% |
5353
| `tail_jsonl/_runtime_type_check_setup.py` | 13 | 0 | 37 | 100.0% |
54-
| `tail_jsonl/config.py` | 23 | 0 | 0 | 100.0% |
55-
| `tail_jsonl/scripts.py` | 16 | 0 | 18 | 94.4% |
56-
| **Totals** | 110 | 1 | 55 | 97.6% |
54+
| `tail_jsonl/config.py` | 24 | 0 | 0 | 100.0% |
55+
| `tail_jsonl/scripts.py` | 19 | 1 | 20 | 87.0% |
56+
| **Totals** | 119 | 5 | 57 | 92.4% |
5757

58-
Generated on: 2025-09-10
58+
Generated on: 2025-11-21
5959
<!-- {cte} -->

0 commit comments

Comments
 (0)