You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ROAD_TO_WS4SQL.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,12 @@ The version in this branch is a work in progress to add features and (unfortunat
8
8
9
9
- SQLite is embedded via [mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) and CGO. Should be way faster.
10
10
- Support for DuckDB (see below).
11
-
- Target platforms (because of CGO) are now 4 (`win/amd64`, `macos/arm64`, `linux/amd64`, `linux/arm64`).
12
-
- For Docker, `linux/amd64` and `linux/arm64`.
13
11
-[**BREAKING CHANGE**] When running the app, the config files must be specified on the command line, the file paths cannot be used anymore (there). This is described in the "Migration" section below. The file path is in the config file.
14
-
- The only exception is a "simple case" to serve a file path without any config. This can be done with the new `--quick-db` parameter.
12
+
- The only exception is a "simple case" to serve a file path without any config. This can be done with the new `--quick-db` parameter.
13
+
-[**BREAKING CHANGE**] Hashed passwords in auth config must now be hashed with BCrypt, not SHA256.
15
14
- Fail fast if the request is empty, don't even attempt to authenticate.
15
+
- Target platforms (because of CGO) are now 4 (`win/amd64`, `macos/arm64`, `linux/amd64`, `linux/arm64`).
16
+
- For Docker, `linux/amd64` and `linux/arm64`.
16
17
- Docker images are now based on `distroless/static-debian12`.
17
18
- Docker images are now hosted on Github's Container Registry.
18
19
@@ -30,6 +31,8 @@ database:
30
31
readOnly: false # Same as before, but moved here.
31
32
```
32
33
34
+
- For any hashed password previously specified in an `auth` block, the hash must be BCrypt, not SHA256.
0 commit comments