Skip to content

Commit

Permalink
🚀 release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nilwurtz committed Oct 7, 2024
1 parent ee21b5e commit f5a34e2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed

## [0.9.0] - 2024-10-08

### Changed

- Update dependencies ([#24](https://github.com/wiremock/wiremock-graphql-extension/pull/24) from @bgalek)
- Update wiremock 3.0.3 -> 3.9.0
- Update graphql-java 21.0 -> 22.3
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repositories {
}
dependencies {
testImplementation 'io.github.nilwurtz:wiremock-graphql-extension:0.8.2'
testImplementation 'io.github.nilwurtz:wiremock-graphql-extension:0.9.0'
}
```

Expand All @@ -40,7 +40,7 @@ dependencies {
<dependency>
<groupId>io.github.nilwurtz</groupId>
<artifactId>wiremock-graphql-extension</artifactId>
<version>0.8.2</version>
<version>0.9.0</version>
<scope>test</scope>
</dependency>
```
Expand Down Expand Up @@ -126,7 +126,7 @@ Please download `wiremock-graphql-extension-x.y.z-jar-with-dependencies.jar` fro
docker run -it --rm \
-p 8080:8080 \
--name wiremock \
-v /path/to/wiremock-graphql-extension-0.8.2-jar-with-dependencies.jar:/var/wiremock/extensions/wiremock-graphql-extension-0.8.2-jar-with-dependencies.jar \
-v /path/to/wiremock-graphql-extension-0.9.0-jar-with-dependencies.jar:/var/wiremock/extensions/wiremock-graphql-extension-0.9.0-jar-with-dependencies.jar \
wiremock/wiremock \
--extensions io.github.nilwurtz.GraphqlBodyMatcher
```
Expand All @@ -135,7 +135,7 @@ docker run -it --rm \

```dockerfile
FROM wiremock/wiremock:latest
COPY ./wiremock-graphql-extension-0.8.2-jar-with-dependencies.jar /var/wiremock/extensions/wiremock-graphql-extension-0.8.2-jar-with-dependencies.jar
COPY ./wiremock-graphql-extension-0.9.0-jar-with-dependencies.jar /var/wiremock/extensions/wiremock-graphql-extension-0.9.0-jar-with-dependencies.jar
```

### Client-side (Test) Configuration
Expand Down
2 changes: 1 addition & 1 deletion e2e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<dependency>
<artifactId>wiremock-graphql-extension</artifactId>
<groupId>io.github.nilwurtz</groupId>
<version>0.8.2</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>com.thoughtworks.gauge</groupId>
Expand Down
2 changes: 1 addition & 1 deletion examples/testcontainers-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<wiremock.testcontainers.version>1.0-alpha-13</wiremock.testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
<extension.version>0.8.2</extension.version>
<extension.version>0.9.0</extension.version>
<wiremock.version>3.3.1</wiremock.version>
<junit.version>5.10.1</junit.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion examples/testcontainers-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<wiremock.testcontainers.version>1.0-alpha-13</wiremock.testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
<kotlin.version>1.9.20</kotlin.version>
<extension.version>0.8.2</extension.version>
<extension.version>0.9.0</extension.version>
<wiremock.version>3.3.1</wiremock.version>
<junit.version>5.10.1</junit.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion wiremock-graphql-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<artifactId>wiremock-graphql-extension</artifactId>
<groupId>io.github.nilwurtz</groupId>
<version>0.8.2</version>
<version>0.9.0</version>
<packaging>jar</packaging>
<name>wiremock-graphql-extension</name>
<description>A WireMock extension for handling GraphQL requests, allowing for easy mocking of GraphQL APIs in
Expand Down

0 comments on commit f5a34e2

Please sign in to comment.