Skip to content

Commit

Permalink
Upgrade v1.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbrzzl committed Nov 9, 2023
1 parent 7ea4936 commit d243272
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 38 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/goreleaser.yml

This file was deleted.

8 changes: 4 additions & 4 deletions context_request_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import (
"strings"
"testing"

configmocks "github.com/goravel/framework/contracts/config/mocks"
filesystemmocks "github.com/goravel/framework/contracts/filesystem/mocks"
contractshttp "github.com/goravel/framework/contracts/http"
logmocks "github.com/goravel/framework/contracts/log/mocks"
"github.com/goravel/framework/contracts/validation"
validationmocks "github.com/goravel/framework/contracts/validation/mocks"
frameworkfilesystem "github.com/goravel/framework/filesystem"
configmocks "github.com/goravel/framework/mocks/config"
filesystemmocks "github.com/goravel/framework/mocks/filesystem"
logmocks "github.com/goravel/framework/mocks/log"
validationmocks "github.com/goravel/framework/mocks/validation"
"github.com/goravel/framework/support/json"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
Expand Down
2 changes: 1 addition & 1 deletion context_response_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"strings"
"testing"

configmocks "github.com/goravel/framework/contracts/config/mocks"
contractshttp "github.com/goravel/framework/contracts/http"
configmocks "github.com/goravel/framework/mocks/config"
"github.com/goravel/framework/support/json"
"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion cors_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"net/http"
"testing"

configmocks "github.com/goravel/framework/contracts/config/mocks"
contractshttp "github.com/goravel/framework/contracts/http"
configmocks "github.com/goravel/framework/mocks/config"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/gofiber/template/html/v2 v2.0.5
github.com/gookit/color v1.5.4
github.com/gookit/validate v1.5.1
github.com/goravel/framework v1.13.1-0.20231006012150-4a6e705dbd56
github.com/goravel/framework v1.13.4
github.com/savioxavier/termlink v1.3.0
github.com/spf13/cast v1.5.1
github.com/stretchr/testify v1.8.4
Expand Down
5 changes: 4 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,11 @@ github.com/goravel/file-rotatelogs v0.0.0-20211215053220-2ab31dd9575c h1:obhFK91
github.com/goravel/file-rotatelogs v0.0.0-20211215053220-2ab31dd9575c/go.mod h1:YSWsLXlG16u5CWFaXNZHhEQD10+NwF3xfgDV816OwLE=
github.com/goravel/file-rotatelogs/v2 v2.4.1 h1:ogkeIFcTHSBRUBpZYiyJbpul8hkVXxHPuDbOaP78O1M=
github.com/goravel/file-rotatelogs/v2 v2.4.1/go.mod h1:euk9qr52WrzM8ICs1hecFcR4CZ/ZZOPdacHfvHgbOf0=
github.com/goravel/framework v1.13.1-0.20231006012150-4a6e705dbd56 h1:9pHiJiqJVg7wuHxEVKEnIbxErTfCDFhOKifN0iU2q0A=
github.com/goravel/framework v1.13.1-0.20231006012150-4a6e705dbd56/go.mod h1:jUJTB38V9LEDneVTmNxPl8ALQXjvtirfjck4XQI12J8=
github.com/goravel/framework v1.13.3 h1:pozapgxJWEE7hZVBF/UYwEYQ23tQdZ+uqJjycR9MnTk=
github.com/goravel/framework v1.13.3/go.mod h1:BOUTIwzhOMyKNXaxSYbVB74NkmbS2xv1W1fPRv9eDws=
github.com/goravel/framework v1.13.4 h1:Z9ZMZZSCFONiV8IHx/tC1a5MKfB9sqsNbuH7SSmJVMQ=
github.com/goravel/framework v1.13.4/go.mod h1:BOUTIwzhOMyKNXaxSYbVB74NkmbS2xv1W1fPRv9eDws=
github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4=
github.com/gorilla/sessions v1.2.1/go.mod h1:dk2InVEVJ0sfLlnXv9EAgkf6ecYs/i80K/zI+bUmuGM=
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 h1:UH//fgunKIs4JdUbpDl1VZCDaL56wXCB/5+wF6uHfaI=
Expand Down
2 changes: 1 addition & 1 deletion group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"path/filepath"
"testing"

configmocks "github.com/goravel/framework/contracts/config/mocks"
contractshttp "github.com/goravel/framework/contracts/http"
"github.com/goravel/framework/contracts/route"
configmocks "github.com/goravel/framework/mocks/config"
"github.com/goravel/framework/support/json"
"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion route_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (

"github.com/gofiber/fiber/v2"
"github.com/gofiber/template/html/v2"
configmocks "github.com/goravel/framework/contracts/config/mocks"
contractshttp "github.com/goravel/framework/contracts/http"
"github.com/goravel/framework/contracts/validation"
configmocks "github.com/goravel/framework/mocks/config"
"github.com/stretchr/testify/assert"
)

Expand Down
4 changes: 2 additions & 2 deletions view_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"net/http"
"testing"

configmocks "github.com/goravel/framework/contracts/config/mocks"
contractshttp "github.com/goravel/framework/contracts/http"
configmocks "github.com/goravel/framework/mocks/config"
httpmocks "github.com/goravel/framework/mocks/http"
httpmocks "github.com/goravel/framework/contracts/http/mocks"
"github.com/goravel/framework/support/file"
"github.com/stretchr/testify/assert"
)
Expand Down

0 comments on commit d243272

Please sign in to comment.