Skip to content

Commit 9ae3594

Browse files
committed
Merge branch '1.36.1' into merge-1.36.1-into-master
2 parents fa5bcbf + 1aadcdb commit 9ae3594

File tree

8 files changed

+52
-7
lines changed

8 files changed

+52
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# Changelog
22
Changes to this project are documented in this file. More detail and links can be found in the Declarative Onboarding [Document Revision History](https://clouddocs.f5.com/products/extensions/f5-declarative-onboarding/latest/revision-history.html).
33

4+
## 1.36.1
5+
### Added
6+
7+
### Fixed
8+
9+
### Changed
10+
- Promoted to LTS
11+
12+
### Removed
13+
414
## 1.36.0
515
### Added
616

SUPPORT.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ Currently supported versions:
1313

1414
| Software Version | Release Type | First Customer Ship | End of Support |
1515
|------------------|---------------|---------------------|-----------------|
16-
| DO 1.27.1 | LTS | 08-Mar-2022 | 08-Mar-2023 |
1716
| DO 1.34.0 | Feature | 15-Nov-2022 | 15-Feb-2023 |
1817
| DO 1.35.0 | Feature | 12-Jan-2023 | 12-Apr-2023 |
1918
| DO 1.36.0 | Feature | 09-Feb-2023 | 09-May-2023 |
19+
| DO 1.36.1 | LTS | 09-Mar-2023 | 09-Mar-2024 |
2020

2121

2222
\* Fix for Allowed schema version
@@ -62,6 +62,7 @@ Versions no longer supported:
6262
| DO 1.31.0 | Feature | 15-Jul-2022 | 15-Oct-2022 |
6363
| DO 1.32.0 | Feature | 23-Aug-2022 | 23-Nov-2022 |
6464
| DO 1.33.0 | Feature | 04-Oct-2022 | 04-Jan-2023 |
65+
| DO 1.27.1 | LTS | 08-Mar-2022 | 08-Mar-2023 |
6566

6667
\* Fix for updated Docker Container packaging only
6768

contributing/process_release.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,36 @@
3030
* Tag the appropriate branch with the updated version (e.g. v1.34.0-4). The tag will kick off a DO pipeline with integration tests.
3131
* If the DO pipeline is successful, that pipeline will upload the build artifacts to Artifactory and send the release email to the `f5-declarative-onboarding` distribution list.
3232

33+
## Process for LTS release
34+
* Using the GitLab GUI, create a branch from the release branch that we are declaring LTS. Bump the patch version by 1. For example, if we are declaring 1.36.0 to be LTS, then create a 1.36.1 branch from 1.36.0.
35+
* On your local machine, fetch and checkout the LTS branch.
36+
* Create a new local branch from the LTS branch (e.g. "prepare-1.36.1-release").
37+
* Update the patch version in `package.json` and `package-lock.json`. The release number of the new version should start at 0 (e.g. 1.36.0-4 would become 1.36.1-0).
38+
* Add a new CHANGELOG section that looks like
39+
```
40+
## 1.36.1
41+
### Added
42+
43+
### Fixed
44+
45+
### Changed
46+
- Promoted to LTS
47+
48+
### Removed
49+
```
50+
* Create an MR for these changes. Important: Remember to set the branch you are merging into to the LTS branch.
51+
* Go to the atg-build project in GitLab
52+
* Edit the DO schedule to set the `gitBranch` variable to the LTS branch.
53+
* Run the DO schedule.
54+
* After the build completes, edit the DO schedule to set the `gitBranch` variable back to develop.
55+
* Using the GUI create a tag off the LTS branch (e.g. 1.36.1)
56+
* In the GUI go to `Repository -> Tags -> New tag`.
57+
* The name of the tag should be the LTS version with a 'v' at the front (e.g. v1.36.1).
58+
* Update the `createFrom` to point at the LTS branch.
59+
* Set the message to: `LTS release v<LTS version>` (e.g. "LTS release v1.36.1")
60+
* Merge the release branch (without updating the package version) into develop and create an MR for this.
61+
* Merge the release branch (without updating the package version) into master and create an MR for this.
62+
3363
## Process for release
3464
### Begin process release at the very beginning of the first sprint of a new release, by performing the following actions:
3565
* Follow the instructions for setting up a release candidate (see [Process for release candidates](#Process-for-release-candidates)).

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
# The short X.Y version.
8686
version = u''
8787
# The full version, including alpha/beta/rc tags.
88-
release = u'1.36.0'
88+
release = u'1.36.1'
8989

9090
# The language for content autogenerated by Sphinx. Refer to documentation
9191
# for a list of supported languages.

docs/revision-history.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Document Revision History
1111
- Description
1212
- Date
1313

14+
* - 1.36.1
15+
- Released BIG-IP Declarative Onboarding 1.36.1 as a LTS (Long Term Support) version. See the BIG-IP Declarative Onboarding |supportmd| for information about the BIG-IP Declarative Onboarding support policy.
16+
- 3-9-23
17+
1418
* - 1.36
1519
- Updated the documentation for Declarative Onboarding v1.36.0. This release contains the following changes: |br| * The default value for **allowService** on a **SelfIp** is now **none** (see :ref:`Self IP class<selfip-class>`) |br| * Updated VXLAN tunnel creation to respect TrafficControl acceptIpOptions values (see the note in :ref:`VXLAN tunnels<vxlan>`)
1620
- 2-9-23

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "f5-declarative-onboarding",
3-
"version": "1.36.0-4",
3+
"version": "1.36.1-1",
44
"description": "F5 Declarative Onboarding",
55
"main": "index.js",
66
"repository": {

versions.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"versionMetaTimestamp": 1540928503,
33
"latestVersion": {
4-
"name": "1.35 (non-LTS)",
4+
"name": "1.36 (non-LTS)",
55
"url": "/products/extensions/f5-declarative-onboarding/latest/"
66
},
77
"otherVersions": [
8-
{ "name": "1.21.1 (LTS)", "url": "/products/extensions/f5-declarative-onboarding/1.21/"},
9-
{ "name": "1.27.1 (LTS)", "url": "/products/extensions/f5-declarative-onboarding/1.27/" }
8+
{ "name": "1.27.1 (LTS)", "url": "/products/extensions/f5-declarative-onboarding/1.27/"},
9+
{ "name": "1.36.1 (LTS)", "url": "/products/extensions/f5-declarative-onboarding/1.36/" }
1010
]
1111
}

0 commit comments

Comments
 (0)