intel / ai-containers

This repository contains Dockerfiles, scripts, yaml files, Helm charts, etc. used to scale out AI containers with versions of TensorFlow and PyTorch that have been optimized for Intel platforms. Scaling is done with python, Docker, kubernetes, kubeflow, cnvrg.io, Helm, and other container orchestration frameworks for use in the cloud and on-premise
https://intel.github.io/ai-containers/
Apache License 2.0
19 stars 15 forks source link

Bump the tensorflow group across 1 directory with 2 updates #194

Closed dependabot[bot] closed 2 weeks ago

dependabot[bot] commented 2 weeks ago

Bumps the tensorflow group with 2 updates in the /tensorflow directory: tensorflow and jupyterlab.

Updates tensorflow from 2.15.0 to 2.16.2

Release notes

Sourced from tensorflow's releases.

TensorFlow 2.16.2

Release 2.16.2

Bug Fixes and Other Changes

  • Fixed: Incorrect dependency metadata in TensorFlow Python packages causing installation failures with certain package managers such as Poetry.

TensorFlow 2.16.1

Release 2.16.1

TensorFlow

  • TensorFlow Windows Build:
    • Clang is now the default compiler to build TensorFlow CPU wheels on the Windows Platform starting with this release. The currently supported version is LLVM/clang 17. The official Wheels-published on PyPI will be based on Clang; however, users retain the option to build wheels using the MSVC compiler following the steps mentioned in https://www.tensorflow.org/install/source_windows as has been the case before
  • TensorFlow 2.16 will be released as TF 2.16.1 (instead of 2.16.0). The patch release will be done as 2.16.2 during the next release cycle.

