Skip to content

Commit e2807ef

Browse files
chore: replace codegen, test and docs references to github.com/tabbed repos (#2418)
1 parent b643642 commit e2807ef

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

docs/guides/migrating-to-sqlc-gen-kotlin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Starting in sqlc 1.16.0, built-in Kotlin support has been deprecated. It will
44
be fully removed in 1.17.0 in favor of sqlc-gen-kotlin.
55

6-
This guide will walk you through migrating to the [sqlc-gen-kotlin](https://github.com/tabbed/sqlc-gen-kotlin) plugin,
6+
This guide will walk you through migrating to the [sqlc-gen-kotlin](https://github.com/sqlc-dev/sqlc-gen-kotlin) plugin,
77
which involves three steps.
88

99
1. Add the sqlc-gen-kotlin plugin

docs/guides/migrating-to-sqlc-gen-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Starting in sqlc 1.16.0, built-in Python support has been deprecated. It will
44
be fully removed in 1.17.0 in favor of sqlc-gen-python.
55

6-
This guide will walk you through migrating to the [sqlc-gen-python](https://github.com/tabbed/sqlc-gen-python) plugin,
6+
This guide will walk you through migrating to the [sqlc-gen-python](https://github.com/sqlc-dev/sqlc-gen-python) plugin,
77
which involves three steps.
88

99
1. Add the sqlc-gen-python plugin

docs/reference/config.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ version: '2'
6565
plugins:
6666
- name: py
6767
wasm:
68-
url: https://github.com/tabbed/sqlc-gen-python/releases/download/v0.16.0-alpha/sqlc-gen-python.wasm
68+
url: https://github.com/sqlc-dev/sqlc-gen-python/releases/download/v0.16.0-alpha/sqlc-gen-python.wasm
6969
sha256: 428476c7408fd4c032da4ec74e8a7344f4fa75e0f98a5a3302f238283b9b95f2
7070
sql:
7171
- schema: "schema.sql"
@@ -273,7 +273,7 @@ sql:
273273

274274
#### kotlin
275275

276-
> Removed in v1.17.0 and replaced by the [sqlc-gen-kotlin](https://github.com/tabbed/sqlc-gen-kotlin) plugin. Follow the [migration guide](../guides/migrating-to-sqlc-gen-kotlin) to switch.
276+
> Removed in v1.17.0 and replaced by the [sqlc-gen-kotlin](https://github.com/sqlc-dev/sqlc-gen-kotlin) plugin. Follow the [migration guide](../guides/migrating-to-sqlc-gen-kotlin) to switch.
277277

278278
- `package`:
279279
- The package name to use for the generated code.
@@ -284,7 +284,7 @@ sql:
284284

285285
#### python
286286

287-
> Removed in v1.17.0 and replaced by the [sqlc-gen-python](https://github.com/tabbed/sqlc-gen-python) plugin. Follow the [migration guide](../guides/migrating-to-sqlc-gen-python) to switch.
287+
> Removed in v1.17.0 and replaced by the [sqlc-gen-python](https://github.com/sqlc-dev/sqlc-gen-python) plugin. Follow the [migration guide](../guides/migrating-to-sqlc-gen-python) to switch.
288288

289289
- `package`:
290290
- The package name to use for the generated code.
@@ -328,7 +328,7 @@ version: 2
328328
plugins:
329329
- name: "py"
330330
wasm:
331-
url: "https://github.com/tabbed/sqlc-gen-python/releases/download/v0.16.0-alpha/sqlc-gen-python.wasm"
331+
url: "https://github.com/sqlc-dev/sqlc-gen-python/releases/download/v0.16.0-alpha/sqlc-gen-python.wasm"
332332
sha256: "428476c7408fd4c032da4ec74e8a7344f4fa75e0f98a5a3302f238283b9b95f2"
333333
- name: "js"
334334
process:

docs/reference/language-support.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ F# `kaashyapan/sqlc-gen-fsharp`_ Not implemented Beta Beta
1919
======== ============================== =============== ============ ===============
2020

2121
.. _kaashyapan/sqlc-gen-fsharp: https://github.com/kaashyapan/sqlc-gen-fsharp
22-
.. _sqlc-gen-kotlin: https://github.com/tabbed/sqlc-gen-kotlin
23-
.. _sqlc-gen-python: https://github.com/tabbed/sqlc-gen-python
22+
.. _sqlc-gen-kotlin: https://github.com/sqlc-dev/sqlc-gen-kotlin
23+
.. _sqlc-gen-python: https://github.com/sqlc-dev/sqlc-gen-python
2424

2525
Future language support
2626
************************

internal/codegen/golang/imports.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ func buildImports(settings *plugin.Settings, queries []Query, uses func(string)
190190

191191
for typeName, _ := range pqtypeTypes {
192192
if uses(typeName) {
193-
pkg[ImportSpec{Path: "github.com/tabbed/pqtype"}] = struct{}{}
193+
pkg[ImportSpec{Path: "github.com/sqlc-dev/pqtype"}] = struct{}{}
194194
break
195195
}
196196
}

internal/endtoend/testdata/datatype/stdlib/go/models.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/go/models.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/endtoend/testdata/func_return/postgresql/stdlib/go/query.sql.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/endtoend/testdata/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/jackc/pgx/v5 v5.0.1
1212
github.com/kyleconroy/sqlc-testdata v0.0.0-20200512000015-15313bc43553
1313
github.com/lib/pq v1.9.0
14-
github.com/tabbed/pqtype v0.1.0
14+
github.com/sqlc-dev/pqtype v0.2.0
1515
github.com/volatiletech/null/v8 v8.1.2
1616
gopkg.in/guregu/null.v4 v4.0.0
1717
)

internal/endtoend/testdata/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ github.com/shopspring/decimal v0.0.0-20200227202807-02e2044944cc h1:jUIKcSPO9MoM
101101
github.com/shopspring/decimal v0.0.0-20200227202807-02e2044944cc/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o=
102102
github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=
103103
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
104+
github.com/sqlc-dev/pqtype v0.2.0 h1:zfzDpAxjCU0/GO7EgZ7ELUh0w28SrMSHzO3rH5Wd3is=
105+
github.com/sqlc-dev/pqtype v0.2.0/go.mod h1:oyUjp5981ctiL9UYvj1bVvCKi8OXkCa0u645hce7CAs=
104106
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
105107
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
106108
github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE=
@@ -109,8 +111,6 @@ github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UV
109111
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
110112
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
111113
github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
112-
github.com/tabbed/pqtype v0.1.0 h1:14Up99XVLn1feoYN6yOe6lKcF7159EJ5JqUXntkeFeI=
113-
github.com/tabbed/pqtype v0.1.0/go.mod h1:HLt2kLJPcUhODQkYn3mJkMHXVsuv3Z2n5NZEeKXL0Uk=
114114
github.com/volatiletech/inflect v0.0.1 h1:2a6FcMQyhmPZcLa+uet3VJ8gLn/9svWhJxJYwvE8KsU=
115115
github.com/volatiletech/inflect v0.0.1/go.mod h1:IBti31tG6phkHitLlr5j7shC5SOo//x0AjDzaJU1PLA=
116116
github.com/volatiletech/null/v8 v8.1.2 h1:kiTiX1PpwvuugKwfvUNX/SU/5A2KGZMXfGD0DUHdKEI=

internal/endtoend/testdata/json/postgresql/stdlib/go/models.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)