maremma 4.8 → 4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7b228c0b9c5c03982f9a328200fd772e5b881a2d3678a4ac98d8fdfb078933e7
4
- data.tar.gz: fe8015a6670d03df835304db59bbb0ce583bfcda4705b0c566d146db8401fd1b
3
+ metadata.gz: 8dea0b9b5cf0916542d904c1c3f0f4cbdfa325177b0dcd9bd3a096bea05bdeb0
4
+ data.tar.gz: ded3d03c921a63b33b4a975fb9b75d020bc2a7feb250f37703c90dcf7d1a7716
5
5
  SHA512:
6
- metadata.gz: 5318d3803d11f356cd86b7a25fe53526a94cbd2f8c8cf7d8f88fd555c2548723c854b3790655d174ed977c1323968a72daff47e3813c358a4362b7c7007a2e00
7
- data.tar.gz: 8d00dc936f379711b1b0ff367d87bc222759f4e39a888a7a08940d9ebc7208d4d86c25d934473773e848bf4086a8b4c514382e933ca3440bc091794a00f657fc
6
+ metadata.gz: 37a701b359497edce90b694a981204bb8c063b01b5c57c465c984cfd9162a9277be11628ec873588cc1772e02751b7c0fff9cf1407294a8655637b5efb8aa7b3
7
+ data.tar.gz: e9d255bb82c76b5c4e9264233cb5185c8b52a066608fe765884b076ead364ff90bd534fc815cbf2c36f56ebab0dbab626bb05a45d133a0200c9a19b34bc6c31b
@@ -0,0 +1,37 @@
1
+ name: Build Ruby Gem
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - "master"
7
+ jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ env:
11
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: Set up Ruby 2.6
15
+ uses: actions/setup-ruby@v1
16
+ with:
17
+ ruby-version: 2.6.x
18
+
19
+ - name: Build and test
20
+ run: |
21
+ gem install bundler
22
+ bundle install
23
+ bundle exec rspec
24
+
25
+ # - name: Publish code coverage
26
+ # uses: paambaati/codeclimate-action@v2.7.4
27
+ # env:
28
+ # CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
29
+
30
+ - name: Notify Slack
31
+ uses: adamkdean/simple-slack-notify@1.0.4
32
+ with:
33
+ channel: '#ops'
34
+ username: 'GitHub Actions'
35
+ color: 'good'
36
+ text: 'A new version of the maremma gem has been built.'
37
+
@@ -0,0 +1,36 @@
1
+ name: Changelog
2
+
3
+ on:
4
+ pull_request:
5
+ types: [closed]
6
+
7
+ release:
8
+ types: [published]
9
+
10
+ issues:
11
+ types: [closed, edited]
12
+
13
+ jobs:
14
+ generate_changelog:
15
+ runs-on: ubuntu-latest
16
+ name: Generate changelog
17
+ steps:
18
+ - uses: actions/checkout@v1
19
+
20
+ - name: Generate changelog
21
+ uses: charmixer/auto-changelog-action@v1.1
22
+ with:
23
+ token: ${{ secrets.GITHUB_TOKEN }}
24
+
25
+ - name: Commit files
26
+ run: |
27
+ git config --local user.email "action@github.com"
28
+ git config --local user.name "GitHub Action"
29
+ git add CHANGELOG.md && git commit -m 'Updated CHANGELOG.md'
30
+
31
+ - name: Push changes
32
+ uses: ad-m/github-push-action@v0.6.0
33
+ with:
34
+ github_token: ${{ secrets.GITHUB_TOKEN }}
35
+ branch: 'refs/heads/master'
36
+ tags: false
@@ -0,0 +1,46 @@
1
+ name: Release Ruby Gem
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+ jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ env:
10
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Set up Ruby 2.6
14
+ uses: actions/setup-ruby@v1
15
+ with:
16
+ ruby-version: 2.6.x
17
+
18
+ - name: Build and test
19
+ run: |
20
+ gem install bundler
21
+ bundle install
22
+ bundle exec rspec spec
23
+
24
+ # - name: Publish code coverage
25
+ # uses: paambaati/codeclimate-action@v2.7.4
26
+ # env:
27
+ # CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
28
+
29
+ - name: Publish to RubyGems
30
+ run: |
31
+ mkdir -p $HOME/.gem
32
+ touch $HOME/.gem/credentials
33
+ chmod 0600 $HOME/.gem/credentials
34
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
35
+ gem build *.gemspec
36
+ gem push *.gem
37
+ env:
38
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
39
+
40
+ - name: Notify Slack
41
+ uses: adamkdean/simple-slack-notify@1.0.4
42
+ with:
43
+ channel: '#ops'
44
+ username: 'GitHub Actions'
45
+ color: 'good'
46
+ text: 'A new version of the maremma gem has been released.'
data/CHANGELOG.md CHANGED
@@ -1,130 +1,350 @@
1
- ## v.4.2 (January 10, 2019)
1
+ # Changelog
2
2
 
