Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,174 for release (0.05 sec)

  1. RELEASE.md

    Modak, Yasuhiro Matsumoto, Yi Li, Yong Tang, zhaozheng09, Zhoulong Jiang,
    zzpmiracle
    
    # Release 2.6.2
    
    Fixes an issue where `keras`, `tensorflow_estimator` and `tensorboard` were
    missing proper upper bounds and resulted in broken installs after TF 2.7 release
    
    # Release 2.6.1
    
    This release introduces several vulnerability fixes:
    
    *   Fixes a code injection issue in `saved_model_cli`
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-04-21 16:40
    - 738.1K bytes
    - Viewed (1)
  2. .github/workflows/release-notes.yml

    name: Check closed issue release notes
    
    on:
      issues:
        types: [ closed ]
    
    permissions: {}
    
    jobs:
      check_release_notes:
        permissions:
          issues: write
        runs-on: ubuntu-latest
        steps:
          # Check that release-note-worthy issues have a PR with release notes attached
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-07-04 15:13
    - 344 bytes
    - Viewed (0)
  3. Dockerfile.release

        curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.minisig -o /go/bin/minio.minisig && \
        curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.sha256sum -o /go/bin/minio.sha256sum && \
        chmod +x /go/bin/minio
    
    # Download mc binary and signature files
    RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-09 14:28
    - 3K bytes
    - Viewed (0)
  4. .github/release-drafter.yml

    name-template: 'v Release $NEXT_PATCH_VERSION 🌈'
    tag-template: 'v$NEXT_PATCH_VERSION'
    categories:
      - title: '🚀 Features'
        labels:
          - 'feature'
          - 'enhancement'
      - title: '🐛 Bug Fixes'
        labels:
          - 'fix'
          - 'bugfix'
          - 'bug'
      - title: '🧰 Maintenance'
        label: 'chore'
    change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
    change-title-escapes: '\<*_&'
    template: |
      ## Changes
    
    Registered: 2025-05-25 09:35
    - Last Modified: 2024-10-09 11:31
    - 428 bytes
    - Viewed (0)
  5. Dockerfile.release.old_cpu

        curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.sha256sum -o /go/bin/minio.sha256sum && \
        chmod +x /go/bin/minio
    
    # Download mc binary and signature files
    RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-09 14:28
    - 3.1K bytes
    - Viewed (0)
  6. .github/workflows/create-release.yml

    name: Create Release
    
    on:
      push:
        tags:
          - 'v*.*.*'
    
    permissions:
      contents: write
      pull-requests: read
    
    jobs:
      create_release:
        name: Create Release
        runs-on: ubuntu-latest
    
        steps:
          - name: Checkout code
            uses: actions/checkout@v4
    
          - name: Generate Release Notes and Publish
            id: generate_release_notes
            uses: release-drafter/release-drafter@v6
    Registered: 2025-05-25 09:35
    - Last Modified: 2024-10-09 11:31
    - 663 bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    ## 0.112.4
    
    This release is mainly a big internal refactor to enable adding support for Pydantic models for `Form` fields, but that feature comes in the next release.
    
    This release shouldn't affect apps using FastAPI in any way. You don't even have to upgrade to this version yet. It's just a checkpoint. 🤓
    
    ### Refactors
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-22 09:45
    - 522.5K bytes
    - Viewed (0)
  8. .github/workflows/release-branch-cherrypick.yml

    # Usage: Go to
    # https://github.com/tensorflow/tensorflow/actions/workflows/release-branch-cherrypick.yml
    # and click "Run Workflow." Leave "Use Workflow From" set to "master", then
    # input the branch name and paste the cherry-pick commit and click Run. A PR
    # will be created.
    
    name: Release Branch Cherrypick
    on:
      workflow_dispatch:
        inputs:
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-04-01 08:48
    - 3.1K bytes
    - Viewed (0)
  9. .github/workflows/close-linked-issue-when-merged-into-release.yml

    name: Close linked issues when PR merged into release
    
    on:
      pull_request:
        types: [closed]
        branches:
          - release
          - release7x
    
    permissions:
      issues: write
    
    jobs:
      closeIssueOnPrMerge:
        runs-on: ubuntu-latest
        steps:
          - name: Closes issues related to a merged pull request.
            uses: ldez/gha-mjolnir@df0e84242364946fa3ad4e7556510e8086ad681a
            env:
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-04-11 22:14
    - 440 bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt

    ) {
        /**
         * 0~23.
         * To avoid nightly promotion jobs running at the same time,
         * we run each branch on different hours.
         * master - 0:00
         * release - 1:00
         * release6x - 2:00
         * release7x - 3:00
         * ...
         * releaseNx - (N-4):00
         */
        val nightlyPromotionTriggerHour: Int? = determineNightlyPromotionTriggerHour(branchName)
    
        /**
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-15 05:29
    - 3.7K bytes
    - Viewed (0)
Back to top