maremma 4.7.1 → 4.9.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e40b2744bef4afaf0dc6a5e115eebd23ca4bd6ce8817dc749a5889e835d4821d
4
- data.tar.gz: c6cdc22ea0eabd0634e10ffa16be88be7271fd8a23ac12c7979dbfcfcfeb49fa
3
+ metadata.gz: 2a9c0b30f4fe07434f05de62e4b64c54028ed22cebb285e8bee34850e34514f8
4
+ data.tar.gz: 18f09ec414eafd45610d458917787ca22bdd4db5bc286494634cdd5d80dac562
5
5
  SHA512:
6
- metadata.gz: 8723e9a1d12316bd3338b435b7c7ae03b10a50ae49c8abd47eeee5be826d83da2d8dc345356155df9b0ba92eb84a06aa161d71cfd75f2330a304b5da0c652c04
7
- data.tar.gz: 0151e566cac4ecefc79f3caebd28203eadb1b53f9c44eaafb6b98ebee82e7d9b2814507c59094444231993771ab0a5807d5d0f7f53abfa043aa5fcffbf154a8a
6
+ metadata.gz: 25aa844992e5aeebcdd5b0f127244e6546060f2de7fac3250f384641f060d616e1e448a6d8ae6eb8c27b2668299eef5d2ed5cd6d0375c6bae9f9ef68fc9602b3
7
+ data.tar.gz: 5e47a8f2d32e8f1380584c462e28221b19aebe285dff004253230ee98e502c909ceea85526854c513bd8321a7be2f550266590c2eac1f431ba119f6be9f6a809
@@ -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,354 @@
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.1](https://github.com/datacite/maremma/tree/4.9.1) (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.9...4.9.1)
6
6
 
7
- ## v.4.0.2 (March 5, 2018)
7
+ ## [4.9](https://github.com/datacite/maremma/tree/4.9) (2021-06-06)
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.4...4.9)
10
10
 
11
- * return 429 status with `X-Ratelimit-Remaining` < 3 instead of < 10
11
+ ## [4.7.4](https://github.com/datacite/maremma/tree/4.7.4) (2021-03-26)
12
12
 
13
- ## v.4.0 (February 25, 2018)
13
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.7.3...4.7.4)
14
14
 
15
- [maremma 4.0](https://github.com/datacite/maremma/releases/tag/v.4.0) was released on February 25, 2018:
15
+ ## [4.7.3](https://github.com/datacite/maremma/tree/4.7.3) (2021-03-25)
16
16
 
17
- * upgrade to faraday 0.14, faraday-middleware 0.12 and excon 0.60
17
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.7.2...4.7.3)
18
18
 
19
- ## v.3.6.2 (January 9, 2018)
19
+ **Fixed bugs:**
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
+ - Queries with umlauts fail [\#11](https://github.com/datacite/maremma/issues/11)
22
22
 
23
- * correctly show 401 status and error message
23
+ ## [4.7.2](https://github.com/datacite/maremma/tree/4.7.2) (2020-08-23)
24
24
 
25
- ## v.3.6 (October 14, 2017)
25
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.7.1...4.7.2)
26
26
 
27
- [maremma 3.6](https://github.com/datacite/maremma/releases/tag/v.3.6) was released on October 14, 2017:
27
+ ## [4.7.1](https://github.com/datacite/maremma/tree/4.7.1) (2020-07-11)
28
28
 
29
- * added support for `patch` verb
29
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.8...4.7.1)
30
30
 
31
- ## v.3.5 (February 14, 2017)
31
+ ## [4.8](https://github.com/datacite/maremma/tree/4.8) (2020-06-19)
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.7...4.8)
34
34
 
35
- * breaking change: include attributes when parsing XML (use "text" key for node content)
35
+ ## [4.7](https://github.com/datacite/maremma/tree/4.7) (2020-03-24)
36
36
 
37
- ## v.3.1.2 (January 29, 2017)
37
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.6.1...4.7)
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
+ ## [4.6.1](https://github.com/datacite/maremma/tree/4.6.1) (2020-03-05)
40
40
 
41
- * raise error if invalid URL is provided
41
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.6...4.6.1)
42
42
 
43
- ## v.3.1.1 (January 2, 2017)
43
+ **Merged pull requests:**
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
+ - enable gzip request [\#9](https://github.com/datacite/maremma/pull/9) ([kjgarza](https://github.com/kjgarza))
46
46
 
47
- * added option to disable redirects by setting `limit` to 0.
48
- * return status code for errors
47
+ ## [4.6](https://github.com/datacite/maremma/tree/4.6) (2020-02-22)
49
48
 
50
- ## v.3.1 (December 10, 2016)
49
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.5...4.6)
51
50
 
