aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog.md
blob: d96bd06e710b490437d6e59f2f84bbca2b136f98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
For differences with the original Sproxy scroll down.

1.94.1
======

  * Fixed a typo introduced in version 1.94.0 in SQL query:
    `... WHERE domain = domain ...` -> `... WHERE domain = :domain ...`


1.94.0
======

  * BREAKING: Disregard possible port in the Host HTTP header.
    Previously, Sproxy took possible port number into account when
    looking for backend and privileges. Now it ignores port and considers
    domain name only.  This also gets Sproxy in line with browsers and SSL
    certificates: certificates do not include port numbers, browsers ignore
    ports when sending cookies.

  * BREAKING: no SQL wildcards (`%` or `_`) in domain names when looking up
    for privileges.  This feature was ambiguous (in the same way as paths are)
    and never used anyway.


1.93.0
======

  * BREAKING: Allow `!include` in config file.
    This changes semantics of options `key` and `oauth2.<provider>.client_secret`.
    They are no longer files, but strings.  To read content from files, use
    !include.  The point of being files or read from files is to segregate secrets
    from non-sensitive easily discoverable settings.  With `!include` it is much more
    simple and flexible.


1.92.0
======

  * Allow running in plain HTTP mode (no SSL). Useful when Sproxy is behind some
    other proxy or load-balancer. Added two more options: `ssl` (defaults to true)
    and `https_port` (defaults to like `listen`). Options `ssl_key` and `ssl_cert`
    are required only if `ssl == true`. SSL-terminations is still required at upstream
    proxies, because the cookie is set for HTTPS only.

  * Added "user" table into `sproxy.sql`. No action is required, but PostgreSQL database
    built after this file will be incompatible with Sproxy Web ( <= 0.4.1 at least).


1.91.0
======

  * In addition to good old PostgreSQL data source, made it possible
    to import permission data from a YAML file. This means that Sproxy2
    can work without any PostgreSQL database, just using file-only configuration.
    Useful for development or trivial deployments. Added new `datafile` option
    in configuration file.


1.90.2
======

  * Make sure all Sproxy-specific HTTP headers are UTF8-encoded.

  * `/.sproxy/logout` just redirects if no cookie. Previously
    it was returning HTTP 404 to unauthenticated users, and redirecting
    authenticated users with removal of the cookie. The point is not to
    reveal cookie name.

  * Made Warp stop printing exceptions, mostly "client closed connection",
    which happens outside of our traps.


1.90.1
======

  * Fixed headers processing. Wrong headers were making Chromium drop connection in HTTP/2.
    Firefox sometimes couldn't handle gzipped and chunked responses in HTTP/1.1.

  * After authenticating, redirect to original path with query parameters if
    method was GET.  Otherwise redirect to "/". Previously, when unauthenticated
    users click on "https://example.net/foo?bar", they are redirected to
    "https://example.net/foo" regardless of the method.



1.90.0 (Preview Release)
========================

Sproxy2 is overhaul of original [Sproxy](https://github.com/zalora/sproxy)
(see also [Hackage](https://hackage.haskell.org/package/sproxy)).
Here are the key differences (with Sproxy 0.9.8):

  * Sproxy2 can work with remote PostgreSQL database. Quick access to the database is essential
    as sproxy does it on every HTTP request. Sproxy2 pulls data into local SQLite3 database.

  * At this release Sproxy2 is compatible with Sproxy database with one exception:
    SQL wildcards are not supported for HTTP methods. I. e. you have to change '%' in
    the database to specific methods like GET, POST, etc.

  * OAuth2 callback URLs changed: Sproxy2 uses `/.sproxy/oauth2/:provider`,
    e. g. `/.sproxy/oauth2/google`. Sproxy used `/sproxy/oauth2callback` for Google
    and `/sproxy/oauth2callback/linkedin` for LinkedIn.

  * Sproxy2 does not allow login with email addresses not known to it.

  * Sproxy2: OAuth2 callback state is serialized, signed and passed base64-encoded.
    Of course it's used to verify the request is legit.

  * Sproxy2: session cookie is serialized, signed and sent base64-encoded.

  * Path `/.sproxy` belongs to Sproxy2 completely. Anything under this path is never passed to backends.

  * Sproxy2 supports multiple backends. Routing is based on the Host HTTP header.

  * Sproxy2 uses [WAI](https://hackage.haskell.org/package/wai) / [Warp](https://hackage.haskell.org/package/warp)
    for incoming connections. As a result Sproxy2 supports HTTP2.

  * Sproxy2 uses [HTTP Client](https://hackage.haskell.org/package/http-client) to talk to backends.
    As a result Sproxy2 reuses backend connections instead of closing them after each request to the backend.

  * Sproxy2 optionally supports persistent key again (removed in Sproxy 0.9.2).
    This can be used in load-balancing multiple Sproxy2 instances.

  * Configuration file has changed. It's still YAML, but some options are renamed, removed or added.
    Have a look at well-documented [sproxy.example.yml](./sproxy.example.yml)