File tree Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -5,23 +5,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
7
## Unreleased
8
+ ### Changed
9
+ - Nothing should go in this section, please add to the latest unreleased version
10
+ (and update the corresponding date), or add a new version.
11
+
12
+ ## [ 5.3.8] - 2022-07-19
13
+
8
14
### Added
9
15
- Added support for OIDC V2 authentication endpoint.
10
16
[ cyberark/cojnur-api-ruby #207 ] ( https://github.com/cyberark/conjur-api-ruby/pull/207 )
11
17
- Added support for OIDC authenticator providers endpoint.
12
18
[ cyberark/cojnur-api-ruby #207 ] ( https://github.com/cyberark/conjur-api-ruby/pull/207 )
13
19
14
- ## [ 5.3.9] - 2022-05-12
15
-
16
- ### Changed
17
- - Adding operation call to fetch authentication providers
18
- [ cyberark/conjur-api-ruby #206 ] ( https://github.com/cyberark/conjur-api-ruby/pull/206 )
19
-
20
- ## [ 5.3.8] - 2022-04-26
21
-
22
20
### Changed
23
21
- Remove support for Ruby versions <2.7 which are [ end of life] ( https://endoflife.date/ruby ) .
24
22
[ cyberark/conjur-api-ruby #206 ] ( https://github.com/cyberark/conjur-api-ruby/pull/206 )
23
+ - Adding operation call to fetch authentication providers
24
+ [ cyberark/conjur-api-ruby #206 ] ( https://github.com/cyberark/conjur-api-ruby/pull/206 )
25
25
26
26
## [ 5.3.7] - 2021-12-28
27
27
Original file line number Diff line number Diff line change @@ -115,10 +115,12 @@ pipeline {
115
115
steps {
116
116
release {
117
117
// Clean up all but the calculated VERSION
118
- sh ''' docker run -i --rm -v $PWD:/src -w /src alpine/git clean -fxd \
119
- -e VERSION \
120
- -e bom-assets/ \
121
- -e release-assets/ '''
118
+ sh ''' docker run -i --rm -v $(pwd):/src -w /src --entrypoint /bin/sh alpine/git \
119
+ -c "git config --global --add safe.directory /src && \
120
+ git clean -fdx \
121
+ -e VERSION \
122
+ -e bom-assets/ \
123
+ -e release-assets" '''
122
124
sh ' ./publish.sh'
123
125
sh ' cp conjur-api-*.gem release-assets/.'
124
126
}
You can’t perform that action at this time.
0 commit comments