Skip to content

Commit

Permalink
Merge branch 'release/4.1.9' into v4
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Dec 8, 2022
2 parents ea004bf + 8a44823 commit 414d3db
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Retour Changelog

## 4.1.9 - 2022.12.08
### Fixed
* Added missing `priority` column to the `retour_static_redirects` too, in `Install.php` migration ([#262](https://github.com/nystudio107/craft-retour/issues/262))

## 4.1.8 - 2022.12.07
### Fixed
* Added missing `priority` column to the `Install.php` migration ([#262](https://github.com/nystudio107/craft-retour/issues/262))
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-retour",
"description": "Retour allows you to intelligently redirect legacy URLs, so that you don't lose SEO value when rebuilding & restructuring a website",
"type": "craft-plugin",
"version": "4.1.8",
"version": "4.1.9",
"keywords": [
"craftcms",
"craft-plugin",
Expand Down
1 change: 1 addition & 0 deletions src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ protected function createTables(): bool
'redirectMatchType' => $this->string(32)->defaultValue('exactmatch'),
'redirectDestUrl' => $this->string(255)->defaultValue(''),
'redirectHttpCode' => $this->integer()->defaultValue(301),
'priority' => $this->integer()->null()->defaultValue(5),
'hitCount' => $this->integer()->defaultValue(1),
'hitLastTime' => $this->dateTime(),
]
Expand Down

0 comments on commit 414d3db

Please sign in to comment.