-
Notifications
You must be signed in to change notification settings - Fork 37
Comparing changes
Open a pull request
base repository: googleapis/proto-plus-python
base: v1.25.0
head repository: googleapis/proto-plus-python
compare: v1.26.0
- 16 commits
- 26 files changed
- 10 contributors
Commits on Oct 22, 2024
-
chore: update templated files (#498)
* chore: update templated files * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 01377b0 - Browse repository at this point
Copy the full SHA 01377b0View commit details
Commits on Oct 29, 2024
-
chore: update templated files (#500)
* chore: update templated files * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 33ae4d0 - Browse repository at this point
Copy the full SHA 33ae4d0View commit details
Commits on Nov 15, 2024
-
chore(python): update dependencies in .kokoro/docker/docs (#504)
* chore(python): update dependencies in .kokoro/docker/docs Source-Link: googleapis/synthtool@59171c8 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:2ed982f884312e4883e01b5ab8af8b6935f0216a5a2d82928d273081fc3be562 * See https://github.com/googleapis/synthtool/pull/2033/files --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8d24bda - Browse repository at this point
Copy the full SHA 8d24bdaView commit details
Commits on Jan 3, 2025
-
chore(python): Update the python version in docs presubmit to use 3.10 (
#511) * chore(python): Update the python version in docs presubmit to use 3.10 Source-Link: googleapis/synthtool@de3def6 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:a1c5112b81d645f5bbc4d4bbc99d7dcb5089a52216c0e3fb1203a0eeabadd7d5 * fix docs build --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c54b31d - Browse repository at this point
Copy the full SHA c54b31dView commit details
Commits on Jan 21, 2025
-
fix: construct messages with nested duration in protobuf 5.28+ (#519)
* fix: construct messages with nested duration in protobuf 5.28+ * Valueerror -> ValueError Co-authored-by: Victor Chudnovsky <[email protected]> * Use public issue links Co-authored-by: Victor Chudnovsky <[email protected]> * rename variables in test --------- Co-authored-by: Victor Chudnovsky <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 197ddf8 - Browse repository at this point
Copy the full SHA 197ddf8View commit details -
fix: incorrect return type annotation for Message.to_dict (#516)
The `proto.Message.to_dict` function returns a `dict[str, Any]`, but its return type annotation is incorrectly set to `Message`. The `proto.Message.to_dict` function returns the result of calling [`google.protobuf.json_format.MessageToDict()`](https://github.com/protocolbuffers/protobuf/blob/c58621b6ff2e6145ffb14c7e5a7af7648dfc0535/python/google/protobuf/json_format.py#L125-L162), which returns `dict[str, Any]` as specified in the [protobuf typeshed stubs](https://github.com/python/typeshed/blob/main/stubs/protobuf/google/protobuf/json_format.pyi#L23-L30). Additionally, runtime introspection shows that the function returns a `dict`. Co-authored-by: Anthonios Partheniou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 72990f3 - Browse repository at this point
Copy the full SHA 72990f3View commit details -
chore(python): fix docs publish build (#514)
Source-Link: googleapis/synthtool@bd9ede2 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:04c35dc5f49f0f503a306397d6d043685f8d2bb822ab515818c4208d7fb2db3a Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f19b931 - Browse repository at this point
Copy the full SHA f19b931View commit details -
fix: Port to Sphinx 8.0 (#509)
The old `intersphinx_mapping` format has been removed; it must now map identifiers to (target, inventory) tuples. Co-authored-by: Anthonios Partheniou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c57ebd7 - Browse repository at this point
Copy the full SHA c57ebd7View commit details
Commits on Jan 22, 2025
-
fix: Use include rather than exclude to find_namespace_packages in se…
…tup.py (#502) https://setuptools.pypa.io/en/latest/userguide/package_discovery.html has a warning: > Please have in mind that find_namespace: (setup.cfg), > find_namespace_packages() (setup.py) and find (pyproject.toml) > will scan all folders that you have in your project directory > if you use a flat-layout. That applies here. Without this change, if you run: 'python3 setup.py bdist_wheel' then you may end up with build/ in your wheel, and in some cases even docs/ and testing/ . The fix is to only include proto and proto.*. Signed-off-by: Scott Moser <[email protected]> Co-authored-by: Anthonios Partheniou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 77e252e - Browse repository at this point
Copy the full SHA 77e252eView commit details -
feat: migrate to pyproject.toml (#496)
* migrate to pyproject.toml * Rebase following #502 * add entries such as documentation and classifiers which exist in other projects * Use correct url for docs --------- Co-authored-by: Anthonios Partheniou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 82ed3b9 - Browse repository at this point
Copy the full SHA 82ed3b9View commit details -
fix: fix enums initialization in PyPy (#507)
* fix: enums initialization in PyPy When removing the _pb_options name from the enum attributes, enums initialization in PyPy should not raise exception. Refs: #506 * test: add presubmit for PyPy * Add unit (pypy3.10, python) as a required check --------- Co-authored-by: Anthonios Partheniou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b8b68f2 - Browse repository at this point
Copy the full SHA b8b68f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for a85be75 - Browse repository at this point
Copy the full SHA a85be75View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8c39674 - Browse repository at this point
Copy the full SHA 8c39674View commit details -
chore: add presubmit for linting setup.py (#527)
* chore: add presubmit for linting setup.py * fix duplicate implicit target name in README.rst * add action to lint setup.py * style * add new line
Configuration menu - View commit details
-
Copy full SHA for 9417d33 - Browse repository at this point
Copy the full SHA 9417d33View commit details -
Configuration menu - View commit details
-
Copy full SHA for 305b6b8 - Browse repository at this point
Copy the full SHA 305b6b8View commit details
Commits on Jan 27, 2025
-
chore(main): release 1.26.0 (#522)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ae5d253 - Browse repository at this point
Copy the full SHA ae5d253View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.25.0...v1.26.0