52
- [maremma 3.1](https://github.com/datacite/maremma/releases/tag/v.3.1) was released on December 10, 2016:
51
+ ## [v.4.5](https://github.com/datacite/maremma/tree/v.4.5) (2019-12-19)
53
52
 
54
- * added `:raw` option to disable automatic parsing of JSON and XML responses.
53
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.4...v.4.5)
55
54
 
56
- ## v.3.0.2 (December 10, 2016)
55
+ **Fixed bugs:**
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
+ - Specific proxys return 404 instead of 200 [\#5](https://github.com/datacite/maremma/issues/5)
59
58
 
60
- * strip newline at end of base64 encode username:password for basic authentication
59
+ **Merged pull requests:**
61
60
 
62
- ## v.3.0 (November 25, 2016)
61
+ - 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))
62
+ - add Host header for GET requests [\#6](https://github.com/datacite/maremma/pull/6) ([phromo](https://github.com/phromo))
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.4](https://github.com/datacite/maremma/tree/v.4.4) (2019-10-09)
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.3...v.4.4)
68
67
 
69
- ## v.2.5.4 (November 23, 2016)
68
+ ## [v.4.3](https://github.com/datacite/maremma/tree/v.4.3) (2019-08-31)
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.6...v.4.3)
72
71
 
73
- * fixed regression error in parsing response body
72
+ ## [v.4.2.6](https://github.com/datacite/maremma/tree/v.4.2.6) (2019-07-06)
74
73
 
75
- ## v.2.5 (November 18, 2016)
74
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.5...v.4.2.6)
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.5](https://github.com/datacite/maremma/tree/v.4.2.5) (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.4...v.4.2.5)
81
79
 
82
- ## v.2.4 (November 6, 2016)
80
+ ## [v.4.2.4](https://github.com/datacite/maremma/tree/v.4.2.4) (2019-07-06)
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.3...v.4.2.4)
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.3](https://github.com/datacite/maremma/tree/v.4.2.3) (2019-07-03)
88
85
 
89
- ## v.2.3.1 (September 2, 2016)
86
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.1...v.4.2.3)
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.1](https://github.com/datacite/maremma/tree/v.4.2.1) (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.2...v.4.2.1)
94
91
 
95
- ## v.2.3 (August 16, 2016)
92
+ ## [v.4.2](https://github.com/datacite/maremma/tree/v.4.2) (2019-01-10)
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.1...v.4.2)
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.1](https://github.com/datacite/maremma/tree/v.4.1.1) (2018-08-17)
101
97
 
102
- ## v.2.2 (July 1, 2016)
98
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.1...v.4.1.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.1](https://github.com/datacite/maremma/tree/v.4.1) (2018-07-24)
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.12...v.4.1)
107
103
 
108
- ## v.2.1 (March 5, 2016)
104
+ ## [v.4.0.12](https://github.com/datacite/maremma/tree/v.4.0.12) (2018-07-04)
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.11...v.4.0.12)
111
107
 
112
- * fixed format for token authentication: `Token token=123` instead of `Token token="123"`
108
+ ## [v.4.0.11](https://github.com/datacite/maremma/tree/v.4.0.11) (2018-06-29)
113
109
 
114
- ## v.2.0 (January 24, 2016)
110
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.10...v.4.0.11)
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.10](https://github.com/datacite/maremma/tree/v.4.0.10) (2018-06-21)
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.9...v.4.0.10)
119
115
 
120
- ## v.1.1.0 (January 5, 2016)
116
+ ## [v.4.0.9](https://github.com/datacite/maremma/tree/v.4.0.9) (2018-06-16)
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.8...v.4.0.9)
123
119
 
124
- * added support for rate-limiting headers (Twitter, Github)
120
+ ## [v.4.0.8](https://github.com/datacite/maremma/tree/v.4.0.8) (2018-06-14)
125
121
 
126
- ## v.1.0 (November 28, 2015)
122
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.7...v.4.0.8)
127
123
 
