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

build: Updated application versions for 5.1.0 release #89

Merged
merged 30 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
7aa620d
build: new development snapshot
florianesser Jul 7, 2020
a70409f
Merge pull request #69 from florianesser/devel
florianesser Jul 8, 2020
7ca5a71
feat: support specifying filters when loading instance data
stempler Aug 10, 2020
bcf5e48
build: add MS Access JDBC driver
florianesser Oct 26, 2021
521e400
Merge pull request #73 from florianesser/build/jdbc-access
florianesser Oct 29, 2021
0c69eae
build: new development snapshot
stempler Apr 4, 2022
7fa8703
build: update offline resource bundles
stempler Oct 14, 2022
56b5215
WIP update to hale 5
stempler Apr 14, 2023
e41d0cb
update to hale 5
kapil-agnihotri Apr 26, 2023
bbc6aca
refactor: replace deprecated groovy.util.OptionAccessor and CliBuilde…
kapil-agnihotri Apr 26, 2023
632348c
build: update to exclude distZip ands distTar artifacts for current g…
kapil-agnihotri May 8, 2023
bbd8750
build: migrate to java 17
kapil-agnihotri Jul 3, 2023
00edefb
Merge pull request #79 from halestudio/build-migrate-to-java-17
kapil-agnihotri Jul 3, 2023
1acb856
build: fix for uploadArchives task
kapil-agnihotri Jul 7, 2023
d2942d3
build: update Gradle Docker plugin to 9.3.1
kapil-agnihotri Jul 12, 2023
7d8526d
build: update baseImage to java 17 for Gradle docker plugin
kapil-agnihotri Jul 12, 2023
8676285
Merge pull request #80 from halestudio/build-fix-for-uploadArchives-task
kapil-agnihotri Jul 17, 2023
f9a3bb2
fixup! build: update baseImage to java 17 for Gradle docker plugin
kapil-agnihotri Jul 17, 2023
e0d5dc9
fixup! build: update baseImage to java 17 for Gradle docker plugin
kapil-agnihotri Aug 2, 2023
912311d
Merge pull request #82 from halestudio/update-javabase-image-to-to-jr…
kapil-agnihotri Aug 3, 2023
75c7604
build: apply jvmArgs to docker plugin
kapil-agnihotri Aug 18, 2023
03da1bb
Merge pull request #83 from halestudio/build-apply-jvmArgs-to-docker-…
kapil-agnihotri Aug 21, 2023
87ddd90
refactor(docker): restore dockerCopyDistResources task
florianesser Nov 1, 2023
60eeb21
build(deps): update resource bundles
stempler Nov 20, 2023
2185107
build: update Gradle wrapper
stempler Nov 20, 2023
a28a88c
fix: support custom functions for merge statistics
stempler Nov 29, 2023
c54cbb5
fix: fix error when not collecting statistics in alignment migrator
stempler Nov 30, 2023
0b1a88f
fix: fixed typo in function statistics result structure
stempler Nov 30, 2023
43afb7b
refactor: update changelog for 5.1.0 release
emanuelaepure10 Feb 26, 2024
cc8a498
refactor: update hale and hale-cli SNAPSHOT
emanuelaepure10 Mar 3, 2024
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@

/logs/

.idea/*
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
# Change Log

All notable changes to this project will be documented in this file.
See the [change log guidelines](http://keepachangelog.com/) for information on how to structure the file.

## [5.1.0]

### Added

- Upgrade hale dependencies to 5.1 and Java version to 17.
- Added support for specifying filters when loading data.

### Changed

- Always use the latest versions of hale offline resources like INSPIRE schemas.
- Include support for MS Access.

### Fixed

- Fixed a problem that lead to alignment migration failing if collection of statistics was not enabled.
- Fixed error when collecting merge statistics for an alignment with custom functions.

## [4.0.0]

## Added
Expand Down Expand Up @@ -111,6 +129,7 @@ Initial release based on hale studio 3.0.0.
- Command to generate JSON representations of hale alignments (`hale project alignment export-json`)
- Experimental command to filter to create a copy of a hale project with a filtered alignment (`hale project alignment filter`)

[5.1.0]: https://github.com/halestudio/hale-cli/compare/v4.0.0...v5.1.0
[4.0.0]: https://github.com/halestudio/hale-cli/compare/v3.5.0...v4.0.0
[3.5.0]: https://github.com/halestudio/hale-cli/compare/v3.4.0...v3.5.0
[3.4.0]: https://github.com/halestudio/hale-cli/compare/v3.3.2...v3.4.0
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Build docker image:
Run
---

You can run the application using Gradle. However, there is no possibility to easily provide arguments.
You can run the application using Gradle.

```
./gradlew run
Expand All @@ -45,6 +45,12 @@ Alternatively, you can run the start script of the built application.
hale --version
```

You can provide arguments to run as string in `""` following the below syntax.
For example pass argument `help` to run command as below
```
./gradlew run --args="help"
```

If using `./gradlew installDist`, the start script can be found in `./build/install/hale/bin/`.

JVM parameters can be provided to the start script with the `HALE_OPTS` environment variable.
Expand Down
297 changes: 153 additions & 144 deletions build.gradle

Large diffs are not rendered by default.

Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip
Loading