Skip to content

Commit

Permalink
adds changelog generation
Browse files Browse the repository at this point in the history
  • Loading branch information
robfrank committed Mar 14, 2019
1 parent 3a699b2 commit 8ac2ee1
Show file tree
Hide file tree
Showing 4 changed files with 191 additions and 7 deletions.
97 changes: 97 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
# Git Changelog Maven plugin changelog

Changelog of Git Changelog Maven plugin.

## v1.0.0-RC1
### GitHub [#16](https://github.com/ArcadeAnalytics/arcadeanalytics/issues/16) Force layout config coefficients are unreadable

**#16: css styles fixed for firefox.**


[8e56d467122a3b7](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/8e56d467122a3b7) G4br13l3 *2019-02-20 15:11:13*


### GitHub [#25](https://github.com/ArcadeAnalytics/arcadeanalytics/issues/25) JDBC drivers not loaded at runtime

**#25**

* updates to connectors 1.0.2

[db9da7a4930dc3f](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/db9da7a4930dc3f) robfrank *2019-02-26 13:58:00*

**#25**

* include the JDBC drivers as dependency to solve connection problems to MySQL and Data.World

[83e555d231588fe](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/83e555d231588fe) robfrank *2019-02-25 10:49:25*


### GitHub [#27](https://github.com/ArcadeAnalytics/arcadeanalytics/issues/27) Copy widgets to other user account

**#27**

* enables complete copy of env from template user

[a759e46f1cdeebd](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/a759e46f1cdeebd) robfrank *2019-03-04 10:06:22*

**#27**

* improves documentation (WIP)

[b33643d356c6b1d](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/b33643d356c6b1d) robfrank *2019-02-26 19:06:34*


### GitHub [#29](https://github.com/ArcadeAnalytics/arcadeanalytics/issues/29) Template user name should be configurable

**#29 configure template user**

* adds "application.templateUser" property

[81fae43fc58011e](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/81fae43fc58011e) robfrank *2019-02-27 09:50:36*


### GitHub [#35](https://github.com/ArcadeAnalytics/arcadeanalytics/issues/35) switch to maven

**#35 removes script**


[ce7e49ede8bbbd5](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/ce7e49ede8bbbd5) robfrank *2019-03-04 11:00:23*

**#35**

* adds quiet flag to limit log length

[9da762dd8a25d9d](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/9da762dd8a25d9d) robfrank *2019-03-02 10:07:10*

**#35**

* fixes maven build: sets fae switch, pass settings

[861e7d4236cf623](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/861e7d4236cf623) robfrank *2019-03-01 16:43:00*

**#35**

* switches to maven instead of gradle

[2815b071eb2de6d](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/2815b071eb2de6d) robfrank *2019-03-01 16:03:37*


### GitHub [#54](https://github.com/ArcadeAnalytics/arcadeanalytics/issues/54) Remove "single" profile

**#54 remove prod-single profile**

* removes prod-single from pom
* moves h2sql dep to prod profile
* removes build of prod-single from travis

[f2fa0abdd2a90a4](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/f2fa0abdd2a90a4) robfrank *2019-03-13 11:09:38*


### GitHub [#7](https://github.com/ArcadeAnalytics/arcadeanalytics/issues/7) Dependabot can't resolve your JavaScript dependency files

**#7: webpack-dev-server manually upgraded to 3.2.0.**


