A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/dalibo/ldap2pg/commit/d61cac4000ebeea074cacba867530636f72a794c below:

Merge pull request #733 from bersace/mod · dalibo/ldap2pg@d61cac4 · GitHub

File tree Expand file treeCollapse file tree 61 files changed

+110

-110

lines changed

Filter options

Expand file treeCollapse file tree 61 files changed

+110

-110

lines changed Original file line number Diff line number Diff line change

@@ -7,7 +7,7 @@ import (

7 7

"strings"

8 8

"text/template"

9 9 10 -

"github.com/dalibo/ldap2pg/internal/privileges"

10 +

"github.com/dalibo/ldap2pg/v6/internal/privileges"

11 11

"github.com/gosimple/slug"

12 12

)

13 13 Original file line number Diff line number Diff line change

@@ -147,18 +147,18 @@ Run unit tests as usual go tests.

147 147

$ go test ./...

148 148

? github.com/dalibo/ldap2pg/cmd/render-doc [no test files]

149 149

ok github.com/dalibo/ldap2pg/cmd/mon-dojo 0.002s

150 -

ok github.com/dalibo/ldap2pg/internal 0.003s

151 -

ok github.com/dalibo/ldap2pg/internal/config 0.007s

152 -

ok github.com/dalibo/ldap2pg/internal/inspect 0.005s

153 -

ok github.com/dalibo/ldap2pg/internal/ldap 0.005s

154 -

ok github.com/dalibo/ldap2pg/internal/lists 0.005s

155 -

? github.com/dalibo/ldap2pg/internal/postgres [no test files]

156 -

ok github.com/dalibo/ldap2pg/internal/perf 0.004s

157 -

ok github.com/dalibo/ldap2pg/internal/privileges 0.003s

158 -

? github.com/dalibo/ldap2pg/internal/role [no test files]

159 -

ok github.com/dalibo/ldap2pg/internal/pyfmt 0.004s

160 -

ok github.com/dalibo/ldap2pg/internal/tree 0.002s

161 -

ok github.com/dalibo/ldap2pg/internal/wanted 0.003s

150 +

ok github.com/dalibo/ldap2pg/v6/internal 0.003s

151 +

ok github.com/dalibo/ldap2pg/v6/internal/config 0.007s

152 +

ok github.com/dalibo/ldap2pg/v6/internal/inspect 0.005s

153 +

ok github.com/dalibo/ldap2pg/v6/internal/ldap 0.005s

154 +

ok github.com/dalibo/ldap2pg/v6/internal/lists 0.005s

155 +

? github.com/dalibo/ldap2pg/v6/internal/postgres [no test files]

156 +

ok github.com/dalibo/ldap2pg/v6/internal/perf 0.004s

157 +

ok github.com/dalibo/ldap2pg/v6/internal/privileges 0.003s

158 +

? github.com/dalibo/ldap2pg/v6/internal/role [no test files]

159 +

ok github.com/dalibo/ldap2pg/v6/internal/pyfmt 0.004s

160 +

ok github.com/dalibo/ldap2pg/v6/internal/tree 0.002s

161 +

ok github.com/dalibo/ldap2pg/v6/internal/wanted 0.003s

162 162

$

163 163

