Skip to content

docs: Point GitHub links to new repository location #2534

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/guides/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ to the plugin itself.
{
"name": "greeter",
"wasm": {
"url": "https://github.com/kyleconroy/sqlc-gen-greeter/releases/download/v0.1.0/sqlc-gen-greeter.wasm",
"url": "https://github.com/sqlc-dev/sqlc-gen-greeter/releases/download/v0.1.0/sqlc-gen-greeter.wasm",
"sha256": "afc486dac2068d741d7a4110146559d12a013fd0286f42a2fc7dcd802424ad07"
}
}
Expand All @@ -44,9 +44,9 @@ to the plugin itself.
```

For a complete working example see the following files:
- [sqlc-gen-greeter](https://github.com/kyleconroy/sqlc-gen-greeter)
- [sqlc-gen-greeter](https://github.com/sqlc-dev/sqlc-gen-greeter)
- A WASM plugin (written in Rust) that outputs a friendly message
- [wasm_plugin_sqlc_gen_greeter](https://github.com/kyleconroy/sqlc/tree/main/internal/endtoend/testdata/wasm_plugin_sqlc_gen_greeter)
- [wasm_plugin_sqlc_gen_greeter](https://github.com/sqlc-dev/sqlc/tree/main/internal/endtoend/testdata/wasm_plugin_sqlc_gen_greeter)
- An example project showing how to use a WASM plugin

## Process plugins
Expand Down Expand Up @@ -91,7 +91,7 @@ to the plugin itself.
```