3
- [maremma 4.2.1](https://github.com/datacite/maremma/releases/tag/v.4.2.1) was released on January 10, 2019:
3
+ ## [4.9](https://github.com/datacite/maremma/tree/4.9) (2021-06-06)
4
4
 
5
- * always send HOST header, use URL host on redirects. Implemented via SetHost middleware
5
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.7.4...4.9)
6
6
 
7
- ## v.4.0.2 (March 5, 2018)
7
+ ## [4.7.4](https://github.com/datacite/maremma/tree/4.7.4) (2021-03-26)
8
8
 
9
- [maremma 4.0.2](https://github.com/datacite/maremma/releases/tag/v.4.0.2) was released on March 5, 2018:
9
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.7.3...4.7.4)
10
10
 
11
- * return 429 status with `X-Ratelimit-Remaining` < 3 instead of < 10
11
+ ## [4.7.3](https://github.com/datacite/maremma/tree/4.7.3) (2021-03-25)
12
12
 
13
- ## v.4.0 (February 25, 2018)
13
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.7.2...4.7.3)
14
14
 
15
- [maremma 4.0](https://github.com/datacite/maremma/releases/tag/v.4.0) was released on February 25, 2018:
15
+ **Fixed bugs:**
16
16
 
17
- * upgrade to faraday 0.14, faraday-middleware 0.12 and excon 0.60
17
+ - Queries with umlauts fail [\#11](https://github.com/datacite/maremma/issues/11)
18
18
 
19
- ## v.3.6.2 (January 9, 2018)
19
+ ## [4.7.2](https://github.com/datacite/maremma/tree/4.7.2) (2020-08-23)
20
20
 
21
- [maremma 3.6.2](https://github.com/datacite/maremma/releases/tag/v.3.6.2) was released on January 9, 2018:
21
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.7.1...4.7.2)
22
22
 
23
- * correctly show 401 status and error message
23
+ ## [4.7.1](https://github.com/datacite/maremma/tree/4.7.1) (2020-07-11)
24
24
 
25
- ## v.3.6 (October 14, 2017)
25
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.8...4.7.1)
26
26
 
27
- [maremma 3.6](https://github.com/datacite/maremma/releases/tag/v.3.6) was released on October 14, 2017:
27
+ ## [4.8](https://github.com/datacite/maremma/tree/4.8) (2020-06-19)
28
28
 
29
- * added support for `patch` verb
29
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.7...4.8)
30
30
 
31
- ## v.3.5 (February 14, 2017)
31
+ ## [4.7](https://github.com/datacite/maremma/tree/4.7) (2020-03-24)
32
32
 
33
- [maremma 3.5](https://github.com/datacite/maremma/releases/tag/v.3.5) was released on February 14, 2017:
33
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.6.1...4.7)
34
34
 
35
- * breaking change: include attributes when parsing XML (use "text" key for node content)
35
+ ## [4.6.1](https://github.com/datacite/maremma/tree/4.6.1) (2020-03-05)
36
36
 
37
- ## v.3.1.2 (January 29, 2017)
37
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.6...4.6.1)
38
38
 