Breaking Changes

  • tf.summary.trace_on now takes a profiler_outdir argument. This must be set if profiler arg is set to True.

    • tf.summary.trace_export's profiler_outdir arg is now a no-op. Enabling the profiler now requires setting profiler_outdir in trace_on.
  • tf.estimator

    • The tf.estimator API is removed.
    • To continue using tf.estimator, you will need to use TF 2.15 or an earlier version.
  • Keras 3.0 will be the default Keras version. You may need to update your script to use Keras 3.0.

  • Please refer to the new Keras documentation for Keras 3.0 (https://keras.io/keras_3).

  • To continue using Keras 2.0, do the following.

    1. Install tf-keras via pip install tf-keras~=2.16

    2. To switch tf.keras to use Keras 2 (tf-keras), set the environment variable TF_USE_LEGACY_KERAS=1 directly or in your python program with import os;os.environ["TF_USE_LEGACY_KERAS"]="1". Please note that this will set it for all packages in your Python runtime program

    3. Change the keras import: replace import tensorflow.keras as keras or import keras with import tf_keras as keras. Update any tf.keras references to keras.

  • Apple Silicon users: If you previously installed TensorFlow using pip install tensorflow-macos, please update your installation method. Use pip install tensorflow from now on.

  • Mac x86 users: Mac x86 builds are being deprecated and will no longer be released as a Pip package from TF 2.17 onwards.

Known Caveats

  • Full aarch64 Linux and Arm64 macOS wheels are now published to the tensorflow pypi repository and no longer redirect to a separate package.

Major Features and Improvements

  • Support for Python 3.12 has been added.
  • tensorflow-tpu package is now available for easier TPU based installs.
  • TensorFlow pip packages are now built with CUDA 12.3 and cuDNN 8.9.7

... (truncated)

Changelog

Sourced from tensorflow's changelog.

Release 2.16.2

Bug Fixes and Other Changes

  • Fixed: Incorrect dependency metadata in TensorFlow Python packages causing installation failures with certain package managers such as Poetry.

Release 2.16.1

TensorFlow

  • TensorFlow Windows Build:
    • Clang is now the default compiler to build TensorFlow CPU wheels on the Windows Platform starting with this release. The currently supported version is LLVM/clang 17. The official Wheels-published on PyPI will be based on Clang; however, users retain the option to build wheels using the MSVC compiler following the steps mentioned in https://www.tensorflow.org/install/source_windows as has been the case before
  • TensorFlow 2.16 will be released as TF 2.16.1 (instead of 2.16.0). The patch release will be done as 2.16.2 during the next release cycle.

Breaking Changes

  • tf.summary.trace_on now takes a profiler_outdir argument. This must be set if profiler arg is set to True.

    • tf.summary.trace_export's profiler_outdir arg is now a no-op. Enabling the profiler now requires setting profiler_outdir in trace_on.
  • tf.estimator

    • The tf.estimator API is removed.
    • To continue using tf.estimator, you will need to use TF 2.15 or an earlier version.
  • Keras 3.0 will be the default Keras version. You may need to update your script to use Keras 3.0.

  • Please refer to the new Keras documentation for Keras 3.0 (https://keras.io/keras_3).

  • To continue using Keras 2.0, do the following.

    1. Install tf-keras via pip install tf-keras~=2.16

    2. To switch tf.keras to use Keras 2 (tf-keras), set the environment variable TF_USE_LEGACY_KERAS=1 directly or in your python program with import os;os.environ["TF_USE_LEGACY_KERAS"]="1". Please note that this will set it for all packages in your Python runtime program

    3. Change the keras import: replace import tensorflow.keras as keras or import keras with import tf_keras as keras. Update any tf.keras references to keras.

  • Apple Silicon users: If you previously installed TensorFlow using pip install tensorflow-macos, please update your installation method. Use pip install tensorflow from now on.

  • Mac x86 users: Mac x86 builds are being deprecated and will no longer be released as a Pip package from TF 2.17 onwards.

Known Caveats

  • Full aarch64 Linux and Arm64 macOS wheels are now published to the tensorflow pypi repository and no longer redirect to a separate package.

Major Features and Improvements

  • Support for Python 3.12 has been added.
  • tensorflow-tpu package is now available for easier TPU based installs.
  • TensorFlow pip packages are now built with CUDA 12.3 and cuDNN 8.9.7
  • Added experimental support for float16 auto-mixed precision using the new AMX-FP16 instruction set on X86 CPUs.

... (truncated)

Commits
  • 810f233 Merge pull request #70357 from tensorflow/r2.16-b24db0b2a85
  • eeee7f8 Add back xla/stream_executor:cuda_platform to tf_additional_binary_deps.
  • 42cbd16 Merge pull request #69911 from tensorflow/patch-r2.16-installer-wheels-poetry
  • 03e24a1 Fix references to deprecated installer wheels in V2 setup.py
  • 25a99db Merge pull request #69484 from tensorflow-jenkins/version-numbers-2.16.2-4011
  • 038cfb0 Merge pull request #69740 from tensorflow/rtg0795-patch-1
  • 19ac7bf Update v2/setup.py
  • dd18d13 Merge pull request #69726 from tensorflow/r2.16-264dce9fb38
  • e83b403 Remove CMake from requirements now that dm-tree has 3.12 wheels.
  • 5f69a22 Merge pull request #69643 from tensorflow/rtg0795-patch-1
  • Additional commits viewable in compare view


Updates jupyterlab from 4.3.0a0 to 4.3.0a1

Release notes

Sourced from jupyterlab's releases.

v4.3.0a1

4.3.0a1

(Full Changelog)

New features added

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Documentation improvements

... (truncated)

Changelog

Sourced from jupyterlab's changelog.

4.3.0a1

(Full Changelog)

New features added

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Documentation improvements

... (truncated)

Commits
  • 8585fc8 [ci skip] Publish 4.3.0a1
  • 133a9e4 Update to Playwright 1.45.0 (#16530)
  • a957490 Add option to dismiss "Server Connection Error" dialog for the duration of th...
  • 1d3e4ac Notebook minimap in the virtual scrollbar (#16432)
  • 362818f Fix the description for the main inline completer plugin (#16526)
  • f364345 Implement viewport tracking and reactive rendering in scrollbar (#16392)
  • 5d8216d Fix inline completer configure calls not being propagated correctly (#16508)
  • c6cd12b Bump ws from 8.12.0 to 8.17.1 (#16495)
  • 0e95797 Update JupyterLab 3.x maintenance announcement (#16506)
  • 4789392 Fix the lines placeholder taking up too much space (#16493)
  • Additional commits viewable in compare view


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 commands and options
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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
github-actions[bot] commented 2 weeks ago

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

PackageVersionScoreDetails
pip/jupyterlab 4.3.0a1 :green_circle: 5.8
Details
CheckScoreReason
Code-Review:green_circle: 9Found 23/25 approved changesets -- score normalized to 9
Maintained:green_circle: 1030 commit(s) and 21 issue activity found in the last 90 days -- score normalized to 10
License:green_circle: 9license file detected
CII-Best-Practices:warning: 2badge detected: InProgress
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Branch-Protection:warning: -1internal error: error during GetBranch(4.2.x): error during branchesHandler.query: internal error: githubv4.Query: Resource not accessible by integration
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
SAST:green_circle: 10SAST tool is run on all commits
Binary-Artifacts:green_circle: 10no binaries found in the repo
Security-Policy:green_circle: 10security policy file detected
Fuzzing:warning: 0project is not fuzzed
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Vulnerabilities:warning: 28 existing vulnerabilities detected
pip/jupyterlab 4.3.0a0 :green_circle: 5.8
Details
CheckScoreReason
Code-Review:green_circle: 9Found 23/25 approved changesets -- score normalized to 9
Maintained:green_circle: 1030 commit(s) and 21 issue activity found in the last 90 days -- score normalized to 10
License:green_circle: 9license file detected
CII-Best-Practices:warning: 2badge detected: InProgress
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Branch-Protection:warning: -1internal error: error during GetBranch(4.2.x): error during branchesHandler.query: internal error: githubv4.Query: Resource not accessible by integration
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
SAST:green_circle: 10SAST tool is run on all commits
Binary-Artifacts:green_circle: 10no binaries found in the repo
Security-Policy:green_circle: 10security policy file detected
Fuzzing:warning: 0project is not fuzzed
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Vulnerabilities:warning: 28 existing vulnerabilities detected
pip/tensorflow 2.16.2 :green_circle: 7.7
Details
CheckScoreReason
Binary-Artifacts:green_circle: 7binaries present in source code
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 929 out of 30 merged PRs checked by a CI test -- score normalized to 9
CII-Best-Practices:green_circle: 5badge detected: Passing
Code-Review:warning: 0Found 1/30 approved changesets -- score normalized to 0
Contributors:green_circle: 10project has 21 contributing companies or organizations
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Fuzzing:green_circle: 10project is fuzzed
License:green_circle: 10license file detected
Maintained:green_circle: 1030 commit(s) and 8 issue activity found in the last 90 days -- score normalized to 10
Packaging:green_circle: 10packaging workflow detected
Pinned-Dependencies:warning: 1dependency not pinned by hash detected -- score normalized to 1
SAST:warning: 2SAST tool is not run on all commits -- score normalized to 2
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
pip/tensorflow 2.15.0 :green_circle: 7.7
Details
CheckScoreReason
Binary-Artifacts:green_circle: 7binaries present in source code
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 929 out of 30 merged PRs checked by a CI test -- score normalized to 9
CII-Best-Practices:green_circle: 5badge detected: Passing
Code-Review:warning: 0Found 1/30 approved changesets -- score normalized to 0
Contributors:green_circle: 10project has 21 contributing companies or organizations
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Fuzzing:green_circle: 10project is fuzzed
License:green_circle: 10license file detected
Maintained:green_circle: 1030 commit(s) and 8 issue activity found in the last 90 days -- score normalized to 10
Packaging:green_circle: 10packaging workflow detected
Pinned-Dependencies:warning: 1dependency not pinned by hash detected -- score normalized to 1
SAST:warning: 2SAST tool is not run on all commits -- score normalized to 2
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
pip/tensorflow 2.16.2 :green_circle: 7.7
Details
CheckScoreReason
Binary-Artifacts:green_circle: 7binaries present in source code
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 929 out of 30 merged PRs checked by a CI test -- score normalized to 9
CII-Best-Practices:green_circle: 5badge detected: Passing
Code-Review:warning: 0Found 1/30 approved changesets -- score normalized to 0
Contributors:green_circle: 10project has 21 contributing companies or organizations
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Fuzzing:green_circle: 10project is fuzzed
License:green_circle: 10license file detected
Maintained:green_circle: 1030 commit(s) and 8 issue activity found in the last 90 days -- score normalized to 10
Packaging:green_circle: 10packaging workflow detected
Pinned-Dependencies:warning: 1dependency not pinned by hash detected -- score normalized to 1
SAST:warning: 2SAST tool is not run on all commits -- score normalized to 2
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
pip/tensorflow 2.16.1 :green_circle: 7.7
Details
CheckScoreReason
Binary-Artifacts:green_circle: 7binaries present in source code
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 929 out of 30 merged PRs checked by a CI test -- score normalized to 9
CII-Best-Practices:green_circle: 5badge detected: Passing
Code-Review:warning: 0Found 1/30 approved changesets -- score normalized to 0
Contributors:green_circle: 10project has 21 contributing companies or organizations
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Fuzzing:green_circle: 10project is fuzzed
License:green_circle: 10license file detected
Maintained:green_circle: 1030 commit(s) and 8 issue activity found in the last 90 days -- score normalized to 10
Packaging:green_circle: 10packaging workflow detected
Pinned-Dependencies:warning: 1dependency not pinned by hash detected -- score normalized to 1
SAST:warning: 2SAST tool is not run on all commits -- score normalized to 2
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
pip/tensorflow 2.16.2 :green_circle: 7.7
Details
CheckScoreReason
Binary-Artifacts:green_circle: 7binaries present in source code
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 929 out of 30 merged PRs checked by a CI test -- score normalized to 9
CII-Best-Practices:green_circle: 5badge detected: Passing
Code-Review:warning: 0Found 1/30 approved changesets -- score normalized to 0
Contributors:green_circle: 10project has 21 contributing companies or organizations
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Fuzzing:green_circle: 10project is fuzzed
License:green_circle: 10license file detected
Maintained:green_circle: 1030 commit(s) and 8 issue activity found in the last 90 days -- score normalized to 10
Packaging:green_circle: 10packaging workflow detected
Pinned-Dependencies:warning: 1dependency not pinned by hash detected -- score normalized to 1
SAST:warning: 2SAST tool is not run on all commits -- score normalized to 2
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
pip/tensorflow 2.15.0 :green_circle: 7.7
Details
CheckScoreReason
Binary-Artifacts:green_circle: 7binaries present in source code
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 929 out of 30 merged PRs checked by a CI test -- score normalized to 9
CII-Best-Practices:green_circle: 5badge detected: Passing
Code-Review:warning: 0Found 1/30 approved changesets -- score normalized to 0
Contributors:green_circle: 10project has 21 contributing companies or organizations
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Fuzzing:green_circle: 10project is fuzzed
License:green_circle: 10license file detected
Maintained:green_circle: 1030 commit(s) and 8 issue activity found in the last 90 days -- score normalized to 10
Packaging:green_circle: 10packaging workflow detected
Pinned-Dependencies:warning: 1dependency not pinned by hash detected -- score normalized to 1
SAST:warning: 2SAST tool is not run on all commits -- score normalized to 2
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected

Scanned Manifest Files

tensorflow/jupyter-requirements.txt
  • jupyterlab@4.3.0a1
  • jupyterlab@4.3.0a0
tensorflow/requirements.txt
  • tensorflow@2.16.2
  • tensorflow@2.15.0
tensorflow/serving/requirements.txt
  • tensorflow@2.16.2
  • tensorflow@2.16.1
tensorflow/xpu-requirements.txt
  • tensorflow@2.16.2
  • tensorflow@2.15.0
dependabot[bot] commented 2 weeks ago

Looks like these dependencies are updatable in another way, so this is no longer needed.