```

164 164 Original file line number Diff line number Diff line change

@@ -1,4 +1,4 @@

1 -

module github.com/dalibo/ldap2pg

1 +

module github.com/dalibo/ldap2pg/v6

2 2 3 3

go 1.24

4 4 Original file line number Diff line number Diff line change

@@ -8,11 +8,11 @@ import (

8 8

"strings"

9 9

"time"

10 10 11 -

"github.com/dalibo/ldap2pg/internal"

12 -

"github.com/dalibo/ldap2pg/internal/inspect"

13 -

"github.com/dalibo/ldap2pg/internal/ldap"

14 -

"github.com/dalibo/ldap2pg/internal/perf"

15 -

"github.com/dalibo/ldap2pg/internal/postgres"

11 +

"github.com/dalibo/ldap2pg/v6/internal"

12 +

"github.com/dalibo/ldap2pg/v6/internal/inspect"

13 +

"github.com/dalibo/ldap2pg/v6/internal/ldap"

14 +

"github.com/dalibo/ldap2pg/v6/internal/perf"

15 +

"github.com/dalibo/ldap2pg/v6/internal/postgres"

16 16

"github.com/knadh/koanf/providers/env"

17 17

"github.com/knadh/koanf/providers/posflag"

18 18

"github.com/knadh/koanf/v2"

Original file line number Diff line number Diff line change

@@ -15,14 +15,14 @@ import (

15 15

"golang.org/x/exp/maps"

16 16

"golang.org/x/exp/slices"

17 17 18 -

"github.com/dalibo/ldap2pg/internal"

19 -

"github.com/dalibo/ldap2pg/internal/config"

20 -

"github.com/dalibo/ldap2pg/internal/errorlist"

21 -

"github.com/dalibo/ldap2pg/internal/inspect"

22 -

"github.com/dalibo/ldap2pg/internal/ldap"

23 -

"github.com/dalibo/ldap2pg/internal/postgres"

24 -

"github.com/dalibo/ldap2pg/internal/privileges"

25 -

"github.com/dalibo/ldap2pg/internal/role"

18 +

"github.com/dalibo/ldap2pg/v6/internal"

19 +

"github.com/dalibo/ldap2pg/v6/internal/config"

20 +

"github.com/dalibo/ldap2pg/v6/internal/errorlist"

21 +

"github.com/dalibo/ldap2pg/v6/internal/inspect"

22 +

"github.com/dalibo/ldap2pg/v6/internal/ldap"

23 +

"github.com/dalibo/ldap2pg/v6/internal/postgres"

24 +

"github.com/dalibo/ldap2pg/v6/internal/privileges"

25 +

"github.com/dalibo/ldap2pg/v6/internal/role"

26 26

mapset "github.com/deckarep/golang-set/v2"

27 27

"github.com/joho/godotenv"

28 28

"github.com/mattn/go-isatty"

Original file line number Diff line number Diff line change

@@ -18,7 +18,7 @@ var (

18 18

)

19 19 20 20

func version() string {

21 -

return versions["github.com/dalibo/ldap2pg"]

21 +

return versions["github.com/dalibo/ldap2pg/v6"]

22 22

}

23 23 24 24

func init() {

Original file line number Diff line number Diff line change

@@ -6,7 +6,7 @@ import (

6 6

"os"

7 7

"testing"

8 8 9 -

"github.com/dalibo/ldap2pg/internal"

9 +

"github.com/dalibo/ldap2pg/v6/internal"

10 10

)

11 11 12 12

func TestMain(m *testing.M) {

Original file line number Diff line number Diff line change

@@ -7,10 +7,10 @@ import (

7 7

"os"

8 8

"path"

9 9 10 -

"github.com/dalibo/ldap2pg/internal/ldap"

11 -

"github.com/dalibo/ldap2pg/internal/postgres"

12 -

"github.com/dalibo/ldap2pg/internal/privileges"

13 -

"github.com/dalibo/ldap2pg/internal/wanted"

10 +

"github.com/dalibo/ldap2pg/v6/internal/ldap"

11 +

"github.com/dalibo/ldap2pg/v6/internal/postgres"

12 +

"github.com/dalibo/ldap2pg/v6/internal/privileges"

13 +

"github.com/dalibo/ldap2pg/v6/internal/wanted"

14 14

"github.com/jackc/pgx/v5"

15 15

)

16 16 Original file line number Diff line number Diff line change

@@ -5,9 +5,9 @@ import (

5 5

"errors"

6 6

"fmt"

7 7 8 -

"github.com/dalibo/ldap2pg/internal/ldap"

9 -

"github.com/dalibo/ldap2pg/internal/normalize"

10 -

"github.com/dalibo/ldap2pg/internal/privileges"

8 +

"github.com/dalibo/ldap2pg/v6/internal/ldap"

9 +

"github.com/dalibo/ldap2pg/v6/internal/normalize"

10 +

"github.com/dalibo/ldap2pg/v6/internal/privileges"

11 11

"golang.org/x/exp/maps"

12 12

)

13 13 Original file line number Diff line number Diff line change

@@ -3,7 +3,7 @@ package config_test

3 3

import (

4 4

"testing"

5 5 6 -

"github.com/dalibo/ldap2pg/internal/config"

6 +

"github.com/dalibo/ldap2pg/v6/internal/config"

7 7

"github.com/lithammer/dedent"

8 8

"github.com/stretchr/testify/require"

9 9

"gopkg.in/yaml.v3"

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4