For a complete working example see the following files:
- [sqlc-gen-json](https://github.com/kyleconroy/sqlc/tree/main/cmd/sqlc-gen-json)
- [sqlc-gen-json](https://github.com/sqlc-dev/sqlc/tree/main/cmd/sqlc-gen-json)
- A process-based plugin that serializes the CodeGenRequest to JSON
- [process_plugin_sqlc_gen_json](https://github.com/kyleconroy/sqlc/tree/main/internal/endtoend/testdata/process_plugin_sqlc_gen_json)
- [process_plugin_sqlc_gen_json](https://github.com/sqlc-dev/sqlc/tree/main/internal/endtoend/testdata/process_plugin_sqlc_gen_json)
- An example project showing how to use a process-based plugin
2 changes: 1 addition & 1 deletion docs/howto/vet.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ sql:
```

To see this in action, check out the [authors
example](https://github.com/kyleconroy/sqlc/blob/main/examples/authors/sqlc.yaml).
example](https://github.com/sqlc-dev/sqlc/blob/main/examples/authors/sqlc.yaml).

Please note that `sqlc` does not manage or migrate your database. Use your
migration tool of choice to create the necessary database tables and objects
Expand Down
50 changes: 25 additions & 25 deletions docs/reference/changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.19.1](https://github.com/kyleconroy/sqlc/releases/tag/v1.19.1)
## [1.19.1](https://github.com/sqlc-dev/sqlc/releases/tag/v1.19.1)
Released 2023-07-13

### Bug Fixes
Expand All @@ -21,7 +21,7 @@ Released 2023-07-13
- Pin Go to 1.20.6 (#2441)
- (deps) Bump github.com/jackc/pgx/v5 from 5.4.1 to 5.4.2 (#2436)

## [1.19.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.19.0)
## [1.19.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.19.0)
Released 2023-07-06

### Release notes
Expand Down Expand Up @@ -99,7 +99,7 @@ sql:
```

To see this in action, check out the [authors
example](https://github.com/kyleconroy/sqlc/blob/main/examples/authors/sqlc.yaml).
example](https://github.com/sqlc-dev/sqlc/blob/main/examples/authors/sqlc.yaml).

Please note that `sqlc` does not manage or migrate your database. Use your
migration tool of choice to create the necessary database tables and objects
Expand Down Expand Up @@ -235,7 +235,7 @@ longer requires [TinyGo](https://tinygo.org/).
- Fixed sqlite column type override (#1986)


## [1.18.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.18.0)
## [1.18.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.18.0)
Released 2023-04-27

### Release notes
Expand Down Expand Up @@ -494,14 +494,14 @@ genreated method will use a argument struct.

- Upgrade to wasmtime v8.0.0 (#2222)

## [1.17.2](https://github.com/kyleconroy/sqlc/releases/tag/v1.17.2)
## [1.17.2](https://github.com/sqlc-dev/sqlc/releases/tag/v1.17.2)
Released 2023-02-22

### Bug Fixes

- Fix build on Windows (#2102)

## [1.17.1](https://github.com/kyleconroy/sqlc/releases/tag/v1.17.1)
## [1.17.1](https://github.com/sqlc-dev/sqlc/releases/tag/v1.17.1)
Released 2023-02-22

### Bug Fixes
Expand All @@ -518,7 +518,7 @@ Released 2023-02-22

- (deps) Bump golang from 1.20.0 to 1.20.1 (#2082)

## [1.17.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.17.0)
## [1.17.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.17.0)
Released 2023-02-13

### Bug Fixes
Expand Down Expand Up @@ -594,7 +594,7 @@ Released 2023-02-13

- Upgrade to wasmtime 5.0.0 (#2065)

## [1.16.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.16.0)
## [1.16.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.16.0)
Released 2022-11-09


Expand Down Expand Up @@ -666,7 +666,7 @@ Released 2022-11-09
- Port all Python tests to sqlc-gen-python (#1907)
- Upgrade to sqlc-gen-python v1.0.0 (#1932)

## [1.15.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.15.0)
## [1.15.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.15.0)
Released 2022-08-07

### Bug Fixes
Expand Down Expand Up @@ -715,7 +715,7 @@ Released 2022-08-07
- (wasm) Change default cache location (#1709)
- (wasm) Change the SHA-256 config key (#1710)

## [1.14.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.14.0)
## [1.14.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.14.0)
Released 2022-06-09

### Bug Fixes
Expand Down Expand Up @@ -762,7 +762,7 @@ Released 2022-06-09
- (sql/catalog) Improve Readability (#1595)
- Add basic fuzzing for config / overrides (#1500)

## [1.13.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.13.0)
## [1.13.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.13.0)
Released 2022-03-31

### Bug Fixes
Expand Down Expand Up @@ -800,7 +800,7 @@ Released 2022-03-31

- Add basic fuzzing for config / overrides (#1500)

## [1.12.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.12.0)
## [1.12.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.12.0)
Released 2022-02-05

### Bug
Expand Down Expand Up @@ -843,7 +843,7 @@ Released 2022-02-05
- Bump github.com/google/go-cmp from 0.5.6 to 0.5.7 (#1382)
- Format all Go code (#1387)

## [1.11.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.11.0)
## [1.11.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.11.0)
Released 2021-11-24


Expand Down Expand Up @@ -908,7 +908,7 @@ Released 2021-11-24

- Bump version to v1.11.0

## [1.10.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.10.0)
## [1.10.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.10.0)
Released 2021-09-07


Expand Down Expand Up @@ -952,7 +952,7 @@ Released 2021-09-07

- Output NullUUID when necessary (#1137)

## [1.9.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.9.0)
## [1.9.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.9.0)
Released 2021-08-13


Expand All @@ -973,7 +973,7 @@ Released 2021-08-13
- Add tests for COALESCE behavior (#1112)
- Handle subqueries in SELECT statements (#1113)

## [1.8.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.8.0)
## [1.8.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.8.0)
Released 2021-05-03


Expand Down Expand Up @@ -1032,7 +1032,7 @@ Released 2021-05-03

- Only run tests once (#924)

## [1.7.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.7.0)
## [1.7.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.7.0)
Released 2021-02-28


Expand Down Expand Up @@ -1118,7 +1118,7 @@ Released 2021-02-28

- Add enum values for SetOperation

## [1.6.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.6.0)
## [1.6.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.6.0)
Released 2020-11-23


Expand Down Expand Up @@ -1209,7 +1209,7 @@ Released 2020-11-23

- Add support for variadic functions (#798)

## [1.5.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.5.0)
## [1.5.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.5.0)
Released 2020-08-05


Expand Down Expand Up @@ -1312,7 +1312,7 @@ Released 2020-08-05

- Migrate to equinox-io/setup-release-tool (#614)

## [1.4.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.4.0)
## [1.4.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.4.0)
Released 2020-06-17


Expand Down Expand Up @@ -1402,7 +1402,7 @@ Released 2020-06-17

- Move query validation to separate package (#498)

## [1.3.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.3.0)
## [1.3.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.3.0)
Released 2020-05-12


Expand Down Expand Up @@ -1447,7 +1447,7 @@ Released 2020-05-12

- Fix panic walking CreateTableAsStmt (#475)

## [1.2.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.2.0)
## [1.2.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.2.0)
Released 2020-04-07


Expand Down Expand Up @@ -1477,7 +1477,7 @@ Released 2020-04-07

- Generate correct types for SELECT EXISTS (#411)

## [1.1.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.1.0)
## [1.1.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.1.0)
Released 2020-03-17


Expand Down Expand Up @@ -1567,7 +1567,7 @@ Released 2020-03-17

- Add experimental parser for SQLite

## [1.0.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.0.0)
## [1.0.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.0.0)
Released 2020-02-18


Expand Down Expand Up @@ -1654,7 +1654,7 @@ Released 2020-02-18
- Attach range vars to insert params (#342)
- Remove dead code (#343)

## [0.1.0](https://github.com/kyleconroy/sqlc/releases/tag/v0.1.0)
## [0.1.0](https://github.com/sqlc-dev/sqlc/releases/tag/v0.1.0)
Released 2020-01-07


Expand Down
4 changes: 2 additions & 2 deletions docs/reference/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ sql:
Each mapping of the `overrides` collection has the following keys:

- `db_type`:
- The PostgreSQL or MySQL type to override. Find the full list of supported types in [postgresql_type.go](https://github.com/kyleconroy/sqlc/blob/main/internal/codegen/golang/postgresql_type.go#L12) or [mysql_type.go](https://github.com/kyleconroy/sqlc/blob/main/internal/codegen/golang/mysql_type.go#L12). Note that for Postgres you must use the pg_catalog prefixed names where available. Can't be used if the `column` key is defined.
- The PostgreSQL or MySQL type to override. Find the full list of supported types in [postgresql_type.go](https://github.com/sqlc-dev/sqlc/blob/main/internal/codegen/golang/postgresql_type.go#L12) or [mysql_type.go](https://github.com/sqlc-dev/sqlc/blob/main/internal/codegen/golang/mysql_type.go#L12). Note that for Postgres you must use the pg_catalog prefixed names where available. Can't be used if the `column` key is defined.
- `column`:
- In case the type overriding should be done on specific a column of a table instead of a type. `column` should be of the form `table.column` but you can be even more specific by specifying `schema.table.column` or `catalog.schema.table.column`. Can't be used if the `db_type` key is defined.
- `go_type`:
Expand Down Expand Up @@ -547,7 +547,7 @@ overrides:
Each override document has the following keys:

- `db_type`:
- The PostgreSQL or MySQL type to override. Find the full list of supported types in [postgresql_type.go](https://github.com/kyleconroy/sqlc/blob/main/internal/codegen/golang/postgresql_type.go#L12) or [mysql_type.go](https://github.com/kyleconroy/sqlc/blob/main/internal/codegen/golang/mysql_type.go#L12). Note that for Postgres you must use the pg_catalog prefixed names where available.
- The PostgreSQL or MySQL type to override. Find the full list of supported types in [postgresql_type.go](https://github.com/sqlc-dev/sqlc/blob/main/internal/codegen/golang/postgresql_type.go#L12) or [mysql_type.go](https://github.com/sqlc-dev/sqlc/blob/main/internal/codegen/golang/mysql_type.go#L12). Note that for Postgres you must use the pg_catalog prefixed names where available.
- `go_type`:
- A fully qualified name to a Go type to use in the generated code.
- `go_struct_tag`:
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/language-support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ F# `kaashyapan/sqlc-gen-fsharp`_ Not implemented Beta Beta
Future language support
************************

- `C# <https://github.com/kyleconroy/sqlc/issues/373>`_
- `TypeScript <https://github.com/kyleconroy/sqlc/issues/296>`_
- `C# <https://github.com/sqlc-dev/sqlc/issues/373>`_
- `TypeScript <https://github.com/sqlc-dev/sqlc/issues/296>`_