Skip to content

Commit e0e0c75

Browse files
authored
Merge pull request #11 from ploperations/release_prep
(maint) Release prep v3.0.0
2 parents 4e49fd0 + d4ef5e8 commit e0e0c75

File tree

6 files changed

+28
-5
lines changed

6 files changed

+28
-5
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@
2525
.project
2626
.envrc
2727
/inventory.yaml
28+
/spec/fixtures/litmus_inventory.yaml

.pdkignore

+2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
.project
2626
.envrc
2727
/inventory.yaml
28+
/spec/fixtures/litmus_inventory.yaml
2829
/appveyor.yml
30+
/.editorconfig
2931
/.fixtures.yml
3032
/Gemfile
3133
/.gitattributes

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
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).
44

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+
513
## [2.0.0](https://github.com/ploperations/ploperations-webhook_proxy/tree/2.0.0) (2021-06-08)
614

715
[Full Changelog](https://github.com/ploperations/ploperations-webhook_proxy/compare/1.0.0...2.0.0)

REFERENCE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ Data type: `Pattern[/^\//]`
178178
The location, or path under this proxy's fqdn, that will have data sent to it
179179
for the given target
180180

181-
Default value: `('/*$', '/')`
181+
Default value: `regsubst($name, '^https?://', '/')`
182182

183183
##### <a name="target"></a>`target`
184184

metadata.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ploperations-webhook_proxy",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"author": "ploperations",
55
"summary": "Proxy external webhook endpoints to internal hosts",
66
"license": "Apache-2.0",
@@ -66,7 +66,7 @@
6666
"version_requirement": ">= 6.21.0 < 8.0.0"
6767
}
6868
],
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"
7272
}

spec/spec_helper.rb

+12
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,18 @@
4848
c.after(:suite) do
4949
RSpec::Puppet::Coverage.report!(0)
5050
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
5163
end
5264

5365
# Ensures that a module is defined

0 commit comments

Comments
 (0)