Skip to content

Commit

Permalink
Merge pull request diesel-rs#2338 from weiznich/update/diesel_1.4.4
Browse files Browse the repository at this point in the history
Cherry pick changelog of diesel 1.4.4 to master
  • Loading branch information
weiznich authored Mar 26, 2020
2 parents 00f7de7 + fe5c9dd commit 5369a7a
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 12 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,23 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/

[2-0-migration]: FIXME write a migration guide

## [1.4.4] - 2020-03-22

### Fixed

* Update several dependencies
* Fixed a bug with printing embeded migrations

## [1.4.3] - 2019-10-11

### Fixed

* Updated several dependencies
* Fixed an issue where the postgresql backend exploits implementation defined behaviour
* Fixed issue where rustdoc failed to build the documentation
* `diesel_derives` and `diesel_migrations` are updated to syn 1.0


## [1.4.2] - 2019-03-19

### Fixed
Expand Down Expand Up @@ -1696,3 +1713,5 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
[1.4.0]: https://github.com/diesel-rs/diesel/compare/v1.3.0...v1.4.0
[1.4.1]: https://github.com/diesel-rs/diesel/compare/v1.4.0...v1.4.1
[1.4.2]: https://github.com/diesel-rs/diesel/compare/v1.4.1...v1.4.2
[1.4.3]: https://github.com/diesel-rs/diesel/compare/v1.4.2...v1.4.3
[1.4.4]: https://github.com/diesel-rs/diesel/compare/v1.4.3...v1.4.4
17 changes: 9 additions & 8 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
parameters:
name: macOS_sqlite
displayName: macOS SQLite
vmImage: macOS-10.13
vmImage: macOS-10.15
variables:
BACKEND: sqlite
SQLITE_DATABASE_URL: /tmp/test.db
Expand All @@ -21,26 +21,27 @@ jobs:
parameters:
name: macOS_postgres
displayName: macOS PostgreSQL
vmImage: macOS-10.13
vmImage: macOS-10.15
variables:
BACKEND: postgres
PG_DATABASE_URL: postgres://postgres@localhost/
PG_EXAMPLE_DATABASE_URL: postgres://postgres@localhost/diesel_example
setup:
- bash: |
brew update &&
brew uninstall --ignore-dependencies libpq &&
brew install postgres &&
brew services start postgres &&
sleep 3 &&
brew update
brew uninstall --ignore-dependencies libpq
brew install postgres
/usr/local/Cellar/postgresql/12.2/bin/initdb --locale=C -E UTF-8 /usr/local/var/postgres
brew services start postgresql
sleep 3
/usr/local/opt/postgres/bin/createuser -s postgres
displayName: Install postgresql
- template: _build/azure-pipelines-template.yml
parameters:
name: macOS_mysql
displayName: macOS MySQL
vmImage: macOS-10.13
vmImage: macOS-10.15
variables:
BACKEND: mysql
MYSQL_DATABASE_URL: mysql://root@localhost/diesel_test
Expand Down
2 changes: 1 addition & 1 deletion diesel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diesel"
version = "1.4.3"
version = "1.4.4"
authors = ["Sean Griffin <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "A safe, extensible ORM and Query Builder for PostgreSQL, SQLite, and MySQL"
Expand Down
2 changes: 1 addition & 1 deletion diesel_compile_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ diesel = { version = "1.4.0", default-features = false, features = ["extras", "s
compiletest_rs = "=0.3.22"

[replace]
"diesel:1.4.3" = { path = "../diesel" }
"diesel:1.4.4" = { path = "../diesel" }
"diesel_derives:1.4.1" = { path = "../diesel_derives" }
2 changes: 1 addition & 1 deletion diesel_migrations/migrations_internals/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "migrations_internals"
version = "1.4.0"
version = "1.4.1"
authors = ["Sean Griffin <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Internal implementation of diesels migration mechanism"
Expand Down
2 changes: 1 addition & 1 deletion diesel_migrations/migrations_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "migrations_macros"
version = "1.4.1"
version = "1.4.2"
authors = ["Sean Griffin <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Codegeneration macros for diesels embedded migrations"
Expand Down

0 comments on commit 5369a7a

Please sign in to comment.