Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LPD 41339 release version 7.0.2 #344

Merged
merged 5 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 9 additions & 34 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,45 +32,17 @@ jobs:
shell: bash
run: |
./gradlew --no-daemon checkSourceFormatting
LinuxJDK8:
name: Linux JDK8
RunTests:
name: Linux JDK${{matrix.javaVersion}}
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup Java 8
- name: Setup Java ${{matrix.javaVersion}}
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'zulu'
cache: gradle
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build
shell: bash
env:
GITHUB_CI: "true"
run: |
./run-tests.sh
LinuxJDK11:
name: Linux JDK11
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup Java 11
uses: actions/setup-java@v3
with:
java-version: 11.0.20
java-version: ${{matrix.javaVersion}}
distribution: 'zulu'
cache: gradle
- name: Cache
Expand All @@ -89,11 +61,14 @@ jobs:
run: |
./run-tests.sh
- name: Upload tests zip
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: LinuxJDK11-tests.zip
name: LinuxJDK${{matrix.javaVersion}}-tests.zip
path: tests.zip
strategy:
matrix:
javaVersion: [8, 11]
#MacOSJDK11:
# name: MacOS JDK11
# runs-on: macos-latest
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.commits
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
7.0.2:d4bafa36754932ec4b00325a690fb42ea82bdae4..984c77401db4a3e168fdd02c02bc1e7890feae88
7.0.1:bd4ed0488324ce2a6e3cd35efd8c77da90720362..d4bafa36754932ec4b00325a690fb42ea82bdae4
7.0.0:8232a7a9b4f171cd39d308d86eefd9ce2121769e..bd4ed0488324ce2a6e3cd35efd8c77da90720362
6.0.0:24b33093382cf2e0d14b7b22cc6f15786cb0c267..8232a7a9b4f171cd39d308d86eefd9ce2121769e
Expand Down
51 changes: 51 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,54 @@
# Liferay Blade CLI Change Log

## 7.0.2 - 2024-11-11

### Commits
- [LPD-41339] liferay-blade-cli: workflow: parameterize the jobs that are
otherwise identical except for JDK version (35f153225c)
- [LPD-41339] liferay-blade-cli: workflow: bumps version of upload-artifact
(ab74e7df78)
- [LPD-41339] liferay-blade-cli: put jcenter last (4b4eadc9eb)
- [LPD-32781] cli: bnd.bnd: includes org.apache.http at runtime (b2bb226c16)
- [LPD-32781] cli: bumps com.liferay.project.templates to 5.0.297 (c322469341)
- [LPD-32781] cli: use string matching on the docker property to get the target
platform version from the docker image property (49dba7b3f0)
- [LPD-32781] liferay-blade-cli: auto SF (57243dd6f6)
- [LPD-32781] extensions: bumps project templates compatible version ranges
(b124de1dbe)
- [LPD-32781] liferay-blade-cli: removes unused ResourceUtil (dafdd33d09)
- [LPD-32781] liferay-blade-cli: CreateCommand: normalizes version string before
checking Version range (da782b67f6)
- [LPD-32781] liferay-blade-cli: updates getProduct methods in WorkspaceProvider
classes (ca01fea6c5)
- [LPD-32781] liferay-blade-cli: updates usages to use new lib and util in tests
(d145cd6899)
- [LPD-32781] liferay-blade-cli: updates usages to use new lib and util
(c7bcbf9321)
- [LPD-32781] liferay-blade-cli: ReleaseUtil extends from lib ReleaseUtil
(3d8c2ebc81)
- [LPD-32781] includes lib classes in resulting jar (0e77920e1c)
- [LPD-32781] adds com.liferay.release.util dependency (dcb3cc70d9)
- [LPD-32781] cli: bumps project templates dependency version (45263216e5)

### Dependencies
- [LPD-41339] Update the com.liferay.blade.extensions.maven.profile dependency
to version 1.0.42.
- [LPD-41339] Update the com.liferay.project.templates.js.theme dependency to
version 1.0.25.
- [LPD-41339] Update the com.liferay.project.templates.js.widget dependency to
version 1.0.26.
- [LPD-32781] Update the com.liferay.project.templates dependency to version
5.0.298.
- [LPD-32781] Update the com.liferay.release.util dependency to version 1.0.0.
- [LPD-32781] Update the com.liferay.project.templates dependency to version
5.0.296.
- [LPD-32144] Update the com.liferay.blade.extensions.maven.profile dependency
to version 1.0.42-SNAPSHOT.
- [LPD-32144] Update the com.liferay.project.templates.js.theme dependency to
version 1.0.25-SNAPSHOT.
- [LPD-32144] Update the com.liferay.project.templates.js.widget dependency to
version 1.0.26-SNAPSHOT.

