Skip to content

Releases: phpmentors-jp/proxy-url-rewrite-bundle

ProxyURLRewriteBundle 1.3.0 (stable)

30 Jul 23:29
v1.3.0
Compare
Choose a tag to compare

What's New in ProxyURLRewriteBundle 1.3.0

New dependency versions

(@iteman, #14)

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)

31 Oct 01:51
v1.2.0
Compare
Choose a tag to compare

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)

27 Apr 08:07
v1.1.1
Compare
Choose a tag to compare

Release Date: 2015-04-27 UTC

What's New in PHPMentorsProxyURLRewriteBundle 1.1.1

Bug fixes

  • Urls are not rewritten on redirection from authentication (@iteman, Issue #7)

PHPMentorsProxyURLRewriteBundle 1.1.0 (stable)

14 Jun 23:46
v1.1.0
Compare
Choose a tag to compare

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)

05 Oct 03:21
v1.0.0
Compare
Choose a tag to compare

Release Date: 2014-10-04 UTC

This is the first release of PHPMentorsProxyURLRewriteBundle.