Skip to content

Commit 9990e80

Browse files
authored
Merge pull request #11 from krakend/update_namespace
Update namespace from krakendio to krakend
2 parents 65a87a5 + 4e1988f commit 9990e80

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.deepsource.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ name = "go"
55
enabled = true
66

77
[analyzers.meta]
8-
import_root = "github.com/krakendio/httpcache"
8+
import_root = "github.com/krakend/httpcache"
99

1010
[[transformers]]
1111
name = "gofmt"
1212
enabled = true
1313

1414
[[transformers]]
1515
name = "gofumpt"
16-
enabled = true
16+
enabled = true

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Test
1616
uses: docker://krakend/builder:latest-linux-generic
1717
with:
1818
args: sh -c "go get -t -v ./...;
1919
gofmt -w -s . && git diff --exit-code;
2020
go tool vet .;
21-
go test -v -race ./..."
21+
go test -v -race ./..."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ httpcache
44
This a fork of github.com/gregjones/httpcache which includes various fixes.
55
Original backends are removed since are not used by KrakenD.
66

7-
[![GoDoc](https://godoc.org/github.com/krakendio/httpcache?status.svg)](https://godoc.org/github.com/krakendio/httpcache)
7+
[![GoDoc](https://godoc.org/github.com/krakend/httpcache?status.svg)](https://godoc.org/github.com/krakend/httpcache)
88

99
Package httpcache provides a http.RoundTripper implementation that works as a mostly [RFC 7234](https://tools.ietf.org/html/rfc7234) compliant cache for http responses.
1010

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/krakendio/httpcache
1+
module github.com/krakend/httpcache
22

33
go 1.19

test/test.go

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

7-
"github.com/krakendio/httpcache"
7+
"github.com/krakend/httpcache"
88
)
99

1010
// Cache excercises a httpcache.Cache implementation.

test/test_test.go

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

6-
"github.com/krakendio/httpcache"
7-
"github.com/krakendio/httpcache/test"
6+
"github.com/krakend/httpcache"
7+
"github.com/krakend/httpcache/test"
88
)
99

1010
func TestMemoryCache(t *testing.T) {

0 commit comments

Comments
 (0)