Skip to content

Commit

Permalink
Release v0.16.0-megalithic.1
Browse files Browse the repository at this point in the history
  • Loading branch information
drauschenbach committed Jun 22, 2020
1 parent cccd334 commit a772b96
Show file tree
Hide file tree
Showing 25 changed files with 50 additions and 46 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v0.16.0-megalithic.1

Build with Go 1.13 to add support for Go Template variable replacement.

### v0.16.0

28f72608 Release arm64 binaries
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.build.alpine
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.10.2-alpine
FROM golang:1.13.8-alpine

RUN apk add --no-cache make git
RUN mkdir -p /go/src/github.com/kelseyhightower/confd && \
ln -s /go/src/github.com/kelseyhightower/confd /app
RUN mkdir -p /go/src/github.com/Megalithic-LLC/confd && \
ln -s /go/src/github.com/Megalithic-LLC/confd /app

WORKDIR /app
24 changes: 12 additions & 12 deletions backends/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ import (
"errors"
"strings"

"github.com/kelseyhightower/confd/backends/consul"
"github.com/kelseyhightower/confd/backends/dynamodb"
"github.com/kelseyhightower/confd/backends/env"
"github.com/kelseyhightower/confd/backends/etcd"
"github.com/kelseyhightower/confd/backends/etcdv3"
"github.com/kelseyhightower/confd/backends/file"
"github.com/kelseyhightower/confd/backends/rancher"
"github.com/kelseyhightower/confd/backends/redis"
"github.com/kelseyhightower/confd/backends/ssm"
"github.com/kelseyhightower/confd/backends/vault"
"github.com/kelseyhightower/confd/backends/zookeeper"
"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/backends/consul"
"github.com/Megalithic-LLC/confd/backends/dynamodb"
"github.com/Megalithic-LLC/confd/backends/env"
"github.com/Megalithic-LLC/confd/backends/etcd"
"github.com/Megalithic-LLC/confd/backends/etcdv3"
"github.com/Megalithic-LLC/confd/backends/file"
"github.com/Megalithic-LLC/confd/backends/rancher"
"github.com/Megalithic-LLC/confd/backends/redis"
"github.com/Megalithic-LLC/confd/backends/ssm"
"github.com/Megalithic-LLC/confd/backends/vault"
"github.com/Megalithic-LLC/confd/backends/zookeeper"
"github.com/Megalithic-LLC/confd/log"
)

// The StoreClient interface is implemented by objects that can retrieve
Expand Down
2 changes: 1 addition & 1 deletion backends/config.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package backends

import (
util "github.com/kelseyhightower/confd/util"
util "github.com/Megalithic-LLC/confd/util"
)

type Config struct {
Expand Down
2 changes: 1 addition & 1 deletion backends/dynamodb/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/log"
)

// Client is a wrapper around the DynamoDB client
Expand Down
2 changes: 1 addition & 1 deletion backends/env/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/log"
)

var replacer = strings.NewReplacer("/", "_")
Expand Down
2 changes: 1 addition & 1 deletion backends/etcd/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

"github.com/coreos/etcd/client"
"golang.org/x/net/context"
"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/log"
)

// Client is a wrapper around the etcd client
Expand Down
2 changes: 1 addition & 1 deletion backends/etcdv3/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"golang.org/x/net/context"

"github.com/coreos/etcd/clientv3"
"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/log"
"sync"
)

Expand Down
4 changes: 2 additions & 2 deletions backends/file/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strings"

"github.com/fsnotify/fsnotify"
"github.com/kelseyhightower/confd/log"
util "github.com/kelseyhightower/confd/util"
"github.com/Megalithic-LLC/confd/log"
util "github.com/Megalithic-LLC/confd/util"
"gopkg.in/yaml.v2"
)

Expand Down
2 changes: 1 addition & 1 deletion backends/rancher/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

log "github.com/kelseyhightower/confd/log"
log "github.com/Megalithic-LLC/confd/log"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion backends/redis/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"time"

