Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: OpenAPITools/openapi-diff
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.0
Choose a base ref
...
head repository: OpenAPITools/openapi-diff
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.0.1
Choose a head ref
  • 6 commits
  • 6 files changed
  • 2 contributors

Commits on Dec 5, 2021

  1. Copy the full SHA
    b77bd6e View commit details
  2. Copy the full SHA
    ed6345e View commit details

Commits on Dec 12, 2021

  1. Copy the full SHA
    7614541 View commit details
  2. Skip Git hook repository check to enable build without .git (#301)

    The build process would fail if the `.git/` directory is missing, e. g. when downloading the repository contents from GitHub in a ZIP archive:
    ```text
    [ERROR] Failed to execute goal io.github.phillipuniverse:githook-maven-plugin:1.0.5:install (default) on project openapi-diff-parent: Not a git repository, could not find a .git/hooks directory anywhere in the hierarchy of /path/to/openapi-diff/target. Turn off this behavior with skipRepositoryCheck=false -> [Help 1]
    ```
    
    After the change, a missing `.git/` directory doesn't lead to a build failure:
    ```text
    [INFO] --- githook-maven-plugin:1.0.5:install (default) @ openapi-diff-parent ---
    [INFO] No .git directory found, skipping plugin execution
    ```
    
    Refs #299
    joschi authored Dec 12, 2021
    Copy the full SHA
    d2a96f1 View commit details

Commits on Dec 27, 2021

  1. Copy the full SHA
    d7ec464 View commit details
  2. Copy the full SHA
    4d755a6 View commit details
Showing with 22 additions and 10 deletions.
  1. +0 −1 .github/workflows/release.yml
  2. +1 −1 cli/pom.xml
  3. +1 −1 core/pom.xml
  4. +8 −3 maven-example/pom.xml
  5. +1 −1 maven/pom.xml
  6. +11 −3 pom.xml
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -15,7 +15,6 @@ env:
jobs:
release:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v2.4.0
- name: Set up JDK 11
2 changes: 1 addition & 1 deletion cli/pom.xml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<parent>
<groupId>org.openapitools.openapidiff</groupId>
<artifactId>openapi-diff-parent</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>openapi-diff-cli</artifactId>
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<parent>
<groupId>org.openapitools.openapidiff</groupId>
<artifactId>openapi-diff-parent</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>openapi-diff-core</artifactId>
11 changes: 8 additions & 3 deletions maven-example/pom.xml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
<parent>
<artifactId>openapi-diff-parent</artifactId>
<groupId>org.openapitools.openapidiff</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

@@ -13,12 +13,17 @@
<name>openapi-diff-maven-example</name>
<description>Example usage of maven plugin for openapi-diff</description>

<properties>
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.openapitools.openapidiff</groupId>
<artifactId>openapi-diff-maven</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
<executions>
<execution>
<goals>
@@ -35,4 +40,4 @@
</plugins>
</build>

</project>
</project>
2 changes: 1 addition & 1 deletion maven/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<parent>
<groupId>org.openapitools.openapidiff</groupId>
<artifactId>openapi-diff-parent</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>openapi-diff-maven</artifactId>
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@

<groupId>org.openapitools.openapidiff</groupId>
<artifactId>openapi-diff-parent</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
<packaging>pom</packaging>

<name>openapi-diff-parent</name>
@@ -54,7 +54,7 @@
<connection>scm:git:https://github.com/OpenAPITools/openapi-diff.git</connection>
<developerConnection>scm:git:https://github.com/OpenAPITools/openapi-diff.git</developerConnection>
<url>https://github.com/OpenAPITools/openapi-diff</url>
<tag>2.0.0</tag>
<tag>2.0.1</tag>
</scm>

<distributionManagement>
@@ -75,6 +75,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.outputTimestamp>2017-12-12T00:39:30Z</project.build.outputTimestamp>
<project.scm.id>github</project.scm.id>

<sonar.organization>openapitools</sonar.organization>
@@ -91,7 +92,7 @@
<dependency>
<groupId>org.openapitools.openapidiff</groupId>
<artifactId>openapi-diff-core</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>org.junit</groupId>
@@ -240,6 +241,7 @@
<notree>true</notree>
<nocomment>true</nocomment>
<nohelp>true</nohelp>
<notimestamp>true</notimestamp>
</configuration>
<executions>
<execution>
@@ -267,6 +269,11 @@
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
@@ -355,6 +362,7 @@
<goal>install</goal>
</goals>
<configuration>
<skipRepositoryCheck>true</skipRepositoryCheck>
<hooks>
<pre-commit>
mvn com.coveo:fmt-maven-plugin:format