Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand All @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest]
python-version: ["3.9"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand All @@ -55,7 +55,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down
6 changes: 6 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Unreleased

### Feat

- implement --debug flag for troubleshooting

## 1.4.2 (2025-09-10)

### Fix
Expand Down
13 changes: 6 additions & 7 deletions docs/docs/CODE_TAG_SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# Collected Code Tags

| Type | Comment | Last Edit | Source File |
|---------|------------------------------------------------------------------|------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
| 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) |
| 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) |
| 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) |
| 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) |
| Type | Comment | Last Edit | Source File |
|---------|----------------------------------------------------------|------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
| 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) |
| 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) |
| 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) |

Found code tags for TODO (1), PLANNED (3)
Found code tags for TODO (1), PLANNED (2)

<!-- calcipy_skip_tags -->
10 changes: 5 additions & 5 deletions docs/docs/DEVELOPER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ poetry config pypi-token.pypi ...
|-------------------------------------------|-----------:|--------:|---------:|---------:|
| `tail_jsonl/__init__.py` | 4 | 0 | 0 | 100.0% |
| `tail_jsonl/_private/__init__.py` | 0 | 0 | 0 | 100.0% |
| `tail_jsonl/_private/core.py` | 54 | 1 | 0 | 97.0% |
| `tail_jsonl/_private/core.py` | 59 | 4 | 0 | 89.9% |
| `tail_jsonl/_runtime_type_check_setup.py` | 13 | 0 | 37 | 100.0% |
| `tail_jsonl/config.py` | 23 | 0 | 0 | 100.0% |
| `tail_jsonl/scripts.py` | 16 | 0 | 18 | 94.4% |
| **Totals** | 110 | 1 | 55 | 97.6% |
| `tail_jsonl/config.py` | 24 | 0 | 0 | 100.0% |
| `tail_jsonl/scripts.py` | 19 | 1 | 20 | 87.0% |
| **Totals** | 119 | 5 | 57 | 92.4% |

Generated on: 2025-09-10
Generated on: 2025-11-21
<!-- {cte} -->
Loading