## 7.0.1 - 2024-07-26

### Commits
Expand Down Expand Up @@ -2891,6 +2940,8 @@ maintainability (7f9bc3f45e)
[LPD-28297]: https://issues.liferay.com/browse/LPD-28297
[LPD-31577]: https://issues.liferay.com/browse/LPD-31577
[LPD-32144]: https://issues.liferay.com/browse/LPD-32144
[LPD-32781]: https://issues.liferay.com/browse/LPD-32781
[LPD-41339]: https://issues.liferay.com/browse/LPD-41339
[LPS-47580]: https://issues.liferay.com/browse/LPS-47580
[LPS-50156]: https://issues.liferay.com/browse/LPS-50156
[LPS-58672]: https://issues.liferay.com/browse/LPS-58672
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ buildscript {
}

repositories {
jcenter()

maven {
url "https://plugins.gradle.org/m2/"
}
Expand All @@ -25,6 +23,8 @@ buildscript {
}

mavenCentral()

jcenter()
}
}

Expand Down
8 changes: 4 additions & 4 deletions cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ dependencies {
api name: "org.objectweb.asm.tree-6.0.0"
api name: "org.objectweb.asm.util-6.0.0"

bladeExtensions group: "com.liferay.blade", name: "com.liferay.blade.extensions.maven.profile", version: "1.0.42-SNAPSHOT"
bladeExtensions group: "com.liferay.blade", name: "com.liferay.project.templates.js.theme", version: "1.0.25-SNAPSHOT"
bladeExtensions group: "com.liferay.blade", name: "com.liferay.project.templates.js.widget", version: "1.0.26-SNAPSHOT"
bladeExtensions group: "com.liferay.blade", name: "com.liferay.blade.extensions.maven.profile", version: "1.0.42"
bladeExtensions group: "com.liferay.blade", name: "com.liferay.project.templates.js.theme", version: "1.0.25"
bladeExtensions group: "com.liferay.blade", name: "com.liferay.project.templates.js.widget", version: "1.0.26"

compileOnly group: "org.osgi", name: "osgi.core", version: "6.0.0"
compileOnly project(":gradle-tooling")
Expand Down Expand Up @@ -326,6 +326,6 @@ unzipPortal {
finalizedBy("processZipsResources")
}

version = "7.0.2-SNAPSHOT"
version = "7.0.2"

apply from: "blade-jar-smoke-tests.gradle"
4 changes: 2 additions & 2 deletions extensions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ subprojects {
dirs "${rootProject.projectDir}/libs"
}

jcenter()

maven {
url "https://repo.gradle.org/gradle/libs-releases/"
}
Expand All @@ -36,5 +34,7 @@ subprojects {
}

mavenCentral()

jcenter()
}
}
2 changes: 1 addition & 1 deletion extensions/maven-profile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ publishing {
}
}

version = "1.0.42-SNAPSHOT"
version = "1.0.42"
2 changes: 1 addition & 1 deletion extensions/project-templates-js-theme/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ test {
}
}

version = "1.0.25-SNAPSHOT"
version = "1.0.25"
2 changes: 1 addition & 1 deletion extensions/project-templates-js-widget/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ test {
}
}

version = "1.0.26-SNAPSHOT"
version = "1.0.26"
2 changes: 1 addition & 1 deletion extensions/project-templates-social-bookmark/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ publishing {
}
}

version = "1.0.23-SNAPSHOT"
version = "1.0.23"
2 changes: 1 addition & 1 deletion extensions/remote-deploy-command/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ publishing {
}
}

version = "1.0.33-SNAPSHOT"
version = "1.0.33"
2 changes: 1 addition & 1 deletion gradle-tooling/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ publishing {
}
*/

version = "1.2.26-SNAPSHOT"
version = "1.2.26"
Loading