From 76a603104d5b66c2851f2bfb5cd62596a2b0eec2 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Fri, 6 Dec 2019 09:50:37 +0100 Subject: [PATCH 1/2] Migrated migrations config file from yaml to plain PHP --- migrations.php | 11 +++++++++++ migrations.yml | 5 ----- 2 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 migrations.php delete mode 100644 migrations.yml diff --git a/migrations.php b/migrations.php new file mode 100644 index 00000000..364f52ad --- /dev/null +++ b/migrations.php @@ -0,0 +1,11 @@ + 'ShlinkMigrations', + 'migrations_namespace' => 'ShlinkMigrations', + 'table_name' => 'migrations', + 'migrations_directory' => 'data/migrations', + 'custom_template' => 'data/migrations_template.txt', +]; diff --git a/migrations.yml b/migrations.yml deleted file mode 100644 index db3a57b3..00000000 --- a/migrations.yml +++ /dev/null @@ -1,5 +0,0 @@ -name: ShlinkMigrations -migrations_namespace: ShlinkMigrations -table_name: migrations -migrations_directory: data/migrations -custom_template: data/migrations_template.txt From 4af27650cdf0158ec58192e7fdc217a47aa18059 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Fri, 6 Dec 2019 09:52:23 +0100 Subject: [PATCH 2/2] Updated changelog --- CHANGELOG.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 283fdbe5..25b8e82f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org). +## [Unreleased] + +#### Added + +* *Nothing* + +#### Changed + +* *Nothing* + +#### Deprecated + +* *Nothing* + +#### Removed + +* *Nothing* + +#### Fixed + +* [#561](https://github.com/shlinkio/shlink/issues/561) Fixed `db:migrate` command failing because yaml extension is not installed, which makes config file not to be readable. + + ## 1.20.1 - 2019-11-17 #### Added