Skip to content

Commit 6a485fa

Browse files
committed
Merge branch 'release/v1.13.0'
2 parents e27e513 + b61bc0f commit 6a485fa

File tree

2 files changed

+30
-25
lines changed

2 files changed

+30
-25
lines changed

.mergify.yml

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
pull_request_rules:
2-
- name: "rebase unreviewed non-release PRs"
1+
queue_rules:
2+
- name: default
33
conditions:
4-
- "head~=^(?!(release|hotfix)).*$"
5-
- "#approved-reviews-by=0"
4+
- "#approved-reviews-by>=1"
65
- "#changes-requested-reviews-by=0"
76
- "-draft"
7+
8+
pull_request_rules:
9+
- name: "rebase non-release PRs"
10+
conditions:
11+
- "head~=^(?!(release|hotfix)).*$"
812
actions:
913
rebase:
1014

@@ -13,37 +17,38 @@ pull_request_rules:
1317
- "head~=^(?!(release|hotfix)).*$"
1418
- "#approved-reviews-by>=1"
1519
- "#changes-requested-reviews-by=0"
20+
- "#commits-behind=0"
1621
- "-draft"
1722
- "check-success=SonarCloud Code Analysis"
1823
actions:
19-
merge:
20-
strict: true
21-
strict_method: rebase
22-
method: merge
24+
queue:
25+
name: default
26+
update_method: rebase
2327

2428
- name: "merge non-release without-SonarCloud-but-from-dependabot PRs with strict rebase"
2529
conditions:
2630
- "head~=^(?!(release|hotfix)).*$"
2731
- "#approved-reviews-by>=1"
2832
- "#changes-requested-reviews-by=0"
33+
- "#commits-behind=0"
2934
- "-draft"
3035
- "author=dependabot[bot]"
3136
actions:
32-
merge:
33-
strict: true
34-
strict_method: rebase
35-
method: merge
37+
queue:
38+
name: default
39+
update_method: rebase
3640

3741
- name: "merge release PRs with strict merge"
3842
conditions:
3943
- "head~=^(release|hotfix).*$"
4044
- "#approved-reviews-by>=1"
4145
- "#changes-requested-reviews-by=0"
46+
- "#commits-behind=0"
4247
- "-draft"
4348
actions:
44-
merge:
45-
strict: true
46-
method: merge
49+
queue:
50+
name: default
51+
update_method: rebase
4752

4853
- name: "delete PR branches after merge"
4954
conditions:

pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>de.retest</groupId>
66
<artifactId>recheck.cli</artifactId>
7-
<version>1.12.0</version>
7+
<version>1.13.0</version>
88

99
<name>recheck.cli</name>
1010
<description>Command-line interface for recheck</description>
@@ -46,8 +46,8 @@
4646
<project.resources.sourceEncoding>UTF-8</project.resources.sourceEncoding>
4747
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4848
<maven.surefire.and.failsafe.version>2.22.2</maven.surefire.and.failsafe.version>
49-
<junit.jupiter.version>5.7.2</junit.jupiter.version>
50-
<junit.vintage.version>5.7.2</junit.vintage.version>
49+
<junit.jupiter.version>5.8.2</junit.jupiter.version>
50+
<junit.vintage.version>5.8.2</junit.vintage.version>
5151
</properties>
5252

5353
<distributionManagement>
@@ -76,25 +76,25 @@
7676
<dependency>
7777
<groupId>de.retest</groupId>
7878
<artifactId>recheck</artifactId>
79-
<version>1.12.0</version>
79+
<version>1.13.0</version>
8080
</dependency>
8181

8282
<dependency>
8383
<groupId>info.picocli</groupId>
8484
<artifactId>picocli</artifactId>
85-
<version>4.6.1</version>
85+
<version>4.6.3</version>
8686
</dependency>
8787

8888
<dependency>
8989
<groupId>org.fusesource.jansi</groupId>
9090
<artifactId>jansi</artifactId>
91-
<version>2.3.3</version>
91+
<version>2.4.0</version>
9292
</dependency>
9393

9494
<dependency>
9595
<groupId>ch.qos.logback</groupId>
9696
<artifactId>logback-classic</artifactId>
97-
<version>1.2.3</version>
97+
<version>1.2.11</version>
9898
</dependency>
9999

100100
<!-- test dependencies -->
@@ -123,7 +123,7 @@
123123
<dependency>
124124
<groupId>org.assertj</groupId>
125125
<artifactId>assertj-core</artifactId>
126-
<version>3.20.2</version>
126+
<version>3.22.0</version>
127127
<scope>test</scope>
128128
</dependency>
129129

@@ -145,7 +145,7 @@
145145
<plugins>
146146
<plugin>
147147
<artifactId>maven-compiler-plugin</artifactId>
148-
<version>3.8.1</version>
148+
<version>3.10.0</version>
149149
<configuration>
150150
<source>${java.version}</source>
151151
<target>${java.version}</target>
@@ -189,7 +189,7 @@
189189
<plugin>
190190
<groupId>com.amashchenko.maven.plugin</groupId>
191191
<artifactId>gitflow-maven-plugin</artifactId>
192-
<version>1.16.0</version>
192+
<version>1.18.0</version>
193193
<configuration>
194194
<gitFlowConfig>
195195
<productionBranch>main</productionBranch>

0 commit comments

Comments
 (0)