Skip to content

Commit 86ecec6

Browse files
committed
chore(release): prepare new release
1 parent 44fd1a1 commit 86ecec6

File tree

3 files changed

+42
-42
lines changed

3 files changed

+42
-42
lines changed

.github/workflows/beta-release.yml

+5-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Release beta release
22

33
on:
44
release:
5-
types: [prereleased]
5+
types: [ prereleased ]
66

77
jobs:
88
trigger-release:
@@ -16,21 +16,17 @@ jobs:
1616
- focal
1717
- jammy
1818
- noble
19-
- centos_7
20-
- centos_8
19+
- centos_9
2120
steps:
22-
-
23-
name: Set version
21+
- name: Set version
2422
env:
2523
REF: ${{ github.ref }}
2624
run: VERSION=`sed -E 's/[^0-9]+?([0-9]+\.[0-9]+\.[0-9]+.+?)/\1/' <<< $REF` && echo "VERSION=$VERSION" >> $GITHUB_ENV
2725

28-
-
29-
name: Set major version
26+
- name: Set major version
3027
run: MAJOR_VERSION=`sed -E 's/[^0-9]+?([0-9]+)\.([0-9]+)\.([0-9]+).+?/\1/' <<< $VERSION` && echo "MAJOR_VERSION=$MAJOR_VERSION" >> $GITHUB_ENV
3128

32-
-
33-
name: Trigger workflow
29+
- name: Trigger workflow
3430
env:
3531
GH_TOKEN: ${{ secrets.TRIGGER_WORKFLOW_TOKEN }}
3632
run: |

.github/workflows/stable-release.yml

+5-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Release stable release
22

33
on:
44
release:
5-
types: [released]
5+
types: [ released ]
66

77
jobs:
88
trigger-circleci:
@@ -16,21 +16,17 @@ jobs:
1616
- focal
1717
- jammy
1818
- noble
19-
- centos_7
20-
- centos_8
19+
- centos_9
2120
steps:
22-
-
23-
name: Set version
21+
- name: Set version
2422
env:
2523
REF: ${{ github.ref }}
2624
run: VERSION=`sed -E 's/[^0-9]+?([0-9]+\.[0-9]+\.[0-9]+.+?)/\1/' <<< $REF` && echo "VERSION=$VERSION" >> $GITHUB_ENV
2725

28-
-
29-
name: Set major version
26+
- name: Set major version
3027
run: MAJOR_VERSION=`sed -E 's/[^0-9]+?([0-9]+)\.([0-9]+)\.([0-9]+).+?/\1/' <<< $VERSION` && echo "MAJOR_VERSION=$MAJOR_VERSION" >> $GITHUB_ENV
3128

32-
-
33-
name: Trigger workflow
29+
- name: Trigger workflow
3430
env:
3531
GH_TOKEN: ${{ secrets.TRIGGER_WORKFLOW_TOKEN }}
3632
run: |

CHANGELOG.md

+32-24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.9.0 - 28-05-2024
2+
3+
* Update libredirectionio to 2.11.2
4+
15
## 2.8.0 - 06-02-2024
26

37
* Update libredirectionio to 2.10.0
@@ -28,66 +32,70 @@
2832

2933
## 2.4.2 - 23-11-2022
3034

31-
* Allow libredirectionio to modify the `Content-Type` header
32-
* Fix using a unix socket for the agent connection
35+
* Allow libredirectionio to modify the `Content-Type` header
36+
* Fix using a unix socket for the agent connection
3337

3438
## 2.4.1 - 27-10-2022
3539

3640
* Support gzip compression when filtering body, by updating libredirectionio deps
3741

3842
## 2.4.0 - 07-07-2022
3943

40-
* Fix a bug when multiple rules where used with a backend status code trigger
44+
* Fix a bug when multiple rules where used with a backend status code trigger
4145

4246
## 2.3.0 - 13-04-2022
4347

