Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .copyrightconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ startyear: 2023
# - Use sparingly (third_party, generated, binary assets)
# - Dotfiles already skipped automatically
# Enable by removing the leading '# ' from the next line and editing values.
filesexcluded: .github/*, README.md, Jenkinsfile, gradle/*, docker-compose.yml, *.gradle, gradle.properties, gradlew, gradlew.bat, CODEOWNERS, *.lock, *.toml
filesexcluded: .github/*, README.md, Jenkinsfile, gradle/*, docker-compose.yml, *.gradle, gradle.properties, gradlew, gradlew.bat, CODEOWNERS, *.lock, *.toml, *.md
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ for getting setup in VSCode with linting and formatting enabled.

Before running any tests, first deploy the test application:

- Use Java 8 or higher
- Use Java 17
Copy link

Copilot AI Jan 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Java version requirement change from 'Java 8 or higher' to 'Java 17' is not mentioned in the PR description or title. This appears to be an unrelated change that should either be removed from this PR or documented in the description explaining why the Java version requirement is being updated.

Suggested change
- Use Java 17
- Use Java 8 or higher

Copilot uses AI. Check for mistakes.
- `cd test-app`
- Create a file named `gradle-local.properties` and add `mlPassword=` to it, with the value of the property being
your admin user's password.
Expand Down Expand Up @@ -105,4 +105,4 @@ though you don't need to perform all of those steps since some of the files gene
4. Run `bundle install` (this may not be necessary due to Gemfile.lock being in version control).
5. Run `bundle exec jekyll serve`.

You can then go to http://localhost:4000 to view the docs.
You can then go to http://localhost:4000 to view the docs.
83 changes: 18 additions & 65 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[tool.poetry]
name = "marklogic-python-client"
version = "1.3.0"
version = "1.3.1"
description = "Python client for MarkLogic, built on the requests library"
authors = ["MarkLogic <general@developer.marklogic.com>"]
readme = "README.md"
packages = [{include = "marklogic"}]
license = "Apache 2.0"

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.10"
requests = "^2.32.5"
requests_toolbelt = "^1.0.0"

# Forcing version to eliminate CVEs; transitive dependency of requests.
urllib3 = "^2.6.3"

[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
pytest = "^9.0.2"

[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
Expand Down