Skip to content

Commit

Permalink
dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sams committed Oct 13, 2023
1 parent 5d43c18 commit 0cfe06d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
0.0.4-RELEASE
0.0.3-RELEASE
===========================================
- Upgraded to spring boot 3
- Handle URL encoded form data
- Remove query params from insomnia url to prevent parameter duplication
- Ensure query parameters attached in postman url as query

0.0.3-RELEASE
0.0.2-RELEASE
===========================================
- Spring boot 2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Generates AsciiDoc snippets via Spring Restdocs that are exports for Insomnia or Postman that can be download and imported.

## Artifact Version
`com.github.buckle:restdocs-tool-export:0.0.4-RELEASE`
`com.github.buckle:restdocs-tool-export:0.0.3-RELEASE`

## Test Configuration

Expand Down
18 changes: 10 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.github.buckle'
version = '0.0.4-RELEASE'
version = '0.0.3-RELEASE'

java {
sourceCompatibility = JavaVersion.VERSION_17
Expand All @@ -21,15 +21,14 @@ ext {
set('snippetsDir', file("build/generated-snippets"))
}

configurations.configureEach {
resolutionStrategy {
force 'org.yaml:snakeyaml:2.2'
force 'org.springframework:spring-webmvc:6.0.12'
force 'org.springframework:spring-expression:6.0.12'
dependencies {
implementation('org.springframework:spring-webmvc:6.0.12') {
because 'version 6.0.0 pulled in by spring-restdocs-mockmvc:3.0.0 affected by vulnerability'
}
implementation('org.springframework:spring-expression:6.0.12') {
because 'version 6.0.0 pulled in by spring-restdocs-mockmvc:3.0.0 affected by vulnerability'
}
}

dependencies {
implementation('org.springframework.restdocs:spring-restdocs-mockmvc:3.0.0')
implementation('org.slf4j:slf4j-api:2.0.9')

Expand All @@ -38,6 +37,9 @@ dependencies {
implementation('org.apache.commons:commons-text:1.10.0')
implementation('com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2')

testImplementation('org.yaml:snakeyaml:2.2') {
because 'version 1.33 pulled in by spring-boot-starter-web:3.1.4 affected by vulnerability'
}
testImplementation('org.springframework.boot:spring-boot-starter-web:3.1.4')
testImplementation('org.springframework.boot:spring-boot-starter-test:3.1.4') {
exclude group: 'junit', module: 'junit'
Expand Down

0 comments on commit 0cfe06d

Please sign in to comment.