"github.com/garyburd/redigo/redis"
"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/log"
)


Expand Down
2 changes: 1 addition & 1 deletion backends/ssm/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/ssm"
"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/log"
)

type Client struct {
Expand Down
2 changes: 1 addition & 1 deletion backends/vault/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"path"

vaultapi "github.com/hashicorp/vault/api"
"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/log"
)

// Client is a wrapper around the vault client
Expand Down
2 changes: 1 addition & 1 deletion backends/zookeeper/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"time"

"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/log"
zk "github.com/samuel/go-zookeeper/zk"
)

Expand Down
6 changes: 3 additions & 3 deletions confd.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"runtime"
"syscall"

"github.com/kelseyhightower/confd/backends"
"github.com/kelseyhightower/confd/log"
"github.com/kelseyhightower/confd/resource/template"
"github.com/Megalithic-LLC/confd/backends"
"github.com/Megalithic-LLC/confd/log"
"github.com/Megalithic-LLC/confd/resource/template"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
"strings"

"github.com/BurntSushi/toml"
"github.com/kelseyhightower/confd/backends"
"github.com/kelseyhightower/confd/log"
"github.com/kelseyhightower/confd/resource/template"
"github.com/Megalithic-LLC/confd/backends"
"github.com/Megalithic-LLC/confd/log"
"github.com/Megalithic-LLC/confd/resource/template"
)

type TemplateConfig = template.Config
Expand Down
2 changes: 1 addition & 1 deletion config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/log"
)

func TestInitConfigDefaultConfig(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions resource/template/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"sync"
"time"

"github.com/kelseyhightower/confd/log"
util "github.com/kelseyhightower/confd/util"
"github.com/Megalithic-LLC/confd/log"
util "github.com/Megalithic-LLC/confd/util"
)

type Processor interface {
Expand Down
6 changes: 3 additions & 3 deletions resource/template/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ import (
"text/template"

"github.com/BurntSushi/toml"
"github.com/kelseyhightower/confd/backends"
"github.com/kelseyhightower/confd/log"
util "github.com/kelseyhightower/confd/util"
"github.com/Megalithic-LLC/confd/backends"
"github.com/Megalithic-LLC/confd/log"
util "github.com/Megalithic-LLC/confd/util"
"github.com/kelseyhightower/memkv"
"github.com/xordataexchange/crypt/encoding/secconf"
)
Expand Down
4 changes: 2 additions & 2 deletions resource/template/resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"testing"
"text/template"

"github.com/kelseyhightower/confd/backends/env"
"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/backends/env"
"github.com/Megalithic-LLC/confd/log"
)

// createTempDirs is a helper function which creates temporary directories
Expand Down
2 changes: 1 addition & 1 deletion resource/template/template_funcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"strings"
"time"

util "github.com/kelseyhightower/confd/util"
util "github.com/Megalithic-LLC/confd/util"
"github.com/kelseyhightower/memkv"
)

Expand Down
2 changes: 1 addition & 1 deletion resource/template/template_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"
"testing"

"github.com/kelseyhightower/confd/backends"
"github.com/Megalithic-LLC/confd/backends"
"github.com/xordataexchange/crypt/encoding/secconf"
)

Expand Down
2 changes: 1 addition & 1 deletion util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package util

import (
"fmt"
"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/log"
"os"
"path"
"path/filepath"
Expand Down
2 changes: 1 addition & 1 deletion util/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sort"
"testing"

"github.com/kelseyhightower/confd/log"
"github.com/Megalithic-LLC/confd/log"
)

// createRecursiveDirs is a helper function which creates temporary directorie
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

const Version = "0.17.0-dev"
const Version = "0.16.0-megalithic.1"

// We want to replace this variable at build time with "-ldflags -X main.GitSHA=xxx", where const is not supported.
var GitSHA = ""

0 comments on commit a772b96

Please sign in to comment.