Skip to content

chore(deps): bump keras from 3.13.2 to 3.15.0 in the pip group across 1 directory - #37

Merged
vhrabar merged 14 commits into
devfrom
dependabot/pip/pip-87c011f01f
Aug 19, 2026
Merged

vhrabar merged 14 commits into
devfrom
dependabot/pip/pip-87c011f01f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 18, 2026

Copy link
Copy Markdown
Contributor

Bumps the pip group with 1 update in the / directory: keras.

Updates keras from 3.13.2 to 3.15.0

Release notes

Sourced from keras's releases.

v3.15.0

Highlights

  • Keras-to-Torch Export: New export_torch enables exporting Keras models to native PyTorch nn.Module format, along with LiteRT (TFLite) export support for the PyTorch backend.
  • Sliding Window Attention: Added sliding_window parameter to MultiHeadAttention and GroupedQueryAttention for efficient long-context attention.
  • Flash / Fused SDPA: Causal-only MHA/GQA now automatically dispatches to Flash Attention (cuDNN SDPA), and the manual attention path correctly applies causal masking.
  • Multi-Optimizer Training: New MultiOptimizer supports assigning different optimizers to sub-networks.
  • New Math Operations: Added unique, pinv, matrix_rank, fabs, fmax, fmin, erfc, dsplit, percentile, nanpercentile, sobel_edges, and ssim (structural similarity) to keras.ops.
  • Security Hardening: Comprehensive hardening of model reloading against HDF5 exploits, tar/zip traversal attacks, insecure deserialization.

New Features and Operations

Multi-Backend Operations

  • New NumPy Operations: Added unique, fabs, fmax, fmin, dsplit, erfc, percentile, nanpercentile in keras.ops.numpy.
  • New Linear Algebra Operations: Added pinv (pseudo-inverse) and matrix_rank in keras.ops.linalg.
  • New Image Operations: Added sobel_edges for edge detection and ssim (structural similarity) in keras.ops.image.
  • Negative Axes in Transpose: keras.ops.transpose now supports negative axis values.

Layers and Attention

  • Sliding Window Attention: MultiHeadAttention and GroupedQueryAttention layers support the sliding_window parameter for efficient long-sequence processing.
  • Flash Attention Engagement: Causal-only attention in MHA/GQA now uses Flash SDPA for significant speedups.
  • Fused Bidirectional LSTM/GRU: JAX backend now fuses Bidirectional LSTM into a single cuDNN call; fused bidirectional GRU added for Torch backend.
  • CTC Beam Search Decoder: Added CTC beam search decoding for the Torch backend.

Training and Optimizers

  • MultiOptimizer: Supports training sub-networks with different optimizers.
  • SKLearn Classifier: Added predict_proba method to SKLearnClassifier.

Export and Deployment

  • Keras-to-Torch Export: Export Keras models to native PyTorch nn.Module via model.export(..., format="torch").
  • LiteRT (TFLite) Export for PyTorch: Added LiteRT export support for models using the PyTorch backend.
  • LiteRT Compatibility Fix: Fixed LiteRT export for Keras 3 + TF 2.20 + Python 3.13.
  • ONNX Export: Support for dict/list inputs in Torch ONNX export; documented static input signature requirement for LiteRT PyTorch export.

Distribution and Parallelism

  • ModelParallel Improvements: Defined contiguous replica-group data shard ID convention; added distribution information (num_processes, num_model_replicas, data_shard_id).
  • Initializer Distribution Layout: Initializers can now handle the distribution layout directly with JAX.
  • TF Dataset Distribution: Refactored TF dataset distribution with centralized sharding routing; fixed data distribution for model training in JAX.

OpenVINO Backend Support

... (truncated)

