-
Notifications
You must be signed in to change notification settings - Fork 4
MLE-23398 Updated copyright and version and NOTICE #119
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates copyright notices, version information, and the NOTICE file to reflect the transition to Progress Software Corporation ownership and a new version release (1.3.0).
- Updates copyright headers from MarkLogic to Progress Software Corporation across all Python files
- Increments version from 1.2.1 to 1.3.0 in pyproject.toml
- Updates NOTICE.txt with new copyright information and third-party component versions
Reviewed Changes
Copilot reviewed 24 out of 24 changed files in this pull request and generated 7 comments.
File | Description |
---|---|
tests/*.py | Added Progress Software Corporation copyright headers to 13 test files |
marklogic/*.py | Added Progress Software Corporation copyright headers to 6 source files |
pyproject.toml | Updated version from 1.2.1 to 1.3.0 |
NOTICE.txt | Updated copyright, licensing text, and third-party component versions |
client.get("v1/documents?uri=/doc2=copy.xml") | ||
.headers["ETag"] | ||
.replace('"', "") | ||
client.get("v1/documents?uri=/doc2=copy.xml").headers["ETag"].replace('"', "") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line formatting change appears unrelated to the copyright update purpose of this PR. Code formatting changes should be separated from copyright updates to maintain clear change attribution.
client.get("v1/documents?uri=/doc2=copy.xml").headers["ETag"].replace('"', "") | |
client.get("v1/documents?uri=/doc2=copy.xml").headers["ETag"].replace('"', "") |
Copilot uses AI. Check for mistakes.
client.get("v1/documents?uri=/doc2;copy.xml") | ||
.headers["ETag"] | ||
.replace('"', "") | ||
client.get("v1/documents?uri=/doc2;copy.xml").headers["ETag"].replace('"', "") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line formatting change appears unrelated to the copyright update purpose of this PR. Code formatting changes should be separated from copyright updates to maintain clear change attribution.
Copilot uses AI. Check for mistakes.
@@ -139,7 +142,7 @@ def test_read_with_basic_client(basic_client: Client): | |||
|
|||
def test_read_with_original_response(basic_client: Client): | |||
response = basic_client.documents.read("/doc1.json", return_response=True) | |||
assert b'--ML_BOUNDARY' in response.content | |||
assert b"--ML_BOUNDARY" in response.content |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This quote style change from single to double quotes appears unrelated to the copyright update purpose of this PR. Code formatting changes should be separated from copyright updates to maintain clear change attribution.
assert b"--ML_BOUNDARY" in response.content | |
assert b'--ML_BOUNDARY' in response.content |
Copilot uses AI. Check for mistakes.
raise ValueError( | ||
"Buffer is too short to contain version and dimensions." | ||
) | ||
raise ValueError("Buffer is too short to contain version and dimensions.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line formatting change appears unrelated to the copyright update purpose of this PR. Code formatting changes should be separated from copyright updates to maintain clear change attribution.
Copilot uses AI. Check for mistakes.
floats = struct.unpack( | ||
"<" + "f" * dimensions, buffer[8 : 8 + 4 * dimensions] | ||
) | ||
floats = struct.unpack("<" + "f" * dimensions, buffer[8 : 8 + 4 * dimensions]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line formatting change appears unrelated to the copyright update purpose of this PR. Code formatting changes should be separated from copyright updates to maintain clear change attribution.
floats = struct.unpack("<" + "f" * dimensions, buffer[8 : 8 + 4 * dimensions]) | |
floats = struct.unpack("<" + "f" * dimensions, buffer[8:8 + 4 * dimensions]) |
Copilot uses AI. Check for mistakes.
disposition = part.headers["Content-Disposition".encode(encoding)].decode( | ||
encoding | ||
) | ||
disposition = part.headers["Content-Disposition".encode(encoding)].decode(encoding) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line formatting change appears unrelated to the copyright update purpose of this PR. Code formatting changes should be separated from copyright updates to maintain clear change attribution.
Copilot uses AI. Check for mistakes.
content_type = part.headers["Content-Type".encode(encoding)].decode( | ||
encoding | ||
) | ||
content_type = part.headers["Content-Type".encode(encoding)].decode(encoding) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line formatting change appears unrelated to the copyright update purpose of this PR. Code formatting changes should be separated from copyright updates to maintain clear change attribution.
Copilot uses AI. Check for mistakes.
No description provided.