Skip to content

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

Merged
merged 1 commit into from
Aug 6, 2025

Conversation

rjrudin
Copy link
Contributor

@rjrudin rjrudin commented Aug 6, 2025

No description provided.

@Copilot Copilot AI review requested due to automatic review settings August 6, 2025 18:32
Copy link

@Copilot Copilot AI left a 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('"', "")
Copy link
Preview

Copilot AI Aug 6, 2025

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.

Suggested change
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('"', "")
Copy link
Preview

Copilot AI Aug 6, 2025

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
Copy link
Preview

Copilot AI Aug 6, 2025

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.

Suggested change
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.")
Copy link
Preview

Copilot AI Aug 6, 2025

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])
Copy link
Preview

Copilot AI Aug 6, 2025

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.

Suggested change
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)
Copy link
Preview

Copilot AI Aug 6, 2025

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)
Copy link
Preview

Copilot AI Aug 6, 2025

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.

@rjrudin rjrudin merged commit 24dc2a3 into develop Aug 6, 2025
2 checks passed
@rjrudin rjrudin deleted the feature/copyright branch August 6, 2025 19:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants