Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Implement msgspec encoding #2541

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
913bc83
refactor: Implement msgspec encoding
edgarrmondragon Jul 17, 2024
e09bd59
refactor: Implement (naive) msgspec encoding
edgarrmondragon Jul 17, 2024
cbe10bd
Move tests
edgarrmondragon Jul 17, 2024
8d32686
Avoid test duplication
edgarrmondragon Jul 17, 2024
e04f827
Fix type attribute
edgarrmondragon Jul 17, 2024
8aefade
Make attr and type attribute match
edgarrmondragon Jul 17, 2024
f691f78
Merge branch 'main' into edgarrmondragon/refactor/msgspec-impl-naive
edgarrmondragon Jul 25, 2024
6caf27d
Merge branch 'main' into edgarrmondragon/refactor/msgspec-impl-naive
edgarrmondragon Aug 9, 2024
08b58bf
Merge branch 'main' into edgarrmondragon/refactor/msgspec-impl-naive
edgarrmondragon Sep 6, 2024
3169b58
Improve JSONL binary serialization performance
edgarrmondragon Sep 6, 2024
9e46c44
Use in sample taps
edgarrmondragon Sep 6, 2024
66f0d4e
Merge branch 'main' into edgarrmondragon/refactor/msgspec-impl-naive
edgarrmondragon Dec 28, 2024
2f91bc1
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 28, 2024
07f348e
refactor: Use `io.TextIOWrapper` to redirect stdout and stderr
edgarrmondragon Dec 28, 2024
8c748a1
Merge branch 'main' into edgarrmondragon/refactor/msgspec-impl-naive
edgarrmondragon Jan 2, 2025
815f056
Merge branch 'main' into edgarrmondragon/refactor/msgspec-impl-naive
edgarrmondragon Jan 13, 2025
47d217f
Merge branch 'main' into edgarrmondragon/refactor/msgspec-impl-naive
edgarrmondragon Mar 5, 2025
8c0bffc
Merge branch 'main' into edgarrmondragon/refactor/msgspec-impl-naive
edgarrmondragon Mar 5, 2025
26d41d0
Move to contrib module
edgarrmondragon Mar 5, 2025
69cf70f
Try a different approach
edgarrmondragon Mar 5, 2025
4497808
Move tests/_singerlib
edgarrmondragon Mar 5, 2025
0c75c43
Remove redundant DummyReader
edgarrmondragon Mar 5, 2025
46faf2f
Apply suggestions from code review
edgarrmondragon Mar 5, 2025
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
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 28, 2024
commit 2f91bc1ceae71e568aff3377e2ea7bff76aafbf4
2 changes: 1 addition & 1 deletion tests/_singerlib/encoding/conftest.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from __future__ import annotations # noqa: INP001
from __future__ import annotations
2 changes: 1 addition & 1 deletion tests/_singerlib/encoding/test_msgspec.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Test IO operations for msgspec Singer reader and writer.""" # noqa: INP001
"""Test IO operations for msgspec Singer reader and writer."""

from __future__ import annotations

Expand Down
Loading