[c900c3d708ef802](https://github.com/ArcadeAnalytics/arcadeanalytics/commit/c900c3d708ef802) G4br13l3 *2019-02-20 15:36:17*


30 changes: 30 additions & 0 deletions changelog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
fromRepo: ".",
fromCommit: "0000000000000000000000000000000000000000",
toRef: "refs/heads/master",
ignoreCommitsIfMessageMatches: "^\[maven-release-plugin\].*|^\[Gradle Release Plugin\].*|^Merge.*",
ignoreCommitsWithoutIssue: "true",
dateFormat: "YYYY-MM-dd HH:mm:ss",
untaggedName: "Next release",
noIssueName: "Other changes",
timeZone: "UTC",
removeIssueFromMessage: "true",
jiraServer: "https://jiraserver/jira",
jiraIssuePattern: "\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\b",
gitHubApi: "https://api.github.com/repos/ArcadeAnalytics/arcadeanalytics",
gitHubIssuePattern: "#([0-9]+)",
customIssues: [
{
name: "Bugs",
pattern: "#bug"
},
{
name: "Features",
pattern: "#feature"
},
{
name: "Enhancement",
pattern: "#enhancement"
}
]
}
32 changes: 32 additions & 0 deletions changelog.mustache
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Git Changelog Maven plugin changelog

Changelog of Git Changelog Maven plugin.

{{#tags}}
## {{name}}
{{#issues}}
{{#hasIssue}}
{{#hasLink}}
### {{name}} [{{issue}}]({{link}}) {{title}}
{{/hasLink}}
{{^hasLink}}
### {{name}} {{issue}} {{title}}
{{/hasLink}}
{{/hasIssue}}
{{^hasIssue}}
### {{name}}
{{/hasIssue}}

{{#commits}}
**{{{messageTitle}}}**

{{#messageBodyItems}}
* {{.}}
{{/messageBodyItems}}

[{{hash}}](https://github.com/{{ownerName}}/{{repoName}}/commit/{{hash}}) {{authorName}} *{{commitTime}}*

{{/commits}}

{{/issues}}
{{/tags}}
39 changes: 32 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.arcadeanalytics</groupId>
Expand Down Expand Up @@ -29,8 +30,8 @@
<m2e.apt.activation>jdt_apt</m2e.apt.activation>
<run.addResources>false</run.addResources>
<!-- These remain empty unless the corresponding profile is active -->
<profile.no-liquibase />
<profile.swagger />
<profile.no-liquibase/>
<profile.swagger/>

<!-- Dependency versions -->
<jhipster-dependencies.version>0.1.14</jhipster-dependencies.version>
Expand Down Expand Up @@ -147,6 +148,10 @@
</distributionManagement>


<issueManagement>
<system>GitHub</system>
<url>https://github.com/ArcadeAnalytics/arcadeanalytics/issues</url>
</issueManagement>
<pluginRepositories>
<pluginRepository>
<id>jcenter</id>
Expand Down Expand Up @@ -511,6 +516,26 @@
<build>
<defaultGoal>spring-boot:run</defaultGoal>
<plugins>
<plugin>
<groupId>se.bjurr.gitchangelog</groupId>
<artifactId>git-changelog-maven-plugin</artifactId>
<version>1.59</version>
<configuration>
<settingsFile>changelog.json</settingsFile>
<file>CHANGELOG.md</file>
</configuration>

<executions>
<!-- Minimal config // -->
<!--<execution>-->
<!--<id>GenerateGitChangelog</id>-->
<!--<phase>generate-sources</phase>-->
<!--<goals>-->
<!--<goal>git-changelog</goal>-->
<!--</goals>-->
<!--</execution>-->
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
Expand Down Expand Up @@ -820,9 +845,9 @@
</diffChangeLogFile>
<driver>org.h2.Driver</driver>
<url>jdbc:h2:file:./target/h2db/db/arcadeanalytics</url>
<defaultSchemaName />
<defaultSchemaName/>
<username>arcadeanalytics</username>
<password />
<password/>
<referenceUrl>hibernate:spring:com.arcadeanalytics.domain?dialect=org.hibernate.dialect.H2Dialect&amp;hibernate.physical_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy&amp;hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy</referenceUrl>
<verbose>true</verbose>
<logging>debug</logging>
Expand Down Expand Up @@ -956,7 +981,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore />
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
Expand All @@ -970,7 +995,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore />
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
Expand Down

0 comments on commit 8ac2ee1

Please sign in to comment.