Skip to content

Commit 28c99e8

Browse files
replace all instances of tufin by oasdiff (#663)
1 parent 2072463 commit 28c99e8

331 files changed

Lines changed: 578 additions & 577 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.goreleaser.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ builds:
1010
env:
1111
- CGO_ENABLED=0
1212
ldflags:
13-
- -s -w -X github.com/tufin/oasdiff/build.Version={{.Version}}
13+
- -s -w -X github.com/oasdiff/oasdiff/build.Version={{.Version}}
1414

1515
release:
1616
prerelease: auto
@@ -21,13 +21,13 @@ universal_binaries:
2121
brews:
2222
-
2323
name: oasdiff
24-
homepage: "https://github.com/tufin/oasdiff"
24+
homepage: "https://github.com/oasdiff/oasdiff"
2525
repository:
26-
owner: tufin
27-
name: homebrew-tufin
26+
owner: oasdiff
27+
name: homebrew-oasdiff
2828
commit_author:
2929
name: Reuven Harrison
30-
email: rh@tufin.com
30+
email: reuvenharrison@gmail.com
3131

3232
nfpms:
3333
# note that this is an array of nfpm configs
@@ -42,15 +42,15 @@ nfpms:
4242

4343
# Your app's vendor.
4444
# Default is empty.
45-
vendor: tufin
45+
vendor: oasdiff
4646

4747
# Template to your app's homepage.
4848
# Default is empty.
49-
homepage: "https://github.com/tufin/oasdiff"
49+
homepage: "https://github.com/oasdiff/oasdiff"
5050

5151
# Your app's maintainer (probably you).
5252
# Default is empty.
53-
maintainer: Reuven Harrison <rh@tufin.com>
53+
maintainer: Reuven Harrison <reuvenharrison@gmail.com>
5454

5555
# Template to your app's description.
5656
# Default is empty.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COPY . .
1111
RUN VERSION=$(git describe --always --tags) && \
1212
CGO_ENABLED=0 GOOS=linux go build \
1313
-mod=readonly \
14-
-ldflags "-s -w -X github.com/tufin/oasdiff/build.Version=${VERSION}"
14+
-ldflags "-s -w -X github.com/oasdiff/oasdiff/build.Version=${VERSION}"
1515

1616
### Create image ###
1717
FROM alpine:3

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# A Self-Documenting Makefile: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
22

33
VERSION=$(shell git describe --always --tags | cut -d "v" -f 2)
4-
LINKER_FLAGS=-s -w -X github.com/tufin/oasdiff/build.Version=${VERSION}
4+
LINKER_FLAGS=-s -w -X github.com/oasdiff/oasdiff/build.Version=${VERSION}
55
GOLANGCILINT_VERSION=v1.52.2
66

77
.PHONY: test

checker/api_change.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66

77
"github.com/TwiN/go-color"
88
"github.com/getkin/kin-openapi/openapi3"
9-
"github.com/tufin/oasdiff/diff"
10-
"github.com/tufin/oasdiff/load"
9+
"github.com/oasdiff/oasdiff/diff"
10+
"github.com/oasdiff/oasdiff/load"
1111
)
1212

1313
// ApiChange represnts a change in the Paths Section of an OpenAPI spec

checker/api_change_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package checker_test
33
import (
44
"testing"
55

6+
"github.com/oasdiff/oasdiff/checker"
7+
"github.com/oasdiff/oasdiff/load"
68
"github.com/stretchr/testify/require"
7-
"github.com/tufin/oasdiff/checker"
8-
"github.com/tufin/oasdiff/load"
99
)
1010

1111
var apiChange = checker.ApiChange{

checker/api_change_unix_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ package checker_test
55
import (
66
"testing"
77

8+
"github.com/oasdiff/oasdiff/checker"
89
"github.com/stretchr/testify/require"
9-
"github.com/tufin/oasdiff/checker"
1010
)
1111

1212
func TestApiChange_PrettyNotPipedUnix(t *testing.T) {

checker/api_change_windows_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package checker_test
33
import (
44
"testing"
55

6+
"github.com/oasdiff/oasdiff/checker"
67
"github.com/stretchr/testify/require"
7-
"github.com/tufin/oasdiff/checker"
88
)
99

1010
func TestApiChange_PrettyNotPipedWindows(t *testing.T) {

checker/attributes_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package checker_test
33
import (
44
"testing"
55

6+
"github.com/oasdiff/oasdiff/checker"
7+
"github.com/oasdiff/oasdiff/diff"
68
"github.com/stretchr/testify/require"
7-
"github.com/tufin/oasdiff/checker"
8-
"github.com/tufin/oasdiff/diff"
99
)
1010

1111
func TestBreaking_Attributes(t *testing.T) {

checker/changes_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"sort"
55
"testing"
66

7+
"github.com/oasdiff/oasdiff/checker"
78
"github.com/stretchr/testify/require"
8-
"github.com/tufin/oasdiff/checker"
99
)
1010

1111
var changes = checker.Changes{

checker/check_added_required_request_body.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package checker
22

33
import (
4-
"github.com/tufin/oasdiff/diff"
4+
"github.com/oasdiff/oasdiff/diff"
55
)
66

77
const (

0 commit comments

Comments
 (0)