Skip to content

Commit e484401

Browse files
authored
Add upcoming deprecations page (#307)
* Add upcoming deprecations page * Add support link
1 parent 3ae665d commit e484401

File tree

5 files changed

+43
-2
lines changed

5 files changed

+43
-2
lines changed

content/announcements/2023 September.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title: Upcoming stack changes for Xcode 14 and 15
33
type: basic_page
4+
params:
5+
archived: true
6+
bookHidden: true
47
---
58

69
According to our [stack update policy](https://devcenter.bitrise.io/en/infrastructure/build-stacks/stack-update-policy.html) release of Xcode 15 GA means we'll be transitioning our current Edge stacks to the matching Stable stacks. This could present breaking changes for some workflows.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: Upcoming stack deprecations
3+
type: basic_page
4+
---
5+
6+
Stacks are not kept forever, older stacks are eventually marked for removal. You can read more about this in our [stack deprecation and removal policy](https://devcenter.bitrise.io/en/infrastructure/build-stacks/stack-deprecation-and-removal-policy.html).
7+
8+
This page is an up-to-date overview of upcoming stack deprecations.
9+
10+
### Upcoming stack deprecations
11+
12+
The following table shows the currently deprecated stacks that are marked for removal.
13+
14+
While the stack is marked as deprecated, you can still run builds on it, but it's recommended to migrate your workflows to a more modern stack. On the day of removal, remaining users will be migrated to the stack shown in the _Automatic migration to_ column. If you encounter any difficulties during migration or require support, our dedicated [customer support team](https://support.bitrise.io) would be happy to assist.
15+
16+
| Stack ID | Deprecated from | Removed after | Automatic migration to |
17+
| ------------------------------------ | --------------- | ------------- | -------------------------------- |
18+
| **osx-xcode-13.0.x** | 2024-02-21 | 2024-03-20 | osx-xcode-13.4.x |
19+
| **osx-xcode-13.0.x-rosetta** | 2024-02-21 | 2024-03-20 | osx-xcode-14.2.x-ventura-rosetta |
20+
| **osx-xcode-13.1.x** | 2024-02-21 | 2024-03-20 | osx-xcode-13.4.x |
21+
| **osx-xcode-13.2.x** | 2024-02-21 | 2024-03-20 | osx-xcode-13.4.x |
22+
| **osx-xcode-13.2.x-rosetta** | 2024-02-21 | 2024-03-20 | osx-xcode-14.2.x-ventura-rosetta |
23+
| **osx-xcode-13.3.x-rosetta** | 2024-02-21 | 2024-03-20 | osx-xcode-14.2.x-ventura-rosetta |
24+
| **osx-xcode-13.4.x-rosetta** | 2024-02-21 | 2024-03-20 | osx-xcode-14.2.x-ventura-rosetta |
25+
| **osx-xcode-14.0.x-ventura** | 2024-02-21 | 2024-03-20 | osx-xcode-14.3.x-ventura |
26+
| **osx-xcode-14.0.x-ventura-rosetta** | 2024-02-21 | 2024-03-20 | osx-xcode-14.2.x-ventura-rosetta |
27+
| **osx-xcode-14.1.x-ventura-rosetta** | 2024-02-21 | 2024-03-20 | osx-xcode-14.2.x-ventura-rosetta |
28+
| **linux-docker-android-20.04** | August 2024* | October 2024* | linux-docker-android-22.04 |
29+
30+
*Exact date to be announced

content/announcements/curl-CVE-2023-38545.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title: cURL CVE-2023-38545
33
type: basic_page
4+
params:
5+
archived: true
6+
bookHidden: true
47
---
58

69
The cURL project has recently published a security advisory for [CVE-2023-38545](https://curl.se/docs/CVE-2023-38545.html).

themes/bitrise/layouts/basic_page/list.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{{ define "main" }}
22
{{ range sort .Paginator.Pages }}
3+
{{ if .Params.params.archived }}
4+
{{ continue }}
5+
{{ end }}
36
<article class="markdown book-post">
47
<h2>
58
<a href="{{ .RelPermalink }}">{{ partial "docs/title.html" . }}</a>

themes/bitrise/layouts/index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ <h1>{{ .Title }}</h1>
1515
<section class="list-item">
1616
<h1 class="title"><a href="{{ .RelPermalink }}">{{.Title}}</a></h1>
1717
<ul>
18-
1918
{{ range .Pages }}
20-
<li><a href="{{ .RelPermalink }}">{{ .Title }}</li>
19+
{{ if .Params.params.archived }}
20+
{{ continue }}
21+
{{ end }}
22+
<li><a href="{{ .RelPermalink }}">{{ .Title }}</li>
2123
{{ end }}
2224
</ul>
2325
</section>

0 commit comments

Comments
 (0)