44-
* Add the `RedirectionioTrustedProxies` configuration directive for correct ip matching - ([see the documentation](https://redirection.io/documentation/developer-documentation/apache-module#redirectioniotrustedproxies))
45-
* Add support for the IP address trigger (requires the version 2.3 of the agent)
46-
* Add support for the robots.txt action (requires the version 2.3 of the agent)
47-
* Add the possibility to disable log for a specific request using a rule (requires the version 2.3 of the agent)
48-
* Add support for logging the `Content-Type` response header
48+
* Add the `RedirectionioTrustedProxies` configuration directive for correct ip
49+
matching - ([see the documentation](https://redirection.io/documentation/developer-documentation/apache-module#redirectioniotrustedproxies))
50+
* Add support for the IP address trigger (requires the version 2.3 of the agent)
51+
* Add support for the robots.txt action (requires the version 2.3 of the agent)
52+
* Add the possibility to disable log for a specific request using a rule (requires the version 2.3 of the agent)
53+
* Add support for logging the `Content-Type` response header
4954

5055
## 2.2.2 - 22-09-2021
5156

52-
* new release, for new distributions (debian 11 bullseye, and latest ubuntu)
57+
* new release, for new distributions (debian 11 bullseye, and latest ubuntu)
5358

5459
## 2.2.0 - 06-05-2021
5560

56-
* Add the `RedirectionioSetHeader` directive - ([see the documentation](https://redirection.io/documentation/developer-documentation/apache-module#redirectioniosetheader))
57-
* Add connection pool management options to the `RedirectionioPass` directive: `min_conns`, `keep_conns`, `max_conns` and `timeout` - ([see the documentation](https://redirection.io/documentation/developer-documentation/apache-module#redirectioniopass))
61+
* Add the `RedirectionioSetHeader`
62+
directive - ([see the documentation](https://redirection.io/documentation/developer-documentation/apache-module#redirectioniosetheader))
63+
* Add connection pool management options to the `RedirectionioPass` directive: `min_conns`, `keep_conns`, `max_conns`
64+
and `timeout` - ([see the documentation](https://redirection.io/documentation/developer-documentation/apache-module#redirectioniopass))
5865

5966
## 2.1.0 - 02-02-2021
6067

61-
* Pass the client IP address to the agent
62-
* Better management of possible module conflicts
68+
* Pass the client IP address to the agent
69+
* Better management of possible module conflicts
6370

6471
## 2.0.0 - 11-01-2021
6572

66-
* Send proxy version in logs
67-
* Send content-type in logs
68-
* Use 2.0.0 version of [libredirection](https://github.com/redirectionio/libredirectionio): more matching and actions available
69-
* **[BC BREAK]** New proxy protocol: please update the agent when updating the proxy to the 2.0 branch
73+
* Send proxy version in logs
74+
* Send content-type in logs
75+
* Use 2.0.0 version of [libredirection](https://github.com/redirectionio/libredirectionio): more matching and actions
76+
available
77+
* **[BC BREAK]** New proxy protocol: please update the agent when updating the proxy to the 2.0 branch
7078

7179
## 0.3.2 - 25-02-2019
7280

73-
* Fix bad response status code in log when using apache rewrite module
81+
* Fix bad response status code in log when using apache rewrite module
7482

7583
## 0.3.1 - 19-02-2019
7684

77-
* Fix default endpoint for agent when it's not set
85+
* Fix default endpoint for agent when it's not set
7886

7987
## 0.3.0 - 15-02-2019
8088

81-
* Send request method in logs
82-
* Add support for filtering header and body response with the agent
89+
* Send request method in logs
90+
* Add support for filtering header and body response with the agent
8391

8492
## 0.2.0 - 18-01-2019
8593

86-
* Add support for matching redirection on response status code
87-
* Stability improvements
94+
* Add support for matching redirection on response status code
95+
* Stability improvements
8896
* Fix potential segfault when receiving bad response from agent
8997
* Fix memory leak issues
9098

9199
## 0.1.0 - 15-11-2018
92100

93-
* Initial release
101+
* Initial release

0 commit comments

Comments
 (0)