This repository was archived by the owner on Feb 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +183
-60
lines changed Expand file tree Collapse file tree 6 files changed +183
-60
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ language: go
2
2
go :
3
3
- 1.11.x
4
4
- 1.12.x
5
+ - 1.13.x
6
+ services :
7
+ - postgresql
5
8
env :
6
9
- GO111MODULE=on
7
10
install :
@@ -14,4 +17,4 @@ after_success:
14
17
- bash <(curl -s https://codecov.io/bash)
15
18
matrix :
16
19
allow_failures :
17
- - go : tip
20
+ - go : tip
Original file line number Diff line number Diff line change 4
4
[ ![ Build Status] ( https://travis-ci.com/go-helium/redis.svg?branch=master )] ( https://travis-ci.com/go-helium/redis )
5
5
[ ![ Report] ( https://goreportcard.com/badge/github.com/go-helium/postgres )] ( https://goreportcard.com/report/github.com/go-helium/postgres )
6
6
[ ![ GitHub release] ( https://img.shields.io/github/release/go-helium/postgres.svg )] ( https://github.com/go-helium/postgres )
7
+ [ ![ Sourcegraph] ( https://sourcegraph.com/github.com/go-helium/postgres/-/badge.svg )] ( https://sourcegraph.com/github.com/go-helium/postgres?badge )
7
8
![ GitHub] ( https://img.shields.io/github/license/go-helium/postgres.svg?style=popout )
8
9
9
10
Module provides you connection to PostgreSQL server
@@ -34,4 +35,9 @@ POSTGRES_PASSWORD=string
34
35
POSTGRES_DATABASE=string
35
36
POSTGRES_DEBUG=bool
36
37
POSTGRES_POOL_SIZE=int
38
+ POSTGRES_OPTIONS_HOST=string
39
+ POSTGRES_OPTIONS_SSLKEY=string
40
+ POSTGRES_OPTIONS_SSLMODE=string
41
+ POSTGRES_OPTIONS_SSLCERT=string
42
+ POSTGRES_OPTIONS_SSLROOTCERT=string
37
43
```
Original file line number Diff line number Diff line change 1
1
module github.com/go-helium/postgres
2
2
3
+ go 1.13
4
+
5
+ replace mellium.im/sasl v0.2.1 => github.com/mellium/sasl v0.2.1
6
+
3
7
require (
4
- github.com/go-pg/pg v8.0.4+incompatible
5
- github.com/im-kulikov/helium v0.11.11
6
- github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a // indirect
8
+ github.com/go-pg/pg/v9 v9.0.1
9
+ github.com/im-kulikov/helium v0.12.2
7
10
github.com/pkg/errors v0.8.1
8
- github.com/spf13/viper v1.3.2
9
- github.com/stretchr/testify v1.3.0
10
- go.uber.org/zap v1.10.0
11
- mellium.im/sasl v0.2.1 // indirect
11
+ github.com/spf13/viper v1.4.0
12
+ github.com/stretchr/testify v1.4.0
13
+ go.uber.org/zap v1.12.0
12
14
)
13
-
14
- replace mellium.im/sasl v0.2.1 => github.com/mellium/sasl v0.2.1
You can’t perform that action at this time.
0 commit comments