File tree 4 files changed +25
-3
lines changed
4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 3
3
- package-ecosystem : composer
4
4
directory : " /"
5
5
schedule :
6
- interval : weekly
6
+ interval : monthly
7
7
open-pull-requests-limit : 10
Original file line number Diff line number Diff line change @@ -2,12 +2,19 @@ name: Create Release
2
2
# example: gh workflow run release.yml -f tag_name=v1.1.4 -f draft=true
3
3
on :
4
4
workflow_dispatch :
5
+ branches :
6
+ - main
5
7
inputs :
6
8
tag_name :
7
- default : " "
9
+ type : string
10
+ required : true
8
11
draft :
12
+ type : boolean
13
+ description : Draft release
9
14
default : false
10
15
prerelease :
16
+ type : boolean
17
+ description : Prerelease
11
18
default : false
12
19
13
20
jobs :
Original file line number Diff line number Diff line change @@ -5,6 +5,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/)
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
7
8
+ ## [ 0.16.0] - 2022-03-10
9
+ ### Added
10
+ - Add geolocation feature to get remediation from ` Country ` scoped decisions (using MaxMind databases)
11
+ - Add end-to-end tests GitHub actions
12
+ - Add GitHub action to check links in markdown and update TOC
13
+
14
+ ### Changed
15
+ - * Breaking change* : Remove ` live_mode ` occurrences and use ` stream_mode ` instead
16
+ - Change PHP scripts for testing examples (auto-prepend, cron)
17
+ - Update docs
18
+
19
+ ### Fixed
20
+ - Fix debug log in ` no-dev ` environment
21
+ - Fix empty logs in Unit Tests
22
+
8
23
## [ 0.15.0] - 2022-02-24
9
24
### Added
10
25
- Add tests for PHP 8.1 (memcached is excluded)
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class Constants
20
20
public const CAPI_URL = 'https://api.crowdsec.net/v2/ ' ;
21
21
22
22
/** @var string The last version of this library */
23
- public const VERSION = 'v0.15 .0 ' ;
23
+ public const VERSION = 'v0.16 .0 ' ;
24
24
25
25
/** @var string The user agent used to send request to LAPI or CAPI */
26
26
public const BASE_USER_AGENT = 'PHP CrowdSec Bouncer/ ' .self ::VERSION ;
You can’t perform that action at this time.
0 commit comments