128
- [maremma 1.0](https://github.com/datacite/maremma/releases/tag/v.1.0) was released on November 28, 2015:
124
+ ## [v.4.0.7](https://github.com/datacite/maremma/tree/v.4.0.7) (2018-06-14)
129
125
 
130
- * initial version
126
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.6...v.4.0.7)
127
+
128
+ **Closed issues:**
129
+
130
+ - Use more standardized user-agent by default [\#4](https://github.com/datacite/maremma/issues/4)
131
+
132
+ ## [v.4.0.6](https://github.com/datacite/maremma/tree/v.4.0.6) (2018-06-04)
133
+
134
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.5...v.4.0.6)
135
+
136
+ ## [v.4.0.5](https://github.com/datacite/maremma/tree/v.4.0.5) (2018-03-16)
137
+
138
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.4...v.4.0.5)
139
+
140
+ ## [v.4.0.4](https://github.com/datacite/maremma/tree/v.4.0.4) (2018-03-16)
141
+
142
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.3...v.4.0.4)
143
+
144
+ ## [v.4.0.3](https://github.com/datacite/maremma/tree/v.4.0.3) (2018-03-15)
145
+
146
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.2...v.4.0.3)
147
+
148
+ ## [v.4.0.2](https://github.com/datacite/maremma/tree/v.4.0.2) (2018-03-05)
149
+
150
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.1...v.4.0.2)
151
+
152
+ ## [v.4.0.1](https://github.com/datacite/maremma/tree/v.4.0.1) (2018-03-05)
153
+
154
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.4.0...v.4.0.1)
155
+
156
+ ## [v.4.0](https://github.com/datacite/maremma/tree/v.4.0) (2018-02-25)
157
+
158
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.6.2...v.4.0)
159
+
160
+ ## [v.3.6.2](https://github.com/datacite/maremma/tree/v.3.6.2) (2018-01-09)
161
+
162
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.6.1...v.3.6.2)
163
+
164
+ ## [v.3.6.1](https://github.com/datacite/maremma/tree/v.3.6.1) (2018-01-09)
165
+
166
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.6...v.3.6.1)
167
+
168
+ **Merged pull requests:**
169
+
170
+ - use example securely [\#3](https://github.com/datacite/maremma/pull/3) ([katrinleinweber](https://github.com/katrinleinweber))
171
+
172
+ ## [v.3.6](https://github.com/datacite/maremma/tree/v.3.6) (2017-10-14)
173
+
174
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.4...v.3.6)
175
+
176
+ ## [v.2.4.4](https://github.com/datacite/maremma/tree/v.2.4.4) (2017-08-22)
177
+
178
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.3...v.2.4.4)
179
+
180
+ ## [v.2.4.3](https://github.com/datacite/maremma/tree/v.2.4.3) (2017-08-11)
181
+
182
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.11...v.2.4.3)
183
+
184
+ ## [v.3.5.11](https://github.com/datacite/maremma/tree/v.3.5.11) (2017-08-10)
185
+
186
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.0.3.5.10...v.3.5.11)
187
+
188
+ ## [v.0.3.5.10](https://github.com/datacite/maremma/tree/v.0.3.5.10) (2017-07-29)
189
+
190
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.10...v.0.3.5.10)
191
+
192
+ ## [v.3.5.10](https://github.com/datacite/maremma/tree/v.3.5.10) (2017-07-29)
193
+
194
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.9...v.3.5.10)
195
+
196
+ ## [v.3.5.9](https://github.com/datacite/maremma/tree/v.3.5.9) (2017-07-29)
197
+
198
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.2...v.3.5.9)
199
+
200
+ ## [v.2.4.2](https://github.com/datacite/maremma/tree/v.2.4.2) (2017-06-10)
201
+
202
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.8...v.2.4.2)
203
+
204
+ **Closed issues:**
205
+
206
+ - support GitHub token authentication [\#2](https://github.com/datacite/maremma/issues/2)
207
+
208
+ ## [v.3.5.8](https://github.com/datacite/maremma/tree/v.3.5.8) (2017-06-10)
209
+
210
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.7...v.3.5.8)
211
+
212
+ ## [v.3.5.7](https://github.com/datacite/maremma/tree/v.3.5.7) (2017-04-16)
213
+
214
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.6...v.3.5.7)
215
+
216
+ ## [v.3.5.6](https://github.com/datacite/maremma/tree/v.3.5.6) (2017-04-15)
217
+
218
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.5...v.3.5.6)
219
+
220
+ ## [v.3.5.5](https://github.com/datacite/maremma/tree/v.3.5.5) (2017-04-11)
221
+
222
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.4...v.3.5.5)
223
+
224
+ ## [v.3.5.4](https://github.com/datacite/maremma/tree/v.3.5.4) (2017-04-09)
225
+
226
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.3...v.3.5.4)
227
+
228
+ ## [v.3.5.3](https://github.com/datacite/maremma/tree/v.3.5.3) (2017-02-25)
229
+
230
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.1...v.3.5.3)
231
+
232
+ ## [v.3.5.1](https://github.com/datacite/maremma/tree/v.3.5.1) (2017-02-21)
233
+
234
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.5...v.3.5.1)
235
+
236
+ ## [v.3.5](https://github.com/datacite/maremma/tree/v.3.5) (2017-02-14)
237
+
238
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.5...v.3.5)
239
+
240
+ ## [v.3.1.5](https://github.com/datacite/maremma/tree/v.3.1.5) (2017-02-12)
241
+
242
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.4...v.3.1.5)
243
+
244
+ ## [v.3.1.4](https://github.com/datacite/maremma/tree/v.3.1.4) (2017-02-11)
245
+
246
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.3...v.3.1.4)
247
+
248
+ ## [v.3.1.3](https://github.com/datacite/maremma/tree/v.3.1.3) (2017-02-10)
249
+
250
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.2...v.3.1.3)
251
+
252
+ ## [v.3.1.2](https://github.com/datacite/maremma/tree/v.3.1.2) (2017-01-29)
253
+
254
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.1...v.3.1.2)
255
+
256
+ ## [v.3.1.1](https://github.com/datacite/maremma/tree/v.3.1.1) (2017-01-02)
257
+
258
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.1...v.3.1.1)
259
+
260
+ ## [v.3.1](https://github.com/datacite/maremma/tree/v.3.1) (2016-12-10)
261
+
262
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.0.2...v.3.1)
263
+
264
+ ## [v.3.0.2](https://github.com/datacite/maremma/tree/v.3.0.2) (2016-12-10)
265
+
266
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.0.1...v.3.0.2)
267
+
268
+ ## [v.3.0.1](https://github.com/datacite/maremma/tree/v.3.0.1) (2016-11-25)
269
+
270
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.3.0...v.3.0.1)
271
+
272
+ ## [v.3.0](https://github.com/datacite/maremma/tree/v.3.0) (2016-11-25)
273
+
274
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.4...v.3.0)
275
+
276
+ ## [v.2.5.4](https://github.com/datacite/maremma/tree/v.2.5.4) (2016-11-23)
277
+
278
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.5...v.2.5.4)
279
+
280
+ ## [v.2.5.5](https://github.com/datacite/maremma/tree/v.2.5.5) (2016-11-23)
281
+
282
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.3...v.2.5.5)
283
+
284
+ ## [v.2.5.3](https://github.com/datacite/maremma/tree/v.2.5.3) (2016-11-18)
285
+
286
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.2...v.2.5.3)
287
+
288
+ ## [v.2.5.2](https://github.com/datacite/maremma/tree/v.2.5.2) (2016-11-18)
289
+
290
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.1...v.2.5.2)
291
+
292
+ ## [v.2.5.1](https://github.com/datacite/maremma/tree/v.2.5.1) (2016-11-18)
293
+
294
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5...v.2.5.1)
295
+
296
+ ## [v.2.5](https://github.com/datacite/maremma/tree/v.2.5) (2016-11-18)
297
+
298
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.1...v.2.5)
299
+
300
+ ## [v.2.4.1](https://github.com/datacite/maremma/tree/v.2.4.1) (2016-11-06)
301
+
302
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.4...v.2.4.1)
303
+
304
+ ## [v.2.4](https://github.com/datacite/maremma/tree/v.2.4) (2016-11-06)
305
+
306
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.3.1...v.2.4)
307
+
308
+ ## [v.2.3.1](https://github.com/datacite/maremma/tree/v.2.3.1) (2016-09-02)
309
+
310
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.3...v.2.3.1)
311
+
312
+ ## [v.2.3](https://github.com/datacite/maremma/tree/v.2.3) (2016-08-16)
313
+
314
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.2.2...v.2.3)
315
+
316
+ **Closed issues:**
317
+
318
+ - don't set HOST header by default [\#1](https://github.com/datacite/maremma/issues/1)
319
+
320
+ ## [v.2.2.2](https://github.com/datacite/maremma/tree/v.2.2.2) (2016-07-01)
321
+
322
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.2.1...v.2.2.2)
323
+
324
+ ## [v.2.2.1](https://github.com/datacite/maremma/tree/v.2.2.1) (2016-06-30)
325
+
326
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.2...v.2.2.1)
327
+
328
+ ## [v.2.2](https://github.com/datacite/maremma/tree/v.2.2) (2016-06-30)
329
+
330
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.1.1...v.2.2)
331
+
332
+ ## [v.2.1.1](https://github.com/datacite/maremma/tree/v.2.1.1) (2016-03-05)
333
+
334
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.1...v.2.1.1)
335
+
336
+ ## [v.2.1](https://github.com/datacite/maremma/tree/v.2.1) (2016-03-05)
337
+
338
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.0.1...v.2.1)
339
+
340
+ ## [v.2.0.1](https://github.com/datacite/maremma/tree/v.2.0.1) (2016-02-15)
341
+
342
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.0...v.2.0.1)
343
+
344
+ ## [v.2.0](https://github.com/datacite/maremma/tree/v.2.0) (2016-01-24)
345
+
346
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.1.1.0...v.2.0)
347
+
348
+ ## [v.1.1.0](https://github.com/datacite/maremma/tree/v.1.1.0) (2016-01-05)
349
+
350
+ [Full Changelog](https://github.com/datacite/maremma/compare/0ad0a51207ada22afb94660258e896b3a15bae91...v.1.1.0)
351
+
352
+
353
+
354
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*