mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-17 15:59:56 +03:00
Merge pull request #1376 from acelaya-forks/feature/release-3.0.2
Feature/release 3.0.2
This commit is contained in:
commit
4110c702c0
3 changed files with 23 additions and 5 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -4,6 +4,24 @@ 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).
|
The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).
|
||||||
|
|
||||||
|
## [3.0.2] - 2022-02-10
|
||||||
|
### Added
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
* [#1373](https://github.com/shlinkio/shlink/issues/1373) Fixed incorrect config import when updating from Shlink 2.x using SQLite.
|
||||||
|
* [#1369](https://github.com/shlinkio/shlink/issues/1369) Fixed slow regexps in `.htaccess` file.
|
||||||
|
|
||||||
|
|
||||||
## [3.0.1] - 2022-02-04
|
## [3.0.1] - 2022-02-04
|
||||||
### Added
|
### Added
|
||||||
* *Nothing*
|
* *Nothing*
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
"shlinkio/shlink-config": "^1.6",
|
"shlinkio/shlink-config": "^1.6",
|
||||||
"shlinkio/shlink-event-dispatcher": "^2.3",
|
"shlinkio/shlink-event-dispatcher": "^2.3",
|
||||||
"shlinkio/shlink-importer": "^2.5",
|
"shlinkio/shlink-importer": "^2.5",
|
||||||
"shlinkio/shlink-installer": "^7.0",
|
"shlinkio/shlink-installer": "^7.0.1",
|
||||||
"shlinkio/shlink-ip-geolocation": "^2.2",
|
"shlinkio/shlink-ip-geolocation": "^2.2",
|
||||||
"symfony/console": "^6.0",
|
"symfony/console": "^6.0",
|
||||||
"symfony/filesystem": "^6.0",
|
"symfony/filesystem": "^6.0",
|
||||||
|
|
|
@ -4,7 +4,7 @@ RewriteEngine On
|
||||||
RewriteCond %{REQUEST_FILENAME} -f [OR]
|
RewriteCond %{REQUEST_FILENAME} -f [OR]
|
||||||
RewriteCond %{REQUEST_FILENAME} -l [OR]
|
RewriteCond %{REQUEST_FILENAME} -l [OR]
|
||||||
RewriteCond %{REQUEST_FILENAME} -d
|
RewriteCond %{REQUEST_FILENAME} -d
|
||||||
RewriteRule ^.*$ - [NC,L]
|
RewriteRule ^ - [NC,L]
|
||||||
|
|
||||||
# The following rewrites all other queries to index.php. The
|
# The following rewrites all other queries to index.php. The
|
||||||
# condition ensures that if you are using Apache aliases to do
|
# condition ensures that if you are using Apache aliases to do
|
||||||
|
@ -12,6 +12,6 @@ RewriteRule ^.*$ - [NC,L]
|
||||||
# allow proper resolution of the index.php file; it will work
|
# allow proper resolution of the index.php file; it will work
|
||||||
# in non-aliased environments as well, providing a safe, one-size
|
# in non-aliased environments as well, providing a safe, one-size
|
||||||
# fits all solution.
|
# fits all solution.
|
||||||
RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$
|
RewriteCond $0::%{REQUEST_URI} ^([^:]*+(?::[^:]*+)*?)::(/.+?)\1$
|
||||||
RewriteRule ^(.*) - [E=BASE:%1]
|
RewriteRule .+ - [E=BASE:%2]
|
||||||
RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L]
|
RewriteRule .* %{ENV:BASE}index.php [NC,L]
|
||||||
|
|
Loading…
Add table
Reference in a new issue