39
- [maremma 3.1.2](https://github.com/datacite/maremma/releases/tag/v.3.1.2) was released on January 29, 2017:
39
+ **Merged pull requests:**
40
40
 
41
- * raise error if invalid URL is provided
41
+ - enable gzip request [\#9](https://github.com/datacite/maremma/pull/9) ([kjgarza](https://github.com/kjgarza))
42
42
 
43
- ## v.3.1.1 (January 2, 2017)
43
+ ## [4.6](https://github.com/datacite/maremma/tree/4.6) (2020-02-22)
44
44
 
45
- [maremma 3.1.1](https://github.com/datacite/maremma/releases/tag/v.3.1.1) was released on January 2, 2017:
45
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.5...4.6)
46
46
 
47
- * added option to disable redirects by setting `limit` to 0.
48
- * return status code for errors
47
+ ## [v.4.5](https://github.com/datacite/maremma/tree/v.4.5) (2019-12-19)
49
48
 
50
- ## v.3.1 (December 10, 2016)
49
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.4...v.4.5)
51
50
 
52
- [maremma 3.1](https://github.com/datacite/maremma/releases/tag/v.3.1) was released on December 10, 2016:
51
+ **Fixed bugs:**
53
52
 
54
- * added `:raw` option to disable automatic parsing of JSON and XML responses.
53
+ - Specific proxys return 404 instead of 200 [\#5](https://github.com/datacite/maremma/issues/5)
55
54
 
56
- ## v.3.0.2 (December 10, 2016)
55
+ **Merged pull requests:**
57
56
 
58
- [maremma 3.0.2](https://github.com/datacite/maremma/releases/tag/v.3.0.2) was released on December 10, 2016:
57
+ - Bump rack from 2.0.7 to 2.0.8 [\#8](https://github.com/datacite/maremma/pull/8) ([dependabot[bot]](https://github.com/apps/dependabot))
58
+ - add Host header for GET requests [\#6](https://github.com/datacite/maremma/pull/6) ([phromo](https://github.com/phromo))
59
59
 
60
- * strip newline at end of base64 encode username:password for basic authentication
60
+ ## [v.4.4](https://github.com/datacite/maremma/tree/v.4.4) (2019-10-09)
61
61
 
62
- ## v.3.0 (November 25, 2016)
62
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.3...v.4.4)
63
63
 
64
- [maremma 3.0](https://github.com/datacite/maremma/releases/tag/v.3.0) was released on November 25, 2016:
64
+ ## [v.4.3](https://github.com/datacite/maremma/tree/v.4.3) (2019-08-31)
65
65
 
66
- * return full Faraday response object with response.body, response.headers and response.status
67
- * fix issue when response.body contains multiple hashes including one named `data`
66
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.6...v.4.3)
68
67
 
69
- ## v.2.5.4 (November 23, 2016)
68
+ ## [v.4.2.6](https://github.com/datacite/maremma/tree/v.4.2.6) (2019-07-06)
70
69
 
71
- [maremma 2.5](https://github.com/datacite/maremma/releases/tag/v.2.5.4) was released on November 23, 2016:
70
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.5...v.4.2.6)
72
71
 
73
- * fixed regression error in parsing response body
72
+ ## [v.4.2.5](https://github.com/datacite/maremma/tree/v.4.2.5) (2019-07-06)
74
73
 
75
- ## v.2.5 (November 18, 2016)
74
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.4...v.4.2.5)
76
75
 
77
- [maremma 2.5](https://github.com/datacite/maremma/releases/tag/v.2.5) was released on November 18, 2016:
76
+ ## [v.4.2.4](https://github.com/datacite/maremma/tree/v.4.2.4) (2019-07-06)
78
77
 
79
- * support `HEAD`, `PUT` and `DELETE` requests
80
- * return `headers` hash in the response
78
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.3...v.4.2.4)
81
79
 
82
- ## v.2.4 (November 6, 2016)
80
+ ## [v.4.2.3](https://github.com/datacite/maremma/tree/v.4.2.3) (2019-07-03)
83
81
 
84
- [maremma 2.4](https://github.com/datacite/maremma/releases/tag/v.2.4) was released on November 6, 2016:
82
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.1...v.4.2.3)
85
83
 
86
- * set `Content-type` and `Accept` headers separately. This is a breaking change
87
- * upgrade `codeclimate-test-reporter` gem
84
+ ## [v.4.2.1](https://github.com/datacite/maremma/tree/v.4.2.1) (2019-01-10)
88
85
 
89
- ## v.2.3.1 (September 2, 2016)
86
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.2...v.4.2.1)
90
87
 
91
- [maremma 2.3.1](https://github.com/datacite/maremma/releases/tag/v.2.3.1) was released on September 2, 2016:
88
+ ## [v.4.2](https://github.com/datacite/maremma/tree/v.4.2) (2019-01-10)
92
89
 
93
- * handle `Faraday::ConnectionFailed` errors with an appropriate error message
90
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.1.1...v.4.2)
94
91
 
95
- ## v.2.3 (August 16, 2016)
92
+ ## [v.4.1.1](https://github.com/datacite/maremma/tree/v.4.1.1) (2018-08-17)
96
93
 
97
- [maremma 2.3](https://github.com/datacite/maremma/releases/tag/v.2.3) was released on August 16, 2016:
94
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.1...v.4.1.1)
98
95
 
99
- * don't set `Host` header by default, as it causes issues with redirection ([#1](https://github.com/datacite/maremma/issues/1)).
100
- * don't set `Accept` header to `application/json` by default, but rather accept all content types
96
+ ## [v.4.1](https://github.com/datacite/maremma/tree/v.4.1) (2018-07-24)
101
97
 
102
- ## v.2.2 (July 1, 2016)
98
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.12...v.4.1)
103
99
 
104
- [maremma 2.2](https://github.com/datacite/maremma/releases/tag/v.2.2) was released on July 1, 2016:
100
+ ## [v.4.0.12](https://github.com/datacite/maremma/tree/v.4.0.12) (2018-07-04)
105
101
 
106
- * use `Faraday::FlatParamsEncoder` to enable sending the same URL parameter multiple times with different values
102
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.11...v.4.0.12)
107
103
 
108
- ## v.2.1 (March 5, 2016)
104
+ ## [v.4.0.11](https://github.com/datacite/maremma/tree/v.4.0.11) (2018-06-29)
109
105
 
110
- [maremma 2.1](https://github.com/datacite/maremma/releases/tag/v.2.1) was released on March 5, 2016:
106
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.10...v.4.0.11)
111
107
 
112
- * fixed format for token authentication: `Token token=123` instead of `Token token="123"`
108
+ ## [v.4.0.10](https://github.com/datacite/maremma/tree/v.4.0.10) (2018-06-21)
113
109
 
114
- ## v.2.0 (January 24, 2016)
110
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.9...v.4.0.10)
115
111
 
116
- [maremma 2.0](https://github.com/datacite/maremma/releases/tag/v.2.0) was released on January 24, 2016:
112
+ ## [v.4.0.9](https://github.com/datacite/maremma/tree/v.4.0.9) (2018-06-16)
117
113
 
118
- * return JSONAPI-friendly `errors` hash on errors, and `data` hash otherwise
114
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.8...v.4.0.9)
119
115
 
120
- ## v.1.1.0 (January 5, 2016)
116
+ ## [v.4.0.8](https://github.com/datacite/maremma/tree/v.4.0.8) (2018-06-14)
121
117
 
122
- [maremma 1.1](https://github.com/datacite/maremma/releases/tag/v.1.1.0) was released on January 5, 2016:
118
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.7...v.4.0.8)
123
119
 
124
- * added support for rate-limiting headers (Twitter, Github)
120
+ ## [v.4.0.7](https://github.com/datacite/maremma/tree/v.4.0.7) (2018-06-14)
125
121
 
126
- ## v.1.0 (November 28, 2015)
122
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.6...v.4.0.7)
127
123
 
