-
Notifications
You must be signed in to change notification settings - Fork 1
edition2024 #85
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
edition2024 #85
Changes from all commits
a8df3b4
0d5adca
da30b32
29a3897
e2b5a3a
32442b5
68bce61
bd3e6c4
6c679f4
282f4cc
d9b3bd0
9cf7acb
0a41811
f44ddf6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -267,9 +267,9 @@ class Serializer(Field): | |
| @raw_data.setter | ||
| def raw_data(self, value: typing.Optional[builtins.str]) -> None: ... | ||
| @property | ||
| def context(self) -> typing.Optional[dict]: ... | ||
| def context(self) -> dict: ... | ||
| @context.setter | ||
| def context(self, value: typing.Optional[dict]) -> None: ... | ||
| def context(self, value: dict) -> None: ... | ||
|
Comment on lines
+270
to
+272
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: cat oxapy/serializer/__init__.pyi | head -n 280 | tail -n 20Repository: j03-dev/oxapy Length of output: 830 🏁 Script executed: # Find documentation files mentioning context or breaking changes
find . -type f \( -name "*.md" -o -name "*.rst" -o -name "CHANGELOG*" -o -name "RELEASE*" \) | head -20Repository: j03-dev/oxapy Length of output: 68 🏁 Script executed: # Search for migration guides or documentation about this change
rg -l "context" --type=md --type=rst | head -10Repository: j03-dev/oxapy Length of output: 39 🏁 Script executed: # Look for examples using the context property
fd -e py | xargs rg -l "\.context" --type=py | head -10Repository: j03-dev/oxapy Length of output: 39 🏁 Script executed: cat README.mdRepository: j03-dev/oxapy Length of output: 5574 🏁 Script executed: # Find the actual Python source file for the serializer
find . -path "./oxapy/serializer/*.py" -not -path "*/.*"Repository: j03-dev/oxapy Length of output: 39 🏁 Script executed: # Check if there's a git history we can examine
git log --oneline oxapy/serializer/__init__.pyi 2>/dev/null | head -10Repository: j03-dev/oxapy Length of output: 85 🏁 Script executed: # Look for version information or changelog
rg -l "version|changelog|breaking|release" --type=md --type=txt | head -10Repository: j03-dev/oxapy Length of output: 66 🏁 Script executed: # Find the actual Python source file for serializer
find . -name "*.py" -path "*/serializer/*" -type fRepository: j03-dev/oxapy Length of output: 39 🏁 Script executed: # Check setup.py or pyproject.toml for changelog/version info
find . -maxdepth 2 \( -name "setup.py" -o -name "pyproject.toml" -o -name "setup.cfg" \) -type fRepository: j03-dev/oxapy Length of output: 73 🏁 Script executed: # Search for any docstrings or comments about context in Python files
rg -C5 "def context" --type=pyRepository: j03-dev/oxapy Length of output: 39 🏁 Script executed: cat pyproject.tomlRepository: j03-dev/oxapy Length of output: 637 🏁 Script executed: # Search for any mention of breaking changes, context, or migration in any file type
rg -i "breaking|context|migration" --max-count=20Repository: j03-dev/oxapy Length of output: 3772 🏁 Script executed: # Look for any documentation files in the repo
find . -type f \( -name "*.md" -o -name "*.txt" -o -name "docs" -type d \) | head -20Repository: j03-dev/oxapy Length of output: 68 The type annotation change is intentional and correctly reflects the Rust implementation, but document this breaking change in release notes. The However, this creates a breaking change for code that checks 🤖 Prompt for AI Agents |
||
| @property | ||
| def data(self) -> typing.Any: | ||
| r""" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.