File tree 2 files changed +14
-2
lines changed
crates/stackable-operator
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
+ ### Fixed
8
+
9
+ - Product image selection pull request version override now only applies to pull requests ([ #812 ] ).
10
+
11
+ [ #812 ] : https://github.com/stackabletech/operator-rs/pull/812
12
+
7
13
## [ 0.69.3] - 2024-06-12
8
14
9
15
### Fixed
Original file line number Diff line number Diff line change @@ -130,8 +130,14 @@ impl ProductImage {
130
130
let stackable_version = match & image_selection. stackable_version {
131
131
Some ( stackable_version) => stackable_version,
132
132
None => {
133
- if operator_version. starts_with ( "0.0.0-" ) {
134
- "0.0.0-dev"
133
+ if operator_version. starts_with ( "0.0.0-pr" ) {
134
+ let override_version = "0.0.0-dev" ;
135
+ tracing:: warn!(
136
+ operator_version,
137
+ override_version,
138
+ "operator is built by pull request, using dev build of product image"
139
+ ) ;
140
+ override_version
135
141
} else {
136
142
operator_version
137
143
}
You can’t perform that action at this time.
0 commit comments