Releases: phpmentors-jp/proxy-url-rewrite-bundle
ProxyURLRewriteBundle 1.3.0 (stable)
What's New in ProxyURLRewriteBundle 1.3.0
New dependency versions
As of this version, the following dependency versions are required:
- Symfony 2.8.0 or 3.0.0 or 4.0.0 or greater
And so, replacing twig.extension.assets
with ProxyAssetExtension
will be removed since Symfony 3 or greater does not support absolute URL with asset()
.
PHPMentorsProxyURLRewriteBundle 1.2.0 (stable)
Release Date: 2016-10-31 UTC
What's New in PHPMentorsProxyURLRewriteBundle 1.2.0
Proxy host filtering
(Issue #11)
This allows you to modify the hostname of the proxy URL at runtime.
To enable this feature, configure the proxy_host_filter_service
element for the proxy URL as the following:
app/config/config.yml
:
# ...
phpmentors_proxy_url_rewrite:
proxy_urls:
foo_bar:
path: "!^.*!"
proxy_url: "http://www.example.com/foo/bar"
proxy_host_filter_service: app.proxy_host_filter
The class for proxy_host_filter_service
must implement ProxyHostFilterInterface
.
A proxy URL with the port number
(Issue #9)
This allows you to specify the proxy URL with the port number as the following:
app/config/config.yml
:
# ...
phpmentors_proxy_url_rewrite:
proxy_urls:
foo_bar:
path: "!^.*!"
proxy_url: "http://www.example.com:8080/foo/bar"
New minimum required Symfony version
(Issue #12)
As of this version, Symfony 2.8.0 or greater is required.
PHPMentorsProxyURLRewriteBundle 1.1.1 (stable)
PHPMentorsProxyURLRewriteBundle 1.1.0 (stable)
Release Date: 2015-06-14 UTC
What's New in PHPMentorsProxyURLRewriteBundle 1.1.0
New minimum required Symfony version
(Issue #5)
As of this version, Symfony 2.7.0 or greater is required.
New configration syntax
(Issue #2)
The configuration syntax has been changed as the following:
Before:
phpmentors_proxy_url_rewrite:
proxy_urls:
"!^.*!": "/foo/bar"
After:
phpmentors_proxy_url_rewrite:
proxy_urls:
foo_bar:
path: "!^.*!"
proxy_url: "/foo/bar"
PHPMentorsProxyURLRewriteBundle 1.0.0 (stable)
Release Date: 2014-10-04 UTC
This is the first release of PHPMentorsProxyURLRewriteBundle
.