-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrelease_management.yaml
53 lines (53 loc) · 2.58 KB
/
release_management.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
questions:
-
uuid: 1eebf878-8ba5-653a-8ac7-99d84c92580c
question: 'Every how long does a major version of symfony come out? (e.g. 5.0, 6.0, 7.0)'
answers:
- { value: 'every years', correct: false }
- { value: 'every 2 years', correct: true }
- { value: 'every 3 years', correct: false }
- { value: 'every 4 years', correct: false }
help: 'https://symfony.com/doc/current/contributing/community/releases.html'
-
uuid: 1eebf878-8ba5-658a-9bbb-99d84c92580c
question: 'How often is a new minor version of Symfony released? (e.g., 5.4, 6.0, 6.1)'
answers:
- { value: '4 months', correct: false }
- { value: '6 months', correct: true }
- { value: '8 months', correct: false }
- { value: '12 months', correct: false }
help: 'https://symfony.com/doc/current/contributing/community/releases.html'
-
uuid: 1eebf878-8ba5-65d0-913a-99d84c92580c
question: 'Every how long does a patch version of symfony come out? ((e.g. 5.4.12, 6.1.9)'
answers:
- { value: 'every weeks', correct: false }
- { value: 'every 2 weeks', correct: false }
- { value: 'every months', correct: true }
- { value: 'every 2 months', correct: false }
- { value: 'every 3 months', correct: false }
help: 'https://symfony.com/doc/current/contributing/community/releases.html'
-
uuid: 1eebf878-8ba5-6616-af00-99d84c92580c
question: 'Which Major, Minor, Patch Version contains breaking changes, so you may need to do some changes in your applications before upgrading ?'
answers:
- { value: Major, correct: true }
- { value: Minor, correct: false }
- { value: Patch, correct: false }
help: 'https://symfony.com/doc/current/contributing/community/releases.html'
-
uuid: 1eebf878-8ba5-665c-8c21-99d84c92580c
question: "Which Major, Minor, Patch Version contains bug fixes and new features, can contain new deprecations but it doesn't include any breaking change, so you can safely upgrade your applications; ?"
answers:
- { value: Major, correct: false }
- { value: Minor, correct: true }
- { value: Patch, correct: false }
help: 'https://symfony.com/doc/current/contributing/community/releases.html'
-
uuid: 1eebf878-8ba5-66a2-af75-99d84c92580c
question: 'Which Major, Minor, Patch Version contains bug fixes, so you can safely upgrade your applications; ?'
answers:
- { value: Major, correct: false }
- { value: Minor, correct: false }
- { value: Patch, correct: true }
help: 'https://symfony.com/doc/current/contributing/community/releases.html'