128
- [maremma 1.0](https://github.com/datacite/maremma/releases/tag/v.1.0) was released on November 28, 2015:
124
+ **Closed issues:**
129
125
 
130
- * initial version
126
+ - Use more standardized user-agent by default [\#4](https://github.com/datacite/maremma/issues/4)
127
+
128
+ ## [v.4.0.6](https://github.com/datacite/maremma/tree/v.4.0.6) (2018-06-04)
129
+
130
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.5...v.4.0.6)
131
+
132
+ ## [v.4.0.5](https://github.com/datacite/maremma/tree/v.4.0.5) (2018-03-16)
133
+
134
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.4...v.4.0.5)
135
+
136
+ ## [v.4.0.4](https://github.com/datacite/maremma/tree/v.4.0.4) (2018-03-16)
137
+
138
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.3...v.4.0.4)
139
+
140
+ ## [v.4.0.3](https://github.com/datacite/maremma/tree/v.4.0.3) (2018-03-15)
141
+
142
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.2...v.4.0.3)
143
+
144
+ ## [v.4.0.2](https://github.com/datacite/maremma/tree/v.4.0.2) (2018-03-05)
145
+
146
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.1...v.4.0.2)
147
+
148
+ ## [v.4.0.1](https://github.com/datacite/maremma/tree/v.4.0.1) (2018-03-05)
149
+
150
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0...v.4.0.1)
151
+
152
+ ## [v.4.0](https://github.com/datacite/maremma/tree/v.4.0) (2018-02-25)
153
+
154
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.6.2...v.4.0)
155
+
156
+ ## [v.3.6.2](https://github.com/datacite/maremma/tree/v.3.6.2) (2018-01-09)
157
+
158
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.6.1...v.3.6.2)
159
+
160
+ ## [v.3.6.1](https://github.com/datacite/maremma/tree/v.3.6.1) (2018-01-09)
161
+
162
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.6...v.3.6.1)
163
+
164
+ **Merged pull requests:**
165
+
166
+ - use example securely [\#3](https://github.com/datacite/maremma/pull/3) ([katrinleinweber](https://github.com/katrinleinweber))
167
+
168
+ ## [v.3.6](https://github.com/datacite/maremma/tree/v.3.6) (2017-10-14)
169
+
170
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.4...v.3.6)
171
+
172
+ ## [v.2.4.4](https://github.com/datacite/maremma/tree/v.2.4.4) (2017-08-22)
173
+
174
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.3...v.2.4.4)
175
+
176
+ ## [v.2.4.3](https://github.com/datacite/maremma/tree/v.2.4.3) (2017-08-11)
177
+
178
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.11...v.2.4.3)
179
+
180
+ ## [v.3.5.11](https://github.com/datacite/maremma/tree/v.3.5.11) (2017-08-10)
181
+
182
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.0.3.5.10...v.3.5.11)
183
+
184
+ ## [v.0.3.5.10](https://github.com/datacite/maremma/tree/v.0.3.5.10) (2017-07-29)
185
+
186
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.10...v.0.3.5.10)
187
+
188
+ ## [v.3.5.10](https://github.com/datacite/maremma/tree/v.3.5.10) (2017-07-29)
189
+
190
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.9...v.3.5.10)
191
+
192
+ ## [v.3.5.9](https://github.com/datacite/maremma/tree/v.3.5.9) (2017-07-29)
193
+
194
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.2...v.3.5.9)
195
+
196
+ ## [v.2.4.2](https://github.com/datacite/maremma/tree/v.2.4.2) (2017-06-10)
197
+
198
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.8...v.2.4.2)
199
+
200
+ **Closed issues:**
201
+
202
+ - support GitHub token authentication [\#2](https://github.com/datacite/maremma/issues/2)
203
+
204
+ ## [v.3.5.8](https://github.com/datacite/maremma/tree/v.3.5.8) (2017-06-10)
205
+
206
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.7...v.3.5.8)
207
+
208
+ ## [v.3.5.7](https://github.com/datacite/maremma/tree/v.3.5.7) (2017-04-16)
209
+
210
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.6...v.3.5.7)
211
+
212
+ ## [v.3.5.6](https://github.com/datacite/maremma/tree/v.3.5.6) (2017-04-15)
213
+
214
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.5...v.3.5.6)
215
+
216
+ ## [v.3.5.5](https://github.com/datacite/maremma/tree/v.3.5.5) (2017-04-11)
217
+
218
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.4...v.3.5.5)
219
+
220
+ ## [v.3.5.4](https://github.com/datacite/maremma/tree/v.3.5.4) (2017-04-09)
221
+
222
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.3...v.3.5.4)
223
+
224
+ ## [v.3.5.3](https://github.com/datacite/maremma/tree/v.3.5.3) (2017-02-25)
225
+
226
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.1...v.3.5.3)
227
+
228
+ ## [v.3.5.1](https://github.com/datacite/maremma/tree/v.3.5.1) (2017-02-21)
229
+
230
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5...v.3.5.1)
231
+
232
+ ## [v.3.5](https://github.com/datacite/maremma/tree/v.3.5) (2017-02-14)
233
+
234
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.5...v.3.5)
235
+
236
+ ## [v.3.1.5](https://github.com/datacite/maremma/tree/v.3.1.5) (2017-02-12)
237
+
238
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.4...v.3.1.5)
239
+
240
+ ## [v.3.1.4](https://github.com/datacite/maremma/tree/v.3.1.4) (2017-02-11)
241
+
242
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.3...v.3.1.4)
243
+
244
+ ## [v.3.1.3](https://github.com/datacite/maremma/tree/v.3.1.3) (2017-02-10)
245
+
246
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.2...v.3.1.3)
247
+
248
+ ## [v.3.1.2](https://github.com/datacite/maremma/tree/v.3.1.2) (2017-01-29)
249
+
250
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.1...v.3.1.2)
251
+
252
+ ## [v.3.1.1](https://github.com/datacite/maremma/tree/v.3.1.1) (2017-01-02)
253
+
254
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1...v.3.1.1)
255
+
256
+ ## [v.3.1](https://github.com/datacite/maremma/tree/v.3.1) (2016-12-10)
257
+
258
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.0.2...v.3.1)
259
+
260
+ ## [v.3.0.2](https://github.com/datacite/maremma/tree/v.3.0.2) (2016-12-10)
261
+
262
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.0.1...v.3.0.2)
263
+
264
+ ## [v.3.0.1](https://github.com/datacite/maremma/tree/v.3.0.1) (2016-11-25)
265
+
266
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.0...v.3.0.1)
267
+
268
+ ## [v.3.0](https://github.com/datacite/maremma/tree/v.3.0) (2016-11-25)
269
+
270
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.4...v.3.0)
271
+
272
+ ## [v.2.5.4](https://github.com/datacite/maremma/tree/v.2.5.4) (2016-11-23)
273
+
274
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.5...v.2.5.4)
275
+
276
+ ## [v.2.5.5](https://github.com/datacite/maremma/tree/v.2.5.5) (2016-11-23)
277
+
278
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.3...v.2.5.5)
279
+
280
+ ## [v.2.5.3](https://github.com/datacite/maremma/tree/v.2.5.3) (2016-11-18)
281
+
282
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.2...v.2.5.3)
283
+
284
+ ## [v.2.5.2](https://github.com/datacite/maremma/tree/v.2.5.2) (2016-11-18)
285
+
286
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.1...v.2.5.2)
287
+
288
+ ## [v.2.5.1](https://github.com/datacite/maremma/tree/v.2.5.1) (2016-11-18)
289
+
290
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5...v.2.5.1)
291
+
292
+ ## [v.2.5](https://github.com/datacite/maremma/tree/v.2.5) (2016-11-18)
293
+
294
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.1...v.2.5)
295
+
296
+ ## [v.2.4.1](https://github.com/datacite/maremma/tree/v.2.4.1) (2016-11-06)
297
+
298
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.4...v.2.4.1)
299
+
300
+ ## [v.2.4](https://github.com/datacite/maremma/tree/v.2.4) (2016-11-06)
301
+
302
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.3.1...v.2.4)
303
+
304
+ ## [v.2.3.1](https://github.com/datacite/maremma/tree/v.2.3.1) (2016-09-02)
305
+
306
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.3...v.2.3.1)
307
+
308
+ ## [v.2.3](https://github.com/datacite/maremma/tree/v.2.3) (2016-08-16)
309
+
310
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.2.2...v.2.3)
311
+
312
+ **Closed issues:**
313
+
314
+ - don't set HOST header by default [\#1](https://github.com/datacite/maremma/issues/1)
315
+
316
+ ## [v.2.2.2](https://github.com/datacite/maremma/tree/v.2.2.2) (2016-07-01)
317
+
318
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.2.1...v.2.2.2)
319
+
320
+ ## [v.2.2.1](https://github.com/datacite/maremma/tree/v.2.2.1) (2016-06-30)
321
+
322
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.2...v.2.2.1)
323
+
324
+ ## [v.2.2](https://github.com/datacite/maremma/tree/v.2.2) (2016-06-30)
325
+
326
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.1.1...v.2.2)
327
+
328
+ ## [v.2.1.1](https://github.com/datacite/maremma/tree/v.2.1.1) (2016-03-05)
329
+
330
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.1...v.2.1.1)
331
+
332
+ ## [v.2.1](https://github.com/datacite/maremma/tree/v.2.1) (2016-03-05)
333
+
334
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.0.1...v.2.1)
335
+
336
+ ## [v.2.0.1](https://github.com/datacite/maremma/tree/v.2.0.1) (2016-02-15)
337
+
338
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.0...v.2.0.1)
339
+
340
+ ## [v.2.0](https://github.com/datacite/maremma/tree/v.2.0) (2016-01-24)
341
+
342
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.1.1.0...v.2.0)
343
+
344
+ ## [v.1.1.0](https://github.com/datacite/maremma/tree/v.1.1.0) (2016-01-05)
345
+
346
+ [Full Changelog](https://github.com/datacite/maremma/compare/0ad0a51207ada22afb94660258e896b3a15bae91...v.1.1.0)
347
+
348
+
349
+
350
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*