Skip to content

Commit

Permalink
releasing and CS for v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy-j committed Jul 9, 2018
1 parent 5509829 commit 21bd058
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@ CHANGELOG

v1.1.0 (80.07.2018)
-------
-
- bugfix: Wrong values for $_SERVER['REQUEST_TIME'] and $_SERVER['REQUEST_TIME_FLOAT']
- rr now resolves remoteAddr (ip-address)
- improvements in error buffer
- support for custom configs and dependency injection for services
- support for net/http native middlewares
- better debugger
- config pre-processing now allows second values for http service timeouts
- support for non serving services

v1.0.5 (30.06.2018)
-------
Expand Down
2 changes: 1 addition & 1 deletion service/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"sync"
"reflect"
"sync"
)

var noConfig = fmt.Errorf("no config has been provided")
Expand Down
4 changes: 2 additions & 2 deletions service/http/config_test.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package http

import (
"encoding/json"
"github.com/spiral/roadrunner"
"github.com/spiral/roadrunner/service"
"github.com/stretchr/testify/assert"
"os"
"testing"
"time"
"github.com/spiral/roadrunner/service"
"encoding/json"
)

type mockCfg struct{ cfg string }
Expand Down
4 changes: 2 additions & 2 deletions service/rpc/config_test.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package rpc

import (
"encoding/json"
"github.com/spiral/roadrunner/service"
"github.com/stretchr/testify/assert"
"runtime"
"testing"
"encoding/json"
"github.com/spiral/roadrunner/service"
)

type testCfg struct{ cfg string }
Expand Down
4 changes: 2 additions & 2 deletions service/static/config_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package static

import (
"encoding/json"
"github.com/spiral/roadrunner/service"
"github.com/stretchr/testify/assert"
"testing"
"github.com/spiral/roadrunner/service"
"encoding/json"
)

type mockCfg struct{ cfg string }
Expand Down

0 comments on commit 21bd058

Please sign in to comment.