diff --git a/README.md b/README.md index b4562d2b..e829f5a7 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,26 @@ Learn what [others saying about Iris](https://iris-go.com/testimonials/) and **[ [](https://github.com/kataras/server-benchmarks) +## π Supporters + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
[](https://twitter.com/intent/follow?screen_name=iris_framework)
-You can [request](https://bit.ly/iris-req-book) a PDF version and online access of the **E-Book** today and be participated in the development of Iris.
+You can [request](https://iris-go.com/#book) a PDF version and online access of the **E-Book** today and be participated in the development of Iris.
## π Contributing
diff --git a/_examples/apidoc/yaag/go.mod b/_examples/apidoc/yaag/go.mod
index 8adcfad2..e1c27c2f 100644
--- a/_examples/apidoc/yaag/go.mod
+++ b/_examples/apidoc/yaag/go.mod
@@ -1,8 +1,8 @@
module github.com/kataras/iris/_examples/apidoc/yaag
-go 1.14
+go 1.15
require (
github.com/betacraft/yaag v1.0.1-0.20200719063524-47d781406108
- github.com/kataras/iris/v12 v12.1.9-0.20200719040914-c21125c094d6
+ github.com/kataras/iris/v12 v12.1.9-0.20200812051831-0edf0affb0bd
)
diff --git a/_examples/database/mongodb/go.mod b/_examples/database/mongodb/go.mod
index 6b64a8ab..511a8000 100644
--- a/_examples/database/mongodb/go.mod
+++ b/_examples/database/mongodb/go.mod
@@ -1,9 +1,9 @@
module myapp
-go 1.14
+go 1.15
require (
github.com/joho/godotenv v1.3.0
- github.com/kataras/iris/v12 v12.1.9-0.20200719040914-c21125c094d6
+ github.com/kataras/iris/v12 v12.1.9-0.20200812051831-0edf0affb0bd
go.mongodb.org/mongo-driver v1.3.4
)
diff --git a/_examples/database/mysql/go.mod b/_examples/database/mysql/go.mod
index cf895c1d..3e7d3e76 100644
--- a/_examples/database/mysql/go.mod
+++ b/_examples/database/mysql/go.mod
@@ -1,9 +1,9 @@
module myapp
-go 1.14
+go 1.15
require (
github.com/go-sql-driver/mysql v1.5.0
- github.com/kataras/iris/v12 v12.1.9-0.20200719040914-c21125c094d6
+ github.com/kataras/iris/v12 v12.1.9-0.20200812051831-0edf0affb0bd
github.com/mailgun/groupcache/v2 v2.1.0
)
diff --git a/_examples/database/orm/reform/go.mod b/_examples/database/orm/reform/go.mod
index 06eefd9a..039ec25a 100644
--- a/_examples/database/orm/reform/go.mod
+++ b/_examples/database/orm/reform/go.mod
@@ -1,6 +1,6 @@
module myapp
-go 1.14
+go 1.15
require (
github.com/kataras/iris/v12 v12.1.8
diff --git a/_examples/dependency-injection/jwt/contrib/go.mod b/_examples/dependency-injection/jwt/contrib/go.mod
index 0378cdf5..228fc139 100644
--- a/_examples/dependency-injection/jwt/contrib/go.mod
+++ b/_examples/dependency-injection/jwt/contrib/go.mod
@@ -1,5 +1,5 @@
module github.com/kataras/iris/_examples/dependency-injection/jwt/contrib
-go 1.14
+go 1.15
require github.com/iris-contrib/middleware/jwt v0.0.0-20200710202437-92b01b85baaf
diff --git a/_examples/http-server/http3-quic/go.mod b/_examples/http-server/http3-quic/go.mod
index 82a85f88..bc0e2b95 100644
--- a/_examples/http-server/http3-quic/go.mod
+++ b/_examples/http-server/http3-quic/go.mod
@@ -1,6 +1,6 @@
module github.com/kataras/iris/_examples/http-server/http3-quic
-go 1.14
+go 1.15
require (
github.com/prometheus/client_golang v1.0.0
diff --git a/_examples/kafka-api/go.mod b/_examples/kafka-api/go.mod
index 658b6054..101fed8b 100644
--- a/_examples/kafka-api/go.mod
+++ b/_examples/kafka-api/go.mod
@@ -1,8 +1,8 @@
module myapp
-go 1.14
+go 1.15
require (
github.com/Shopify/sarama v1.26.4
- github.com/kataras/iris/v12 v12.1.9-0.20200719040914-c21125c094d6
+ github.com/kataras/iris/v12 v12.1.9-0.20200812051831-0edf0affb0bd
)
diff --git a/_examples/logging/rollbar/go.mod b/_examples/logging/rollbar/go.mod
new file mode 100644
index 00000000..6a3e5ca1
--- /dev/null
+++ b/_examples/logging/rollbar/go.mod
@@ -0,0 +1,8 @@
+module github.com/kataras/iris/examples/logging/rollbar
+
+go 1.15
+
+require (
+ github.com/kataras/iris/v12 v12.1.9-0.20200812051831-0edf0affb0bd
+ github.com/rollbar/rollbar-go v1.2.0
+)
diff --git a/_examples/mvc/overview/go.mod b/_examples/mvc/overview/go.mod
index b663bb5b..cb0cb9cd 100644
--- a/_examples/mvc/overview/go.mod
+++ b/_examples/mvc/overview/go.mod
@@ -1,5 +1,5 @@
module app
-go 1.14
+go 1.15
-require github.com/kataras/iris/v12 v12.1.9-0.20200719040914-c21125c094d6
+require github.com/kataras/iris/v12 v12.1.9-0.20200812051831-0edf0affb0bd
diff --git a/_examples/response-writer/protobuf/go.mod b/_examples/response-writer/protobuf/go.mod
index 8621348f..366f0b14 100644
--- a/_examples/response-writer/protobuf/go.mod
+++ b/_examples/response-writer/protobuf/go.mod
@@ -1,3 +1,3 @@
module app
-go 1.14
+go 1.15
diff --git a/_examples/sessions/database/redis/go.mod b/_examples/sessions/database/redis/go.mod
index 81e02483..549a5828 100644
--- a/_examples/sessions/database/redis/go.mod
+++ b/_examples/sessions/database/redis/go.mod
@@ -1,6 +1,6 @@
module app
-go 1.14
+go 1.15
-require github.com/kataras/iris/v12 v12.1.9-0.20200719040914-c21125c094d6
+require github.com/kataras/iris/v12 v12.1.9-0.20200812051831-0edf0affb0bd
diff --git a/_examples/websocket/basic/go.mod b/_examples/websocket/basic/go.mod
index 8a540180..b126c8a5 100644
--- a/_examples/websocket/basic/go.mod
+++ b/_examples/websocket/basic/go.mod
@@ -1,5 +1,5 @@
module github.com/kataras/iris/_examples/websocket/basic
-go 1.14
+go 1.15
require github.com/iris-contrib/middleware/jwt v0.0.0-20200710202437-92b01b85baaf
\ No newline at end of file
diff --git a/_examples/websocket/gorilla-filewatch/go.mod b/_examples/websocket/gorilla-filewatch/go.mod
index 5d77f753..57c2ff69 100644
--- a/_examples/websocket/gorilla-filewatch/go.mod
+++ b/_examples/websocket/gorilla-filewatch/go.mod
@@ -1,6 +1,6 @@
module gorilla-filewatch-example
-go 1.14
+go 1.15
require (
github.com/gorilla/websocket v1.4.2
diff --git a/_examples/websocket/socketio/go.mod b/_examples/websocket/socketio/go.mod
index b74f0323..61b7561a 100644
--- a/_examples/websocket/socketio/go.mod
+++ b/_examples/websocket/socketio/go.mod
@@ -1,8 +1,8 @@
module github.com/kataras/iris/_examples/websocket/socketio
-go 1.14
+go 1.15
require (
github.com/googollee/go-socket.io v1.4.3-0.20191109153049-7451e2f8c2e0
- github.com/kataras/iris/v12 v12.1.9-0.20200719040914-c21125c094d6
+ github.com/kataras/iris/v12 v12.1.9-0.20200812051831-0edf0affb0bd
)