Skip to content

Commit 20990ed

Browse files
authored
Merge pull request #8383 from oscr/add-1.5-migration-docs
📖 Add 1.4 -> 1.5 migrations doc. Move migrations docs to single folder.
2 parents 344ccb8 + 1da2a49 commit 20990ed

File tree

9 files changed

+48
-12
lines changed

9 files changed

+48
-12
lines changed

docs/book/src/SUMMARY.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,13 @@
8080
- [Support multiple instances](./developer/architecture/controllers/support-multiple-instances.md)
8181
- [Provider Implementers](./developer/providers/implementers.md)
8282
- [Version migration](./developer/providers/version-migration.md)
83-
- [v0.3 to v0.4](./developer/providers/v0.3-to-v0.4.md)
84-
- [v0.4 to v1.0](./developer/providers/v0.4-to-v1.0.md)
85-
- [v1.0 to v1.1](./developer/providers/v1.0-to-v1.1.md)
86-
- [v1.1 to v1.2](./developer/providers/v1.1-to-v1.2.md)
87-
- [v1.2 to v1.3](./developer/providers/v1.2-to-v1.3.md)
88-
- [v1.3 to v1.4](./developer/providers/v1.3-to-v1.4.md)
83+
- [v0.3 to v0.4](./developer/providers/migrations/v0.3-to-v0.4.md)
84+
- [v0.4 to v1.0](./developer/providers/migrations/v0.4-to-v1.0.md)
85+
- [v1.0 to v1.1](./developer/providers/migrations/v1.0-to-v1.1.md)
86+
- [v1.1 to v1.2](./developer/providers/migrations/v1.1-to-v1.2.md)
87+
- [v1.2 to v1.3](./developer/providers/migrations/v1.2-to-v1.3.md)
88+
- [v1.3 to v1.4](./developer/providers/migrations/v1.3-to-v1.4.md)
89+
- [v1.4 to v1.5](./developer/providers/migrations/v1.4-to-v1.5.md)
8990
- [Provider contracts](./developer/providers/contracts.md)
9091
- [Cluster Infrastructure](./developer/providers/cluster-infrastructure.md)
9192
- [Machine Infrastructure](./developer/providers/machine-infrastructure.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Cluster API v1.4 compared to v1.5
2+
3+
This document provides an overview over relevant changes between Cluster API v1.4 and v1.5 for
4+
maintainers of providers and consumers of our Go API.
5+
6+
## Minimum Go version
7+
8+
- The Go version used by Cluster API is still Go 1.19.x
9+
10+
## Dependencies
11+
12+
**Note**: Only the most relevant dependencies are listed, `k8s.io/` and `ginkgo`/`gomega` dependencies in Cluster API are kept in sync with the versions used by `sigs.k8s.io/controller-runtime`.
13+
14+
## Changes by Kind
15+
16+
### Deprecation
17+
18+
-
19+
20+
### Removals
21+
22+
-
23+
24+
### API Changes
25+
26+
-
27+
28+
### Other
29+
30+
-
31+
32+
### Suggested changes for providers
33+
34+
-

docs/book/src/developer/providers/version-migration.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
The following pages provide an overview of relevant changes between versions of Cluster API and their direct successors. These guides are intended to assist
44
maintainers of other providers and consumers of the Go API in upgrading from one version of Cluster API to a subsequent version.
55

6-
- [v0.3 to v0.4](v0.3-to-v0.4.md)
7-
- [v0.4 to v1.0](v0.4-to-v1.0.md)
8-
- [v1.0 to v1.1](v1.0-to-v1.1.md)
9-
- [v1.1 to v1.2](v1.1-to-v1.2.md)
10-
- [v1.2 to v1.3](v1.2-to-v1.3.md)
11-
- [v1.3 to v1.4](v1.3-to-v1.4.md)
6+
- [v0.3 to v0.4](migrations/v0.3-to-v0.4.md)
7+
- [v0.4 to v1.0](migrations/v0.4-to-v1.0.md)
8+
- [v1.0 to v1.1](migrations/v1.0-to-v1.1.md)
9+
- [v1.1 to v1.2](migrations/v1.1-to-v1.2.md)
10+
- [v1.2 to v1.3](migrations/v1.2-to-v1.3.md)
11+
- [v1.3 to v1.4](migrations/v1.3-to-v1.4.md)
12+
- [v1.4 to v1.5](migrations/v1.4-to-v1.5.md)

0 commit comments

Comments
 (0)