forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Changes from upstream/master #2
Open
bbielawx
wants to merge
2,743
commits into
bbielawx:master
Choose a base branch
from
openvinotoolkit:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+578,777
−535,374
Conversation
This file contains 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
github-actions
bot
added
category: build
category: C API
category: CI
github_actions
category: Core
category: CPP API
category: CPU
category: dependency_changes
category: docs
category: GPU
category: NPU
category: IE Tests
category: inference
category: packaging
category: Python API
category: JS API
category: TEMPLATE
category: TF FE
category: TFL FE
category: PyTorch FE
no-match-files
labels
Apr 17, 2024
### Details: - Fix medium severity coverity issues: * Division or modulo by float zero: 1565219 * Uninitialized scalar field: 1565060 * Uninitialized pointer field: 1565135 * Identical code for different branches: 1565044 ### Tickets: - [CVS-157247](https://jira.devtools.intel.com/browse/CVS-157247)
### Details: Fix the following warnings ``` CMake Warning at cmake/developer_package/compile_flags/os_flags.cmake:252 (message): fp16 is not supported by architecture x86_64 Call Stack (most recent call first): cmake/developer_package/cross_compile/cross_compiled_func.cmake:29 (ov_arm_neon_fp16_optimization_flags) cmake/developer_package/OpenVINODeveloperScriptsConfig.cmake:261 (include) CMakeLists.txt:49 (find_package) CMake Warning at cmake/developer_package/compile_flags/os_flags.cmake:294 (message): SVE is not supported by architecture x86_64 Call Stack (most recent call first): cmake/developer_package/cross_compile/cross_compiled_func.cmake:30 (ov_arm_sve_optimization_flags) cmake/developer_package/OpenVINODeveloperScriptsConfig.cmake:261 (include) CMakeLists.txt:49 (find_package) ```
### Details: - This PR bumps minimum required cxx standart version to C++17, which provides an ability to use advanced features from a more modern standart. - OpenVINO minimum supported compiler version is gcc 8.5 (for RHEL 8.4). Based on https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.2017 gcc 8 has full c++17 support (with insignificant exceptions), so nothing prevents the upgrade. - MSVC supports c++17 starting with VS 2017 with some fixes in VS 2019 https://learn.microsoft.com/en-us/cpp/overview/visual-cpp-language-conformance?view=msvc-170. ### Dependencies: - Disable LTO build on Ubuntu 20: intel-innersource/frameworks.ai.openvino.ci.product-configs#3979 ### Tickets: - [CVS-157537](https://jira.devtools.intel.com/browse/CVS-157537) --------- Co-authored-by: Alina Kladieva <[email protected]>
### Details: - Required to merge openvinotoolkit/openvino.genai#1402 - For some reason we have recursion if we have 2 functions with name `ov_add_api_validator_post_build_step` and `_ov_add_api_validator_post_build_step`
Previous PR #28282
…8291) ### Details: - Fix "COPY_INSTEAD_OF_MOVE" coverity scans: 1560671, 1560670, 1560668, 1560667, 1560666, 1560059, 1560057, 1560055, 1560054, 1560052, 1560051, 1560050, 1560047, 1560046, 1560045, 1560043, 1560042, 1560041, 1559840, 1559804, 1559802, 1559777, 1559761, 1559697, 1559559, 1559558, 1559557, 1559556, 1559553, 1559552, 1559549, 1559547, 1559545, 1559543, 1559542, 1559539 - Fix "Use of auto that causes a copy" coverity scans: 1560673, 1560669, 1560044, 1559820, 1559817, 1559561, 1559560, 1559555, 1559544, 1559540 ### Tickets: - [CVS-153062](https://jira.devtools.intel.com/browse/CVS-153062)
### Details: - *Trasnfer updated default configs from GenAI to LLMCompiledModel*
### Details: - *Add new hint to set group_size for key/value cache* - *Add grouped 4bit sym/asym quantization support for PageAttentionNode* - *Add grouped quantization for U8 quantization for PageAttentionNode* ### Tickets: - *CVS-151586* --------- Signed-off-by: [email protected] <[email protected]> Signed-off-by: Zhang Yi3 <[email protected]> Signed-off-by: Zhang Yi <[email protected]>
### Details: - The Result node may use inputs names when created. Creation such Result assume as previous layer is model output. - The model when created from outputs and the outputs are note Result node, then create results and take its names as model output names. - The Result has option to enable/disable use inputs names as it owns. If names not used they still be visible as output names if Result has no dedicated names but if Result is connect to other input these names stay on origin input. ### Tickets: - CVS-159672 --------- Signed-off-by: Raasz, Pawel <[email protected]>
### Details: - spotted code duplication ### Tickets: -
…ms (#28280) ### Details: - *Currently, the pass `SplitDimensionM` supports only static inputs of Subgraphs because the pass inserts `Reshape` ops with const shapes. In some cases (the case from the ticket), MatMul may have static output shape but some parameters - dynamic shape. Then `SplitDimensionM` should not call `split` method. The PR added check with early `return` to cover such cases* ### Tickets: - *159661*
### Details: - due to drop ov ov-dev package, dev-third party programs file is being removed ### Tickets: - N/A
### Details: - An [Issue](https://jira.devtools.intel.com/browse/CVS-159892) appeared after moving `openvino.runtime.utils` ([PR28062]( #28062)). On `openvino` import, `op` was initialized [here](https://github.com/openvinotoolkit/openvino/blob/26e5fe9a5961502eb3086424ce68496c9a4d7a30/src/bindings/python/src/openvino/runtime/utils/types.py#L14) alongside utils. I propose to initialize `op` explicitly in `openvino/runtime/__init__.py` and `openvino/__init__.py` - Initialize ops.py in `runtime/opset*/` as they are present in the `sys.modules` for `2024.6-openvino` and some users may access operators directly from there. ### Tickets: - https://jira.devtools.intel.com/browse/CVS-159892 --------- Signed-off-by: Alicja Miloszewska <[email protected]>
### Details: - This PR fixes incorrect cvt_copy rountine behavior inside mha_single_token kenrel on ARM platforms. In case __ARM_FEATURE_FP16_VECTOR_ARITHMETIC is defined on the system and fp32 inference scalar code path is chosen. - Additionally cvt_copy impl is refactored via template specialization for better readability - Follow-up after #28182
### Details: - Fix MSVC version to cover all compiler versions of v143 toolset https://cmake.org/cmake/help/latest/variable/MSVC_VERSION.html ### Tickets: - CVS-158167 - CVS-159653
### Details: - Builds xuantie toolchain from sources to replace temporary solution merged in #25673 ### Tickets: - *146964*
### Details: - *Added two separate implementation for external repacking: in parallel section with kernel and in the separate parallel section before kernel execution* ### Tickets: - *159886* ### TODO: - [x] *Adjust heuristic of the impl choosing* - [x] *Add layout support* - [x] *[Cherry-picked] Merge the a-sidorova#266 to this branch* - [x] *[Cherry-picked] Merge the a-sidorova#267 to this branch* --------- Co-authored-by: Vladislav Golubev <[email protected]>
…operation (#28258) ### Details: - Added JIT emitter for Eltwise Negation operation on ARM64 SIMD - Implemented fp32 optimization replacing C++ Math implementation - Modified ARM64 executor to support new JIT emitter - Updated kernel files to include Negation in Eltwise operations - Added test coverage for JIT implementation verification - Transitioned operation type from Math to Eltwise for better performance ### Tickets: - #27500 ![image](https://github.com/user-attachments/assets/2dd781da-94c7-4edc-abbb-e7a048d00944)
### Details: - *identify arm cpu isa and update model prefer threads for tput* ### Tickets: - *CVS-148164*
### Details: - In case of GenAI we include developer packages two times: GenAI and Tokenizers
### Details: - This disables nireq check in case execution time is specified when using the sync API ### Tickets: - CVS-159638
### Details: - *Support dynamic shapes torch.export* - *Improve support for `list` as inlined inputs. Previously we decomposed lists to many inputs, now we use decoder to make it a list and resolve it in a same way we resolve lists in TS graph.* ### Tickets: - *CVS-138565* --------- Signed-off-by: Maxim Vafin <[email protected]>
…rc/bindings/python (#28319) Updates the requirements on [setuptools](https://github.com/pypa/setuptools) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> <h1>v75.6.0</h1> <h2>Features</h2> <ul> <li>Preserve original <code>PKG-INFO</code> into <code>METADATA</code> when creating wheel (instead of calling <code>wheel.metadata.pkginfo_to_metadata</code>). This helps to be more compliant with the flow specified in PEP 517. (<a href="https://github.com/pypa/setuptools/issues/4701">#4701</a>)</li> <li>Changed the <code>WindowsSdkVersion</code>, <code>FrameworkVersion32</code> and <code>FrameworkVersion64</code> properties of <code>setuptools.msvc.PlatformInfo</code> to return an empty <code>tuple</code> instead of <code>None</code> as a fallthrough case -- by :user:<code>Avasam</code> (<a href="https://github.com/pypa/setuptools/issues/4754">#4754</a>)</li> </ul> <h1>v75.5.0</h1> <h2>Features</h2> <ul> <li>Removed support for <code>SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION</code>, as it is deemed prone to errors. (<a href="https://github.com/pypa/setuptools/issues/4746">#4746</a>)</li> </ul> <h1>v75.4.0</h1> <h2>Features</h2> <ul> <li> <p>Added support for the environment variable <code>SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION=true</code>, allowing users to bypass the validation of <code>pyproject.toml</code>. This option should be used only as a last resort when resolving dependency issues, as it may lead to improper functioning. Users who enable this setting are responsible for ensuring that <code>pyproject.toml</code> complies with setuptools requirements. (<a href="https://github.com/pypa/setuptools/issues/4611">#4611</a>)</p> <p>.. attention:: This environment variable was removed in a later version of <code>setuptools</code>.</p> </li> <li> <p>Require Python 3.9 or later. (<a href="https://github.com/pypa/setuptools/issues/4718">#4718</a>)</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/4e82e8b75c8bd8cba1232a107dc171b4fd2c588c"><code>4e82e8b</code></a> Bump version: 75.6.0 → 75.7.0</li> <li><a href="https://github.com/pypa/setuptools/commit/50b15dbedc3a5665717b9204cd85291152f5b314"><code>50b15db</code></a> Merge pull request <a href="https://github.com/pypa/setuptools/issues/4787">#4787</a> from Avasam/simplify-typed-assignements</li> <li><a href="https://github.com/pypa/setuptools/commit/86d8c992fc201fae91d135019e5abada183548e2"><code>86d8c99</code></a> Merge pull request <a href="https://github.com/pypa/setuptools/issues/4790">#4790</a> from pypa/feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/c384f184d20e8232a1ce73f88d151b9808b66949"><code>c384f18</code></a> Py_GIL_Disabled was handled previously.</li> <li><a href="https://github.com/pypa/setuptools/commit/fbe834af40de70c181cd2ff5395f8e3488177874"><code>fbe834a</code></a> Merge branch 'main' into feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/5ed9d93e77aa3e2c70d8cea1bfeb15549932169f"><code>5ed9d93</code></a> Add news fragment.</li> <li><a href="https://github.com/pypa/setuptools/commit/e94ce0d2aa2d38b67e5c7ee84ca53fde9d4b5b28"><code>e94ce0d</code></a> Merge with pypa/distutils.</li> <li><a href="https://github.com/pypa/setuptools/commit/ff11eed0c36b35bd68615a8ebf36763b7c8a6f28"><code>ff11eed</code></a> Merge pull request <a href="https://github.com/pypa/distutils/issues/325">pypa/distutils#325</a> from thesamesam/cflags</li> <li><a href="https://github.com/pypa/setuptools/commit/ebfebc096000e16f9d640660047eaec891a98529"><code>ebfebc0</code></a> Merge pull request <a href="https://github.com/pypa/distutils/issues/302">pypa/distutils#302</a> from adang1345/fix-python313-abs</li> <li><a href="https://github.com/pypa/setuptools/commit/36ce8b329524088cfa53b9a4bffcce3a8d233539"><code>36ce8b3</code></a> Refactor for simplicity.</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v70.1.0...v75.7.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
### Details: - Bring back changes reverted here #28190 - The original cause was fixed here #28296 - Make sure that `sys.modules` contains all proxy modules from `runtime` in comparison to `openvino 24.6` ### Tickets: - [CVS-129450](https://jira.devtools.intel.com/browse/CVS-129450) --------- Signed-off-by: Alicja Miloszewska <[email protected]> Co-authored-by: Anastasia Kuporosova <[email protected]>
### Details: - *Fix `dequant` template deduction issue for kv_cache_precision=f16* - *GenAI [Git Action](https://github.com/openvinotoolkit/openvino.genai/actions/runs/12682200535/job/35348709091?pr=1508) Passed* ### Tickets: - *CVS-160259*
) ### Details: - *skip computes of causal mask* - *...* ### Tickets: - *151857* --------- Co-authored-by: Chen Peter <[email protected]>
### Details: - Overload `dir()` method for class objects. Add meta class `ModelMeta` and overload `dir()` - Add test for checking model attributes usind `dir()` ### Tickets: - [CVS-160178](https://jira.devtools.intel.com/browse/CVS-160178) --------- Signed-off-by: Alicja Miloszewska <[email protected]>
### Details: - *Allow setting kwargs for tracing in TS decoder* - *This will allow disabling `check_trace` in `optimum-intel`* ### Tickets: - *ticket-id* Signed-off-by: Maxim Vafin <[email protected]>
…c/bindings/python (#28320) Updates the requirements on [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/PyCQA/flake8-bugbear/releases">flake8-bugbear's releases</a>.</em></p> <blockquote> <h2>24.12.12</h2> <ul> <li>B012 and B025 now also handle try/except* (<a href="https://github.com/PyCQA/flake8-bugbear/issues/500">#500</a>)</li> <li>Skip B028 if warnings.warn is called with <code>*args</code> or <code>**kwargs</code> (<a href="https://github.com/PyCQA/flake8-bugbear/issues/501">#501</a>)</li> <li>Add B911: itertools.batched without strict= (<a href="https://github.com/PyCQA/flake8-bugbear/issues/502">#502</a>)</li> <li>Readme has anchors per check (they do not seem to render on GitHub tho)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyCQA/flake8-bugbear/commit/3a140377c8f1f585013a1566f2c8bb3ead9c329c"><code>3a14037</code></a> Update CHANGES + move to version 24.12.12 to release</li> <li><a href="https://github.com/PyCQA/flake8-bugbear/commit/761dbe20148c4cdf18401789812b4a2e50257519"><code>761dbe2</code></a> Make rstcheck pass again sadly ignoring anchor links</li> <li><a href="https://github.com/PyCQA/flake8-bugbear/commit/7ee19764bf20abcf999898f5268f65b3ee1caf09"><code>7ee1976</code></a> README: Add anchors for rules and config options (<a href="https://github.com/PyCQA/flake8-bugbear/issues/491">#491</a>)</li> <li><a href="https://github.com/PyCQA/flake8-bugbear/commit/b96027296277c210bbd412c78842f6f731366d0d"><code>b960272</code></a> add except* support to B012&B025 (<a href="https://github.com/PyCQA/flake8-bugbear/issues/500">#500</a>)</li> <li><a href="https://github.com/PyCQA/flake8-bugbear/commit/4fed293390eff2db0e3ab0658d69828ac82dfb3e"><code>4fed293</code></a> Skip <code>B028</code> if <code>warnings.warn</code> is called with <code>*args</code> or <code>**kwargs</code> (<a href="https://github.com/PyCQA/flake8-bugbear/issues/501">#501</a>)</li> <li><a href="https://github.com/PyCQA/flake8-bugbear/commit/994f3dd578005ec6eafff3f8fa11c25e44f5e087"><code>994f3dd</code></a> Add B911: itertools.batched without strict= (<a href="https://github.com/PyCQA/flake8-bugbear/issues/502">#502</a>)</li> <li><a href="https://github.com/PyCQA/flake8-bugbear/commit/108bba413ec71eada5c6848114614d61352557de"><code>108bba4</code></a> Fix README format</li> <li><a href="https://github.com/PyCQA/flake8-bugbear/commit/72f6116f895af3270707d3795227be63f67641af"><code>72f6116</code></a> Update CHANGES + move to version 24.10.31 to release</li> <li><a href="https://github.com/PyCQA/flake8-bugbear/commit/07a5676b2181ecaf3be8fceec63b4350b445aa07"><code>07a5676</code></a> Add scentence really explaining B041</li> <li><a href="https://github.com/PyCQA/flake8-bugbear/commit/95f87911a787a05ac22106d50c29a57fd8651e6f"><code>95f8791</code></a> Add B041: Duplicate key-value pairs in dictionary literals (<a href="https://github.com/PyCQA/flake8-bugbear/issues/496">#496</a>)</li> <li>Additional commits viewable in <a href="https://github.com/PyCQA/flake8-bugbear/compare/16.4.1...24.12.12">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…n /src/bindings/python (#28322) Updates the requirements on [protobuf](https://github.com/protocolbuffers/protobuf) to permit the latest version. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/protocolbuffers/protobuf/commit/233098326bc268fc03b28725c941519fc77703e6"><code>2330983</code></a> Updating version.json and repo version numbers to: 29.2</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/17726576c00d4509bc3552ec922de2399f6503fe"><code>1772657</code></a> Automated rollback of commit 23aada230b2478c7a07fe7612489eb8e79b9c379. (<a href="https://github.com/protocolbuffers/protobuf/issues/19692">#19692</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/8b9d76c458bee6bd9e1d8edacace5b2aa7c5a4c7"><code>8b9d76c</code></a> Export environment variables so bazelisk picks them up (<a href="https://github.com/protocolbuffers/protobuf/issues/19690">#19690</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/a1c9b6a2dbda0ab13037e60ac0d6edcef93aaab7"><code>a1c9b6a</code></a> Pin staleness check to Bazel 7 (<a href="https://github.com/protocolbuffers/protobuf/issues/19689">#19689</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/3649f873a3ff7c9d01653dfd67031ab2f9548df5"><code>3649f87</code></a> Remove unused / invalid C++ lazy repeated field code from OSS. (<a href="https://github.com/protocolbuffers/protobuf/issues/19682">#19682</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/3a7bb4a9904314cdc7c245209c94b8e975aef6f5"><code>3a7bb4a</code></a> Remove CMake downgrade workaround from Windows CI tests (<a href="https://github.com/protocolbuffers/protobuf/issues/19630">#19630</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/d7d3da6f002a434e69e18226f24eb6a188839999"><code>d7d3da6</code></a> Merge pull request <a href="https://github.com/protocolbuffers/protobuf/issues/19506">#19506</a> from protocolbuffers/29.x-202412032207</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/a3e9db8f0eae2d04f8298d65eac9e4d2da263d42"><code>a3e9db8</code></a> Updating version.json and repo version numbers to: 29.2-dev</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/796e49f6ca82f763d1087d2ff7355d2f0d7b71b1"><code>796e49f</code></a> Updating version.json and repo version numbers to: 29.1</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/ba6da44dd0910910ea4aad90afc9ea0ae0afc9cf"><code>ba6da44</code></a> Rename maven to protobuf_maven in MODULE.bazel (<a href="https://github.com/protocolbuffers/protobuf/issues/18641">#18641</a>) (<a href="https://github.com/protocolbuffers/protobuf/issues/19477">#19477</a>)</li> <li>Additional commits viewable in <a href="https://github.com/protocolbuffers/protobuf/compare/v3.18.1...v5.29.2">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
category: build
category: C API
category: CI
category: Core
category: CPU
category: dependency_changes
category: docs_snippets
category: docs
category: inference
category: JS API
category: licensing
category: LP transformations
category: packaging
category: Python API
category: PyTorch FE
category: samples
category: transformations
github_actions
no-match-files
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.
No description provided.