From 02c75420c9337102e115b5509a42c063592507b1 Mon Sep 17 00:00:00 2001 From: Ruslan Date: Wed, 28 Apr 2021 13:15:39 +0200 Subject: [PATCH 1/5] =?UTF-8?q?=E2=9C=A8=20Added=20issue=20templates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/config.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..40af0ee --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,11 @@ +blank_issues_enabled: false +contact_links: + - name: Ask a question + url: https://github.com/codebar-ag/laravel-docuware/discussions/new?category=q-a + about: Ask the community for help + - name: Request a feature + url: https://github.com/codebar-ag/laravel-docuware/discussions/new?category=ideas + about: Share ideas for new features + - name: Report a bug + url: https://github.com/codebar-ag/laravel-docuware/issues/new + about: Report a reproducable bug From 46d646372d8ee176db7f5660c0559e13c46a040f Mon Sep 17 00:00:00 2001 From: Ruslan Date: Wed, 28 Apr 2021 13:19:13 +0200 Subject: [PATCH 2/5] wip --- .github/ISSUE_TEMPLATE/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 40af0ee..f7e6494 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,11 +1,11 @@ blank_issues_enabled: false contact_links: - name: Ask a question - url: https://github.com/codebar-ag/laravel-docuware/discussions/new?category=q-a + url: https://github.com/codebar-ag/laravel-prerender/discussions/new?category=q-a about: Ask the community for help - name: Request a feature - url: https://github.com/codebar-ag/laravel-docuware/discussions/new?category=ideas + url: https://github.com/codebar-ag/laravel-prerender/discussions/new?category=ideas about: Share ideas for new features - name: Report a bug - url: https://github.com/codebar-ag/laravel-docuware/issues/new + url: https://github.com/codebar-ag/laravel-prerender/issues/new about: Report a reproducable bug From 1a37131ea41540f675b9cf98556107bfd036990c Mon Sep 17 00:00:00 2001 From: Ruslan Date: Wed, 28 Apr 2021 13:56:10 +0200 Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=93=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e9c6e2..fb638dc 100644 --- a/README.md +++ b/README.md @@ -342,7 +342,7 @@ http://localhost:3000/render?url=https://domain.test curl -A Googlebot https://domain.test ``` -6. 🎉 You made it. You should see your prerendered html! +6. 🎉 That's it — you should see the prerendered html! ## 📝 Changelog From 5ae1dbc8d3b811cb4675022081de52b176d6e999 Mon Sep 17 00:00:00 2001 From: Ruslan Date: Fri, 21 May 2021 20:39:14 +0200 Subject: [PATCH 4/5] Correct cs fixer version --- .github/workflows/php-cs-fixer.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml index 9910297..872a0e5 100644 --- a/.github/workflows/php-cs-fixer.yml +++ b/.github/workflows/php-cs-fixer.yml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v2 - name: Fix style - uses: docker://oskarstark/php-cs-fixer-ga + uses: docker://oskarstark/php-cs-fixer-ga:2.18.6 with: args: --config=.php_cs --allow-risky=yes diff --git a/composer.json b/composer.json index 060767c..2d14e58 100644 --- a/composer.json +++ b/composer.json @@ -34,7 +34,7 @@ "symfony/psr-http-message-bridge": "^1.3|^2.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.16", + "friendsofphp/php-cs-fixer": "2.18.6", "orchestra/testbench": "^4.0|^5.0|^6.0", "phpunit/phpunit": "^8.4|^9.0" }, From ba91ee4c90fa0b2a1bfc18fdf050a34896f34954 Mon Sep 17 00:00:00 2001 From: Ruslan Date: Fri, 21 May 2021 20:43:24 +0200 Subject: [PATCH 5/5] Fix bug causing the middleware to never work --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef0aac0..1ac2c83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,9 @@ All notable changes to `laravel-prerender` will be documented in this file. -## Not released +## 3.1.1 - 2021-05-21 + +- Fix bug causing the middleware to never work https://github.com/codebar-ag/laravel-prerender/pull/25 ## 3.1.0 - 2021-04-28