Skip to content

Commit 1b8ecc2

Browse files
committed
v0.9.1: mssql fixes
1 parent 3b5c4be commit 1b8ecc2

File tree

4 files changed

+48
-37
lines changed

4 files changed

+48
-37
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG.md
22

3+
## 0.9.1 (2023-07-30)
4+
5+
- Fix issues with the new experimental mssql driver.
6+
37
## 0.9.0 (2023-07-30)
48

59
- Added a new `json` component, which allows building a JSON API entirely in SQL with SQLPage !

Cargo.lock

Lines changed: 41 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlpage"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
edition = "2021"
55
description = "A SQL-only web application framework. Takes .sql files and formats the query result using pre-made configurable professional-looking components."
66
keywords = ["web", "sql", "framework"]
@@ -17,7 +17,7 @@ panic = "abort"
1717
codegen-units = 2
1818

1919
[dependencies]
20-
sqlx = { package = "sqlx-oldapi", version = "0.6.7", features = ["any", "runtime-actix-rustls", "sqlite", "postgres", "mysql", "mssql", "chrono"] }
20+
sqlx = { package = "sqlx-oldapi", version = "0.6.8", features = ["any", "runtime-actix-rustls", "sqlite", "postgres", "mysql", "mssql", "chrono"] }
2121
chrono = "0.4.23"
2222
actix-web = { version = "4", features = ["rustls", "cookies"] }
2323
percent-encoding = "2.2.0"

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fn process_input_file(path_out: &Path, original: File) {
3737
let url = line
3838
.trim_start_matches("/* !include ")
3939
.trim_end_matches(" */");
40-
let resp = ureq::get(url).call().unwrap();
40+
let resp = ureq::get(url).call().expect("We need to download remote js dependencies to compile sqlpage");
4141
let mut contents = BufReader::new(resp.into_reader());
4242
std::io::copy(&mut contents, &mut outfile).unwrap();
4343
outfile.write_all(b"\n").unwrap();

0 commit comments

Comments
 (0)