File tree 6 files changed +28
-5
lines changed
6 files changed +28
-5
lines changed Original file line number Diff line number Diff line change 25
25
.project
26
26
.envrc
27
27
/inventory.yaml
28
+ /spec /fixtures /litmus_inventory.yaml
Original file line number Diff line number Diff line change 25
25
.project
26
26
.envrc
27
27
/inventory.yaml
28
+ /spec/fixtures/litmus_inventory.yaml
28
29
/appveyor.yml
30
+ /.editorconfig
29
31
/.fixtures.yml
30
32
/Gemfile
31
33
/.gitattributes
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file. The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org ) .
4
4
5
+ ## [ 3.0.0] ( https://github.com/ploperations/ploperations-webhook_proxy/tree/3.0.0 ) (2021-08-30)
6
+
7
+ [ Full Changelog] ( https://github.com/ploperations/ploperations-webhook_proxy/compare/2.0.0...3.0.0 )
8
+
9
+ ### Changed
10
+
11
+ - \( DIO-2232\) Removes endpoint trailing / [ \# 10] ( https://github.com/ploperations/ploperations-webhook_proxy/pull/10 ) ([ suckatrash] ( https://github.com/suckatrash ) )
12
+
5
13
## [ 2.0.0] ( https://github.com/ploperations/ploperations-webhook_proxy/tree/2.0.0 ) (2021-06-08)
6
14
7
15
[ Full Changelog] ( https://github.com/ploperations/ploperations-webhook_proxy/compare/1.0.0...2.0.0 )
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ Data type: `Pattern[/^\//]`
178
178
The location, or path under this proxy's fqdn, that will have data sent to it
179
179
for the given target
180
180
181
- Default value: ` ('/*$ ', '/')`
181
+ Default value: ` regsubst($name, '^https?:// ', '/')`
182
182
183
183
##### <a name =" target " ></a >` target `
184
184
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ploperations-webhook_proxy" ,
3
- "version" : " 2 .0.0" ,
3
+ "version" : " 3 .0.0" ,
4
4
"author" : " ploperations" ,
5
5
"summary" : " Proxy external webhook endpoints to internal hosts" ,
6
6
"license" : " Apache-2.0" ,
66
66
"version_requirement" : " >= 6.21.0 < 8.0.0"
67
67
}
68
68
],
69
- "pdk-version" : " 2.1 .0" ,
70
- "template-url" : " pdk-default#2.1 .0" ,
71
- "template-ref" : " tags/2.1 .0-0-ga675ea5 "
69
+ "pdk-version" : " 2.2 .0" ,
70
+ "template-url" : " pdk-default#2.2 .0" ,
71
+ "template-ref" : " tags/2.2 .0-0-g2381db6 "
72
72
}
Original file line number Diff line number Diff line change 48
48
c . after ( :suite ) do
49
49
RSpec ::Puppet ::Coverage . report! ( 0 )
50
50
end
51
+
52
+ # Filter backtrace noise
53
+ backtrace_exclusion_patterns = [
54
+ %r{spec_helper} ,
55
+ %r{gems} ,
56
+ ]
57
+
58
+ if c . respond_to? ( :backtrace_exclusion_patterns )
59
+ c . backtrace_exclusion_patterns = backtrace_exclusion_patterns
60
+ elsif c . respond_to? ( :backtrace_clean_patterns )
61
+ c . backtrace_clean_patterns = backtrace_exclusion_patterns
62
+ end
51
63
end
52
64
53
65
# Ensures that a module is defined
You can’t perform that action at this time.
0 commit comments