Skip to content

Commit

Permalink
Merge pull request #38 from go-spectest/dependabot-check-examples
Browse files Browse the repository at this point in the history
Dependabot check examples
  • Loading branch information
nao1215 authored Oct 9, 2023
2 parents 812e974 + 5d200ef commit 7a8d4eb
Show file tree
Hide file tree
Showing 12 changed files with 99 additions and 16 deletions.
79 changes: 79 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,85 @@ updates:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/echo"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/fiber"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/gin"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/ginkgo"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/gorilla"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/httprouter"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/mocks"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/plantuml"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/sequence-diagrams"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/sequence-diagrams-with-mysql-database"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/sequence-diagrams-with-postgres-database"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/sequence-diagrams-with-sqlite-database"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/examples/websockets"
schedule:
interval: daily
time: "20:00"
open-pull-requests-limit: 10

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## [0.0.3, Unreleased] - 2023-10-09
## [0.0.4, Unreleased] - 2023-XX-XX
### Changed
- Dependabot update go.mod in example codes.

## [0.0.3] - 2023-10-09
### Added
- supprt more http methods; HEAD, OPTIONS, CONNECT, TRACE

Expand Down
2 changes: 1 addition & 1 deletion examples/plantuml/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/go-spectest/spectest-examples/plantuml
go 1.18

require (
github.com/go-spectest/spectest v0.0.2
github.com/go-spectest/spectest v0.0.3
github.com/gorilla/mux v1.8.0
)

Expand Down
4 changes: 2 additions & 2 deletions examples/plantuml/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
github.com/go-spectest/spectest v0.0.2 h1:R8NaGr1gbt++M2wW3Rn3v1i1OaSLoXsOc6zvODU6Fhc=
github.com/go-spectest/spectest v0.0.2/go.mod h1:wo+cAOMIWZXTQvvfVXgvnn+WhB3U0WVhlYwhX/ZarD8=
github.com/go-spectest/spectest v0.0.3 h1:XbzxsdLTzmYPiIy/xWmTSuYb1UzbtlT+/2QFbrlgdLM=
github.com/go-spectest/spectest v0.0.3/go.mod h1:3/pUHRcBF5QWBP3KOpvpoEw4QzYXV14d7/VhMIXfwSo=
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=
github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So=
2 changes: 1 addition & 1 deletion examples/sequence-diagrams-with-mysql-database/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/go-spectest/spectest/examples/sequence-diagrams-with-mysql-dat
go 1.18

require (
github.com/go-spectest/spectest v0.0.2
github.com/go-spectest/spectest v0.0.3
github.com/go-sql-driver/mysql v1.7.1
github.com/gorilla/mux v1.8.0
github.com/jmoiron/sqlx v1.3.5
Expand Down
4 changes: 2 additions & 2 deletions examples/sequence-diagrams-with-mysql-database/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
github.com/go-spectest/spectest v0.0.2 h1:R8NaGr1gbt++M2wW3Rn3v1i1OaSLoXsOc6zvODU6Fhc=
github.com/go-spectest/spectest v0.0.2/go.mod h1:wo+cAOMIWZXTQvvfVXgvnn+WhB3U0WVhlYwhX/ZarD8=
github.com/go-spectest/spectest v0.0.3 h1:XbzxsdLTzmYPiIy/xWmTSuYb1UzbtlT+/2QFbrlgdLM=
github.com/go-spectest/spectest v0.0.3/go.mod h1:3/pUHRcBF5QWBP3KOpvpoEw4QzYXV14d7/VhMIXfwSo=
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
github.com/go-sql-driver/mysql v1.7.1 h1:lUIinVbN1DY0xBg0eMOzmmtGoHwWBbvnWubQUrtU8EI=
github.com/go-sql-driver/mysql v1.7.1/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9S1MCJN5yJMI=
Expand Down
2 changes: 1 addition & 1 deletion examples/sequence-diagrams-with-postgres-database/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/go-spectest/spectest/examples/sequence-diagrams-with-postgres-
go 1.18

require (
github.com/go-spectest/spectest v0.0.2
github.com/go-spectest/spectest v0.0.3
github.com/gorilla/mux v1.8.0
github.com/jmoiron/sqlx v1.3.5
github.com/lib/pq v1.10.9
Expand Down
4 changes: 2 additions & 2 deletions examples/sequence-diagrams-with-postgres-database/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
github.com/go-spectest/spectest v0.0.2 h1:R8NaGr1gbt++M2wW3Rn3v1i1OaSLoXsOc6zvODU6Fhc=
github.com/go-spectest/spectest v0.0.2/go.mod h1:wo+cAOMIWZXTQvvfVXgvnn+WhB3U0WVhlYwhX/ZarD8=
github.com/go-spectest/spectest v0.0.3 h1:XbzxsdLTzmYPiIy/xWmTSuYb1UzbtlT+/2QFbrlgdLM=
github.com/go-spectest/spectest v0.0.3/go.mod h1:3/pUHRcBF5QWBP3KOpvpoEw4QzYXV14d7/VhMIXfwSo=
github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE=
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
Expand Down
2 changes: 1 addition & 1 deletion examples/sequence-diagrams-with-sqlite-database/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/go-spectest/spectest/examples/sequence-diagrams-with-sqlite-da
go 1.18

require (
github.com/go-spectest/spectest v0.0.2
github.com/go-spectest/spectest v0.0.3
github.com/gorilla/mux v1.8.0
github.com/jmoiron/sqlx v1.3.5
github.com/mattn/go-sqlite3 v1.14.17
Expand Down
4 changes: 2 additions & 2 deletions examples/sequence-diagrams-with-sqlite-database/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
github.com/go-spectest/spectest v0.0.2 h1:R8NaGr1gbt++M2wW3Rn3v1i1OaSLoXsOc6zvODU6Fhc=
github.com/go-spectest/spectest v0.0.2/go.mod h1:wo+cAOMIWZXTQvvfVXgvnn+WhB3U0WVhlYwhX/ZarD8=
github.com/go-spectest/spectest v0.0.3 h1:XbzxsdLTzmYPiIy/xWmTSuYb1UzbtlT+/2QFbrlgdLM=
github.com/go-spectest/spectest v0.0.3/go.mod h1:3/pUHRcBF5QWBP3KOpvpoEw4QzYXV14d7/VhMIXfwSo=
github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE=
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
Expand Down
2 changes: 1 addition & 1 deletion examples/sequence-diagrams/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/go-spectest/spectest/examples/sequence-diagrams
go 1.18

require (
github.com/go-spectest/spectest v0.0.2
github.com/go-spectest/spectest v0.0.3
github.com/gorilla/mux v1.8.0
)

Expand Down
4 changes: 2 additions & 2 deletions examples/sequence-diagrams/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
github.com/go-spectest/spectest v0.0.2 h1:R8NaGr1gbt++M2wW3Rn3v1i1OaSLoXsOc6zvODU6Fhc=
github.com/go-spectest/spectest v0.0.2/go.mod h1:wo+cAOMIWZXTQvvfVXgvnn+WhB3U0WVhlYwhX/ZarD8=
github.com/go-spectest/spectest v0.0.3 h1:XbzxsdLTzmYPiIy/xWmTSuYb1UzbtlT+/2QFbrlgdLM=
github.com/go-spectest/spectest v0.0.3/go.mod h1:3/pUHRcBF5QWBP3KOpvpoEw4QzYXV14d7/VhMIXfwSo=
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=
github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So=

0 comments on commit 7a8d4eb

Please sign in to comment.