Merge remote-tracking branch 'upstream/release-56' into 0304-sync-release-56

This commit is contained in:
Ivan Dyachkov 2024-03-04 08:00:39 +01:00
commit 9f61239704
8 changed files with 23 additions and 11 deletions

View File

@ -24,7 +24,7 @@ jobs:
matrix: matrix:
profile: profile:
- ['emqx', 'master', '5.3-2:1.15.7-26.2.1-2'] - ['emqx', 'master', '5.3-2:1.15.7-26.2.1-2']
- ['emqx-enterprise', 'release-55', '5.3-2:1.15.7-25.3.2-2'] - ['emqx-enterprise', 'release-56', '5.3-2:1.15.7-25.3.2-2']
os: os:
- debian10 - debian10
- ubuntu22.04 - ubuntu22.04

View File

@ -25,6 +25,7 @@ jobs:
branch: branch:
- master - master
- release-55 - release-55
- release-56
language: language:
- cpp - cpp
- python - python

View File

@ -21,7 +21,7 @@ endif
# Dashboard version # Dashboard version
# from https://github.com/emqx/emqx-dashboard5 # from https://github.com/emqx/emqx-dashboard5
export EMQX_DASHBOARD_VERSION ?= v1.7.0 export EMQX_DASHBOARD_VERSION ?= v1.7.0
export EMQX_EE_DASHBOARD_VERSION ?= e1.5.1-s3 export EMQX_EE_DASHBOARD_VERSION ?= e1.6.0-beta.1
PROFILE ?= emqx PROFILE ?= emqx
REL_PROFILES := emqx emqx-enterprise REL_PROFILES := emqx emqx-enterprise

View File

@ -32,7 +32,7 @@
%% `apps/emqx/src/bpapi/README.md' %% `apps/emqx/src/bpapi/README.md'
%% Opensource edition %% Opensource edition
-define(EMQX_RELEASE_CE, "5.5.0"). -define(EMQX_RELEASE_CE, "5.6.0-alpha.1").
%% Enterprise edition %% Enterprise edition
-define(EMQX_RELEASE_EE, "5.5.0"). -define(EMQX_RELEASE_EE, "5.6.0-alpha.1").

View File

@ -14,8 +14,8 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
version: 5.5.0 version: 5.6.0-alpha.1
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. # incremented each time you make changes to the application.
appVersion: 5.5.0 appVersion: 5.6.0-alpha.1

View File

@ -14,8 +14,8 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
version: 5.5.0 version: 5.6.0-alpha.1
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. # incremented each time you make changes to the application.
appVersion: 5.5.0 appVersion: 5.6.0-alpha.1

View File

@ -21,6 +21,7 @@ options:
-b|--base: Specify the current release base branch, can be one of -b|--base: Specify the current release base branch, can be one of
release-55 release-55
release-56
NOTE: this option should be used when --dryrun. NOTE: this option should be used when --dryrun.
--dryrun: Do not actually create the git tag. --dryrun: Do not actually create the git tag.
@ -122,6 +123,12 @@ rel_branch() {
e5.5.*) e5.5.*)
echo 'release-55' echo 'release-55'
;; ;;
v5.6.*)
echo 'release-56'
;;
e5.6.*)
echo 'release-56'
;;
*) *)
logerr "Unsupported version tag $TAG" logerr "Unsupported version tag $TAG"
exit 1 exit 1

View File

@ -5,7 +5,7 @@ set -euo pipefail
# ensure dir # ensure dir
cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")/../.." cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")/../.."
BASE_BRANCHES=( 'release-55' 'master' ) BASE_BRANCHES=( 'release-56' 'release-55' 'master' )
usage() { usage() {
cat <<EOF cat <<EOF
@ -19,7 +19,8 @@ options:
upstreams branches for the current working branch. upstreams branches for the current working branch.
The uppstream branch of the current branch are as below: The uppstream branch of the current branch are as below:
* release-55: [] # no upstream for 5.5 opensource edition * release-55: [] # no upstream for 5.5 opensource edition
* master: [release-55] # sync release-55 to master * release-56: [] # no upstream for 5.6 opensource edition
* master: [release-5x] # sync release-5x to master
-b|--base: -b|--base:
The base branch of current working branch if currently is not The base branch of current working branch if currently is not
@ -154,8 +155,11 @@ upstream_branches() {
release-55) release-55)
remote_ref "$base" remote_ref "$base"
;; ;;
release-56)
remote_ref "$base"
;;
master) master)
remote_refs "$base" 'release-55' remote_refs "$base" 'release-55' 'release-56'
;; ;;
esac esac
} }