Skip to content

Commit

Permalink
chore: Release 2.7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrouand committed Mar 19, 2024
1 parent dc06444 commit 26baa8d
Show file tree
Hide file tree
Showing 23 changed files with 83 additions and 32 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/release-github-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@ name: "Release on Github"

on:
workflow_call:

inputs:
publish-to-github-maven-registry:
default: true
type: boolean
description: "Skip publish-to-github-maven-registry if false"
jobs:
create-github-release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Create github release
id: create_release
Expand All @@ -23,7 +29,7 @@ jobs:

publish-to-github-maven-registry:
uses: ./.github/workflows/build-all-template.yml
if: ${{ github.ref_name =~ ^\d+\.\d+\.\d+\.\d+$ }}
if: ${{inputs.publish-to-github-maven-registry}}
with:
release: true
secrets:
Expand All @@ -33,6 +39,8 @@ jobs:


upload-plugin-to-release:
permissions:
contents: write
needs: [ create-github-release]
runs-on: ubuntu-latest
steps:
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/release-to-github.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: "Release to github registry"

on:
push:
tags:
- '[1-9]+.[0-9]+.[0-9]+.[0-9]+'

jobs:
build:
uses: ./.github/workflows/build-all-template.yml
with:
skipTests: true
cache-artifacts: |
chutney/packaging/local-dev/target/chutney-local-dev-*.jar
idea-plugin/build/distributions/*.zip
chutney/ui/dist
release-github:
needs: [ build ]
uses: ./.github/workflows/release-github-template.yml

release-docker:
needs: [ build ]
uses: ./.github/workflows/release-docker-template.yml
with:
version: ${{needs.build.outputs.PROJECT_VERSION}}
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}

Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: "Release all"
name: "Release to OSSRH"

on:
push:
tags:
- '*.*.*'
- '*.*.*.*'
- '[1-9]+.[0-9]+.[0-9]+'

jobs:
build:
Expand All @@ -19,9 +18,10 @@ jobs:
release-github:
needs: [ build ]
uses: ./.github/workflows/release-github-template.yml
with:
publish-to-github-maven-registry: false

release-to-OSSRH:
if: ${{ github.ref_name =~ ^\d+\.\d+\.\d+$) }}
needs: [ build ]
uses: ./.github/workflows/build-all-template.yml
with:
Expand Down
26 changes: 20 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
# Changelog
## What's Changed

## [2.7.1-RC](https://github.com/chutney-testing/chutney/tree/2.7.1-RC)
## [2.7.0.1](https://github.com/chutney-testing/chutney/tree/2.7.0.1)

### 🚀 Implemented enhancements:
* Increase close area on executions tabs by @KarimGl in https://github.com/chutney-testing/chutney/pull/14
* Right menu -> middle menu by @nbrouand in https://github.com/chutney-testing/chutney/pull/18
### 🐛 Fixed bugs:
* fix(server): remove write numbers as strings in reports by @KarimGl in https://github.com/chutney-testing/chutney/pull/11
* Get campaign fetches executions from db by @KarimGl in https://github.com/chutney-testing/chutney/pull/32
* getLastExecutions returns the last running exec if available, otherwise the last exec by @KarimGl in https://github.com/chutney-testing/chutney/pull/33
* Remove write numbers as strings in reports by @KarimGl in https://github.com/chutney-testing/chutney/pull/11
### 🔧 Technical enhancements:
* chore(): Clean transitive dependencies from kotlin-dsl & server packaging jar name by @KarimGl in https://github.com/chutney-testing/chutney/pull/12
* log login and logout actions by @KarimGl in https://github.com/chutney-testing/chutney/pull/20
* Clean JIRA service log by @boddissattva in https://github.com/chutney-testing/chutney/pull/19
* Updating contributing for new release management by @nbrouand in https://github.com/chutney-testing/chutney/pull/31
* Chutney selenium action test - Use correct web driver output key by @boddissattva in https://github.com/chutney-testing/chutney/pull/35
* Allow build with TestContainers' test for kotlin-dsl on docker in WSL2 without desktop by @boddissattva in https://github.com/chutney-testing/chutney/pull/37
* Clean transitive dependencies from kotlin-dsl & server packaging jar name by @KarimGl in https://github.com/chutney-testing/chutney/pull/12
### 👒 Dependencies:
* chore(deps): Bump org.codehaus.mojo:exec-maven-plugin from 3.1.1 to 3.2.0 in /chutney by @dependabot in https://github.com/chutney-testing/chutney/pull/21
* chore(deps): Bump org.codehaus.mojo:build-helper-maven-plugin from 3.3.0 to 3.5.0 in /chutney by @dependabot in https://github.com/chutney-testing/chutney/pull/25
* chore(deps): Bump org.testcontainers:testcontainers-bom from 1.19.3 to 1.19.6 in /chutney by @dependabot in https://github.com/chutney-testing/chutney/pull/29

**[Full Changelog](https://github.com/chutney-testing/chutney/commits/2.7.1-RC)**
**[Full Changelog](https://github.com/chutney-testing/chutney/compare/Mono-repo...2.7.0.1)**

## Please check release note before 2.7.1 here :

## Please check release note before 2.7.0.1 here :

- [chutney](https://github.com/chutney-testing/chutney-legacy/releases)
- [kotlin-dsl](https://github.com/chutney-testing/chutney-kotlin-dsl-legacy/releases)
Expand Down
2 changes: 1 addition & 1 deletion chutney/action-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>action-impl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/action-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>action-spi</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/chutney-junit/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-junit-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>chutney-junit-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/chutney-junit/engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-junit-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>chutney-junit-engine</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/chutney-junit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>chutney-junit-parent</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>engine</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/environment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>chutney-parent</artifactId>
<groupId>com.chutneytesting</groupId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion chutney/glacio-adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>glacio-adapter</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/jira/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>chutney-parent</artifactId>
<groupId>com.chutneytesting</groupId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion chutney/packaging/local-api-unsecure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>packaging</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>local-api-unsecure</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/packaging/local-dev/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>packaging</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>local-dev</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/packaging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>
<artifactId>packaging</artifactId>
<packaging>pom</packaging>
Expand Down
4 changes: 2 additions & 2 deletions chutney/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.chutneytesting</groupId>
<artifactId>chutney-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
<packaging>pom</packaging>

<name>Chutney</name>
Expand Down Expand Up @@ -48,7 +48,7 @@
<url>https://github.com/chutney-testing/chutney.git</url>
<connection>scm:git:[email protected]:chutney-testing/chutney.git</connection>
<developerConnection>scm:git:[email protected]:chutney-testing/chutney.git</developerConnection>
<tag>2.7.1-RC</tag>
<tag>2.7.0.1</tag>
</scm>

<issueManagement>
Expand Down
2 changes: 1 addition & 1 deletion chutney/server-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>chutney-parent</artifactId>
<groupId>com.chutneytesting</groupId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>server-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>server</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>tools</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion chutney/ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-parent</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.0.1</version>
</parent>

<artifactId>ui</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion idea-plugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ org.gradle.jvmargs=-Xmx2048M

pluginGroup = com.chutneytesting.idea
pluginName = chutney-idea-plugin
chutneyVersion = 2.7.1-SNAPSHOT
chutneyVersion = 2.7.0.1

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand Down
2 changes: 1 addition & 1 deletion kotlin-dsl/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
chutneyVersion = 2.7.1-SNAPSHOT
chutneyVersion = 2.7.0.1

0 comments on commit 26baa8d

Please sign in to comment.