From 64d8c5fcfaa566afdbe2d53be81798c8733834fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Mon, 18 Nov 2024 08:51:07 +0100 Subject: [PATCH] End of support of version 1.15 --- .github/renovate.json5 | 2 +- .github/workflows/rebuild-115.yaml | 75 ------------------------------ SECURITY.md | 5 +- 3 files changed, 2 insertions(+), 80 deletions(-) delete mode 100644 .github/workflows/rebuild-115.yaml diff --git a/.github/renovate.json5 b/.github/renovate.json5 index a4a1db599..82e0c8fa6 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -12,7 +12,7 @@ automerge: true, schedule: 'after 5pm on the first day of the month', }, - baseBranches: ['1.15', '1.17', '1.18', '1.19', '1.20', '1.21', '1.22', 'master'], + baseBranches: ['1.17', '1.18', '1.19', '1.20', '1.21', '1.22', 'master'], 'pre-commit': { enabled: true }, regexManagers: [ /** Do updates on pre-commit additional dependencies */ diff --git a/.github/workflows/rebuild-115.yaml b/.github/workflows/rebuild-115.yaml deleted file mode 100644 index f616c985c..000000000 --- a/.github/workflows/rebuild-115.yaml +++ /dev/null @@ -1,75 +0,0 @@ -name: Rebuild 1.15 - -on: - schedule: - - cron: 30 2 * * * - -jobs: - rebuild: - runs-on: ubuntu-24.04 - name: Rebuild 1.15 - timeout-minutes: 20 - - strategy: - fail-fast: false - matrix: - include: - - branch: '1.15' - python-version: '3.10' - - env: - REDIS_URL: redis://localhost:6379 - - steps: - - uses: actions/checkout@v4 - with: - ref: ${{ matrix.branch }} - - - uses: camptocamp/initialise-gopass-summon-action@v2 - with: - ci-gpg-private-key: ${{secrets.CI_GPG_PRIVATE_KEY}} - github-gopass-ci-token: ${{secrets.GOPASS_CI_GITHUB_TOKEN}} - patterns: pypi docker - if: github.repository == 'camptocamp/tilecloud-chain' - - - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - run: python3 -m pip install --user --requirement=ci/requirements.txt - - - name: Checks - run: c2cciutils-checks - - - run: touch tilecloud_chain/OpenLayers.js - - - name: Build - run: | - python setup.py --long-description > PYPI.md - docker build --tag=camptocamp/tilecloud-chain:tests --target=tests . - docker build --tag=camptocamp/tilecloud-chain . - git --no-pager diff --check `git log --oneline | tail -1 | cut --fields=1 --delimiter=' '` - - - name: Start - run: | - docker compose up -d - - # Wait for DB to be up - while ! docker compose exec -T test psql -h db -p 5432 -U postgres -v ON_ERROR_STOP=1 -c "SELECT 1" -d tests - do - echo "Waiting for DB to be UP" - sleep 1 - done - timeout-minutes: 2 - - name: Test - run: | - docker compose exec -T test pytest - - docker compose down - - - run: docker compose logs - if: failure() - - - run: python3 -m pip install --requirement=requirements-publish.txt - - - name: Publish - run: c2cciutils-publish --type=rebuild --branch=${{ matrix.branch }} diff --git a/SECURITY.md b/SECURITY.md index 8bc2865de..913e26f36 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,10 +4,7 @@ | Version | Supported Until | | ------- | --------------- | -| <= 1.13 | Unsupported | -| 1.14 | Unsupported | -| 1.15 | Best effort | -| 1.16 | Unsupported | +| <=1.16 | Unsupported | | 1.17 | 23/06/2025 | | 1.18 | Best effort | | 1.19 | Best effort |