Gerasimos (Makis) Maropoulos
596dfade7c
Update HISTORY.md
...
Former-commit-id: 4c0fdb1ea259bae2c321c733256777eafc2cae6e
2017-02-17 08:56:19 +02:00
Gerasimos (Makis) Maropoulos
cafa4d7b80
Readme
...
Former-commit-id: 08b7ba04949a6b830841b8b9b7ad6981264c51ec
2017-02-17 07:15:32 +02:00
Gerasimos (Makis) Maropoulos
69d508fc39
Add go v1.8 as the minimum requirement.
...
Former-commit-id: 2d1c30f7a581e12dcc206d943b8fb8235eee256b
2017-02-17 05:08:19 +02:00
Gerasimos (Makis) Maropoulos
21a18d0990
Add the new Go 1.8 Shutdown | Remove DisableBanner, is controlled by LoggerPolicy now.
...
Former-commit-id: 6ef71a4b9f5a79160a42d1111dd924e244ce1f4e
2017-02-17 04:46:33 +02:00
Gerasimos (Makis) Maropoulos
bfeabbd74e
Add a httptest simple example, I'm thinking to obselete the gitbook entirely, the feature/_example folder is easier for the users
...
Former-commit-id: 6d4143e63838164a6b1bf1184b0c86a6b3fe15cd
2017-02-17 01:34:45 +02:00
Gerasimos (Makis) Maropoulos
fa5b529634
Update readme
...
Former-commit-id: 825f79a9cc8eedb2026906ce28ebf795c7c0b158
2017-02-17 00:09:04 +02:00
Gerasimos (Makis) Maropoulos
a132e7cebc
Update README.md
...
Former-commit-id: 6f1ee755e36aeba65367a3ec276bd10d21d45343
2017-02-16 23:54:00 +02:00
Gerasimos (Makis) Maropoulos
245d9a5e6f
README: executable's overall file size between iris and a simple router
...
Former-commit-id: 19db08e5a0a37aa4ef3b92085939c5aba6eb22fa
2017-02-16 20:42:04 +02:00
Gerasimos (Makis) Maropoulos
1851d49b58
Set the yaml configuration fields identical to the original's Configuration fields. Update Readme
...
Former-commit-id: 2fa9f7985a16c5c292634d0140ee6b1959c04dbb
2017-02-16 18:14:55 +02:00
Gerasimos (Makis) Maropoulos
bcd7b3b169
Add the godoc link
...
Former-commit-id: b30646f1b5ebca23e336a44eeadcc52ef201085b
2017-02-14 06:01:15 +02:00
Gerasimos (Makis) Maropoulos
244a59e055
20 days of unstoppable work. Waiting fo go 1.8, I didn't finish yet, some touches remains.
...
Former-commit-id: ed84f99c89f43fe5e980a8e6d0ee22c186f0e1b9
2017-02-14 05:54:11 +02:00
Gerasimos (Makis) Maropoulos
5aaec72634
Update to 6.1.4 - Align with the improved kataras/go-sessions
2017-02-07 02:37:35 +02:00
Gerasimos (Makis) Maropoulos
84cd4ca6f4
Go v1.8 and the upcoming Iris version notes on HISTORY.md.
2017-02-05 20:26:40 +02:00
Gerasimos (Makis) Maropoulos
2a911a450c
Add DisableBodyConsumptionOnUnmarshal configuration field as discussed on [chat]( https://kataras.rocket.chat/channel/iris ). Read HISTORY.md
2017-01-30 12:35:43 +02:00
Gerasimos (Makis) Maropoulos
a563b37ba1
Update README.
2017-01-28 11:39:50 +02:00
Gerasimos (Makis) Maropoulos
64a2c7581a
Add a 'good' Overview section at the README.
2017-01-28 11:38:20 +02:00
Gerasimos (Makis) Maropoulos
73b8396cd6
https://github.com/iris-contrib/plugin/blob/master/cors/plugin.go#L28
2017-01-27 14:25:48 +02:00
Gerasimos (Makis) Maropoulos
4a903886e8
Update README
2017-01-26 09:50:26 +02:00
Gerasimos (Makis) Maropoulos
7dfb13cfbd
Nothing special here
2017-01-25 22:19:06 +02:00
Gerasimos (Makis) Maropoulos
306a709c04
Add a tip with a link on how to change the default Router. Remove the comic, not everybody has houmor.
2017-01-14 05:17:46 +02:00
Gerasimos (Makis) Maropoulos
3782a2e679
Update README.md
2017-01-13 09:52:10 +02:00
Gerasimos (Makis) Maropoulos
fdb74b6865
Update README.md
...
Remove deadlink, add a header to the comic and add a new gif which leads
on a youtube video with iris' users comments
2017-01-13 09:36:52 +02:00
Gerasimos (Makis) Maropoulos
f380d710cc
Update to 6.1.2
2017-01-13 05:57:46 +02:00
Gerasimos (Makis) Maropoulos
c73c2a00c3
Add a comic sketch
2017-01-13 02:13:02 +02:00
Gerasimos (Makis) Maropoulos
c91a1e6628
|You will love this| New Feature: Offline routing, dynamic changes against a route's state | https://github.com/kataras/iris/issues/585
...
Read HISTORY.md for details
2017-01-12 08:28:30 +02:00
Gerasimos (Makis) Maropoulos
020e857b22
Update to 6.1.0
2017-01-12 00:57:07 +02:00
Gerasimos (Makis) Maropoulos
5ad7c6e01f
Update to 6.0.9: Add PostInterrupt plugin. Read HISTORY.md
...
- Add `PostInterrupt` plugin, useful for customization of the
**os.Interrupt** singal, before that Iris closed the server
automatically.
```go
iris.Plugins.PostInterrupt(func(s *Framework){
// when os.Interrupt signal is fired the body of this function will be
fired,
// you're responsible for closing the server with s.Close()
// if that event is not registered then the framework
// will close the server for you.
/* Do any custom cleanup and finally call the s.Close()
remember you have the iris.Plugins.PreClose(func(s *Framework)) event
too
so you can split your logic in two logically places.
*/
})
```
2017-01-11 16:23:38 +02:00
Gerasimos (Makis) Maropoulos
e6b967bbb7
Update to 6.0.8
2017-01-10 15:14:14 +02:00
Gerasimos (Makis) Maropoulos
e4ab993760
Nothing special here, read HISTORY.md
2017-01-10 15:03:02 +02:00
Gerasimos (Makis) Maropoulos
053588babd
Update to 7.0.8 | iris.UseTemplateFunc -> Read HISTORY.md | Remove vendor folder because of: https://github.com/gavv/httpexpect/pull/34
...
Read HISTORY.md
2017-01-10 14:21:49 +02:00
Gerasimos (Makis) Maropoulos
893271bf02
Update to 6.0.7
2017-01-10 08:54:39 +02:00
Gerasimos (Makis) Maropoulos
c476fe8921
Feature Request: *http.Request access from Websockets. iris.Config.Websocket.IDGenerator custom connection's ID generator added too.
...
Example:
-
https://github.com/iris-contrib/examples/blob/master/websocket/main.go#L34
Relative commits to kataras/go-websocket:
-
550fc8b32e
-
62c2d989d8
2017-01-09 06:23:49 +02:00
Gerasimos (Makis) Maropoulos
d5d113b4ca
Add the loggerzap middleware to the README. Relative: https://github.com/iris-contrib/middleware/pull/23
2017-01-09 02:00:29 +02:00
Gerasimos (Makis) Maropoulos
081d01d459
Update README.md
2017-01-08 06:55:15 +02:00
Gerasimos (Makis) Maropoulos
a35607d6e3
Add 'vendor' folder for the httptest package dependecy (its master were broken before 4 hours, you are covered)
2017-01-08 06:41:38 +02:00
Gerasimos (Makis) Maropoulos
bcc35c11ca
Add iris.DestroySessionByID(string)
and iris.DestroyAllSessions()
as requested.
2017-01-08 06:11:50 +02:00
Gerasimos (Makis) Maropoulos
d060a73559
https://github.com/iris-contrib/gitbook/issues/30
2017-01-05 18:59:15 +02:00
Gerasimos (Makis) Maropoulos
d5a9410e2a
Update to 6.0.3: Add an easy way to set a request body size limit per client or globally for newcomers
2017-01-04 21:29:58 +02:00
Gerasimos (Makis) Maropoulos
3b0a8e0f2d
Fix https://github.com/kataras/iris/issues/574
2017-01-04 19:50:54 +02:00
Gerasimos (Makis) Maropoulos
058d70e533
Update to 6.0.1 - use the response recorder whenever you need it. Read HISTORY.md
2017-01-04 15:16:53 +02:00
Gerasimos (Makis) Maropoulos
8bbd9f8fc5
Happy new year! Update to 6.0.0 | HTTP/2 full support. https://github.com/kataras/iris/issues/565
...
full commit from development branch.
Examples, book, middleware, plugins are updated to the latest iris
version. Read HISTORY.md for more.
The 'old' v5 branch which relied on fasthttp exists for those who want
to use it navigate there: https://github.com/kataras/iris/tree/5.0.0
2017-01-02 21:20:17 +02:00
Gerasimos (Makis) Maropoulos
1f25e4335a
Nothing special here,yet, stay tuned
2016-12-19 11:15:48 +02:00
Gerasimos (Makis) Maropoulos
88c98bb1e1
More on Transactions: Fallback on, unexpected, panics and able to send 'silent' error which stills reverts the changes but no output
2016-12-18 14:08:28 +02:00
Gerasimos (Makis) Maropoulos
f54dc697cc
More on Transactions: iris.UseTransaction and iris.DoneTransaction. See HISTORY.md
2016-12-16 10:20:05 +02:00
Gerasimos (Makis) Maropoulos
48e770dab0
Update to 5.1.1 - Addons for the last feature, Transaction scopes. Read HISTORY.md
...
Read HISTORY.md and example here:
github.com/iris-contrib/examples/tree/master/transactions
2016-12-15 17:16:17 +02:00
Gerasimos (Makis) Maropoulos
c6b6ebf757
Fix the readme TODOs syntax. Read HISTORY.md for v5.1.0
...
Simple proof-of-concept example of request-scoped transactions here:
https://github.com/iris-contrib/examples/blob/master/request_transactions/main.go
2016-12-15 15:26:06 +02:00
Gerasimos (Makis) Maropoulos
65980d3363
New Feature: Request-Scoped Transactions
...
Example:
https://github.com/iris-contrib/examples/tree/master/request_transactions
2016-12-15 15:14:48 +02:00
Gerasimos (Makis) Maropoulos
1ff949b357
Test code: nothing special here, remove the getRandomPort and use getRandomNumber for all
2016-12-14 11:57:07 +02:00
Gerasimos (Makis) Maropoulos
baec4d0fff
Update Donations
2016-12-13 09:36:53 +02:00
Gerasimos (Makis) Maropoulos
5ba6ccf365
Qualify the quality repository report tool
2016-12-13 08:41:30 +02:00