MLE-23398 Updated copyright and version and NOTICE#119
Conversation
There was a problem hiding this comment.
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.
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('"', "") |
| 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.
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.
| 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.
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 |
| 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.
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]) |
There was a problem hiding this comment.
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]) |
| 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.
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.
| 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.
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.
No description provided.