Skip to content

Commit b44385d

Browse files
authored
Merge pull request kubernetes-sigs#289 from mengqiy/appscodejsonpatch
🐛 switch to use appscode/jsonpatch
2 parents d681ff8 + 8de5508 commit b44385d

File tree

13 files changed

+195
-81
lines changed

13 files changed

+195
-81
lines changed

Gopkg.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/patch/patch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"fmt"
2222
"reflect"
2323

24-
"github.com/mattbaird/jsonpatch"
24+
"github.com/appscode/jsonpatch"
2525

2626
"k8s.io/apimachinery/pkg/runtime"
2727
)

pkg/webhook/admission/response_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"errors"
2121
"net/http"
2222

23-
"github.com/mattbaird/jsonpatch"
23+
"github.com/appscode/jsonpatch"
2424
. "github.com/onsi/ginkgo"
2525
. "github.com/onsi/gomega"
2626

pkg/webhook/admission/types/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package types
1818

1919
import (
20-
"github.com/mattbaird/jsonpatch"
20+
"github.com/appscode/jsonpatch"
2121

2222
admissionv1beta1 "k8s.io/api/admission/v1beta1"
2323
"k8s.io/apimachinery/pkg/runtime"

pkg/webhook/admission/webhook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"strings"
2727
"sync"
2828

29-
"github.com/mattbaird/jsonpatch"
29+
"github.com/appscode/jsonpatch"
3030

3131
admissionv1beta1 "k8s.io/api/admission/v1beta1"
3232
admissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1"

pkg/webhook/admission/webhook_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"net/http"
2626
"net/http/httptest"
2727

28-
"github.com/mattbaird/jsonpatch"
28+
"github.com/appscode/jsonpatch"
2929
. "github.com/onsi/ginkgo"
3030
. "github.com/onsi/gomega"
3131

vendor/github.com/mattbaird/jsonpatch/.gitignore renamed to vendor/github.com/appscode/jsonpatch/.gitignore

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/appscode/jsonpatch/.travis.yml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/mattbaird/jsonpatch/README.md renamed to vendor/github.com/appscode/jsonpatch/README.md

Lines changed: 12 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/appscode/jsonpatch/go.mod

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/appscode/jsonpatch/go.sum

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)