Commits
  • 9d1bbf9 Add erfinv tests and TensorFlow CPU fallback for half precision (#23086)
  • b34af30 Fix pad_sequences string dtype check (np.bytes_ instead of duplicate np.str_)...
  • f512e93 Fix wrong parameter names in ops.select and ops.argpartition docstrings (#23091)
  • 915ec7e Support native Grouped-Query Attention (GQA) Key/Value head broadcast. (#23081)
  • 49d668d Add JAX multi-process distribution tests (#23105)
  • b49fde7 Refactor rematerialization logic into Operation and support more modes (#23107)
  • e0bfa2d Add to the list of APIs that should not be part of a reloaded model. (#23115)
  • 69d7fd6 Suppress spurious 'Skipping nested container' warning on freshly-saved files ...
  • 048d142 Delete temp files after loading model from remote path. (#23113)
  • 46f5eac Bump GitHub Actions versions to the latest (#23104)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

vhrabar and others added 14 commits July 23, 2026 15:22
Detector caching & Arch (v0.1.3)
… into single secure-eye package #21

Streamlined packaging by consolidating `libpam-secureeye` and `secureeye-authd` into a unified `secure-eye` package. Removed legacy vendoring of Python wheels in favor of native dependencies. Updated service and launcher scripts to adopt system Python interpreter. Adjusted Debian control and build rules accordingly.

Signed-off-by: Vedran Hrabar <vedran.hrabar@outlook.com>
… into single secure-eye package #21

Streamlined packaging by consolidating `libpam-secureeye` and `secureeye-authd` into a unified `secure-eye` package. Removed legacy vendoring of Python wheels in favor of native dependencies. Updated service and launcher scripts to adopt system Python interpreter. Adjusted rpm build pipeline

Signed-off-by: Vedran Hrabar <vedran.hrabar@outlook.com>
…d into single secure-eye package #21

Consolidated `libpam-secureeye` and `secureeye-authd` into a unified `secure-eye` package for Arch Linux. Updated AUR build, dependencies, and installation scripts to align with the changes. Adjusted README to reflect updated installation and configuration steps.

Signed-off-by: Vedran Hrabar <vedran.hrabar@outlook.com>
Replaced `publish-ppa.yml` with a unified `release.yml` workflow that integrates testing, building, and publishing for multiple package formats (DEB,  RPM, Arch). Simplified version resolution logic and updated build steps across platforms. Updated Makefile to accommodate revised versioning.

Signed-off-by: Vedran Hrabar <vedran.hrabar@outlook.com>
Adjusted the AUR Git push command to use `HEAD:master`.

Signed-off-by: Vedran Hrabar <vedran.hrabar@outlook.com>
… DEB, RPM, and Arch Linux packages

Revised instructions for service management, backend switching, and contribution setup. Added clarification on systemd presets and updated command references for improved usability.

Signed-off-by: Vedran Hrabar <vedran.hrabar@outlook.com>
…r DEB/RPM builds #21

Added `CHANGELOG.md` following Keep-a-Changelog format. Enhanced `publish-ppa.sh` to update `debian/changelog` for native builds. Modified `build-rpm.sh` to auto-commit version changes and integrate dynamic changelog updates.

Signed-off-by: Vedran Hrabar <vedran.hrabar@outlook.com>
…and release workflows #21

Implemented `set-package-version.sh` to standardize version bumping and changelog rendering for DEB, RPM, and Arch packages. Refactored CI workflows to rely on consistent changelog management and packaging automation across release pipelines. Added `changelog-section.sh` for extracting release notes and introduced `release-prep.yml` for streamlined release preparation.

Signed-off-by: Vedran Hrabar <vedran.hrabar@outlook.com>
…ation

Updated `check.yml` workflow to trigger on `main` and `dev` branches for both push and pull request events. Improved dependency installation script by adding `--no-install-recommends` and adjusting required packages for leaner and more efficient builds.

Signed-off-by: Vedran Hrabar <vedran.hrabar@outlook.com>
…thon interpreter improvements, and workflow automation

Signed-off-by: Vedran Hrabar <vedran.hrabar@outlook.com>
Bumps the pip group with 1 update in the / directory: [keras](https://github.com/keras-team/keras).


Updates `keras` from 3.13.2 to 3.15.0
- [Release notes](https://github.com/keras-team/keras/releases)
- [Commits](keras-team/keras@v3.13.2...v3.15.0)

---
updated-dependencies:
- dependency-name: keras
  dependency-version: 3.15.0
  dependency-type: direct:production
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Aug 18, 2026
@vhrabar
vhrabar changed the base branch from main to dev August 19, 2026 07:28
@vhrabar
vhrabar self-requested a review August 19, 2026 07:37
@github-project-automation github-project-automation Bot moved this to Backlog in SecureEye Aug 19, 2026
@vhrabar vhrabar added this to the Phase IV: Initial GUI milestone Aug 19, 2026
@vhrabar
vhrabar merged commit e067423 into dev Aug 19, 2026
5 checks passed
@github-project-automation github-project-automation Bot moved this from Backlog to Done in SecureEye Aug 19, 2026
@dependabot
dependabot Bot deleted the dependabot/pip/pip-87c011f01f branch August 19, 2026 07:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

1 participant