maremma 4.7.4 → 4.9.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +37 -0
- data/.github/workflows/changelog.yml +36 -0
- data/.github/workflows/release.yml +46 -0
- data/CHANGELOG.md +300 -68
- data/Gemfile.lock +13 -13
- data/lib/maremma.rb +51 -45
- data/lib/maremma/version.rb +1 -1
- data/maremma.gemspec +1 -2
- data/spec/maremma_spec.rb +117 -117
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 812d9d624b11d65e0e4de04c4eb8de717a1ba060dc0ee25c362f4a659a04f658
|
4
|
+
data.tar.gz: 99914ece6614328bce7e0677919bbfd68f1f8eae75ea907ef22721b6506d8129
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77aeaaecdedf584cfdc84240ac199f2a1c87c289248869ed3fbf215dfe05e634b21ac1f48a911f6505d4c5b301454489e3de27f991737490c618ec6b188116a9
|
7
|
+
data.tar.gz: 4e0077762347ef7f2ab8a3bd91ee059e488bbc1674b8d5d1985070b44bc21493a63f5dd3ca395b95b045906f8c3335ba96b50e9e23400a27cdea80ccfef8f309
|
@@ -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,362 @@
|
|
1
|
-
|
1
|
+
# Changelog
|
2
2
|
|
3
|
-
[
|
3
|
+
## [4.9.3](https://github.com/datacite/maremma/tree/4.9.3) (2021-06-07)
|
4
4
|
|
5
|
-
|
5
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.9.2...4.9.3)
|
6
6
|
|
7
|
-
##
|
7
|
+
## [4.9.2](https://github.com/datacite/maremma/tree/4.9.2) (2021-06-07)
|
8
8
|
|
9
|
-
[
|
9
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.9.1...4.9.2)
|
10
10
|
|
11
|
-
|
11
|
+
## [4.9.1](https://github.com/datacite/maremma/tree/4.9.1) (2021-06-06)
|
12
12
|
|
13
|
-
|
13
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.9...4.9.1)
|
14
14
|
|
15
|
-
[
|
15
|
+
## [4.9](https://github.com/datacite/maremma/tree/4.9) (2021-06-06)
|
16
16
|
|
17
|
-
|
17
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.7.4...4.9)
|
18
18
|
|
19
|
-
##
|
19
|
+
## [4.7.4](https://github.com/datacite/maremma/tree/4.7.4) (2021-03-26)
|
20
20
|
|
21
|
-
[
|
21
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.7.3...4.7.4)
|
22
22
|
|
23
|
-
|
23
|
+
## [4.7.3](https://github.com/datacite/maremma/tree/4.7.3) (2021-03-25)
|
24
24
|
|
25
|
-
|
25
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.7.2...4.7.3)
|
26
26
|
|
27
|
-
|
27
|
+
**Fixed bugs:**
|
28
28
|
|
29
|
-
|
29
|
+
- Queries with umlauts fail [\#11](https://github.com/datacite/maremma/issues/11)
|
30
30
|
|
31
|
-
##
|
31
|
+
## [4.7.2](https://github.com/datacite/maremma/tree/4.7.2) (2020-08-23)
|
32
32
|
|
33
|
-
[
|
33
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.7.1...4.7.2)
|
34
34
|
|
35
|
-
|
35
|
+
## [4.7.1](https://github.com/datacite/maremma/tree/4.7.1) (2020-07-11)
|
36
36
|
|
37
|
-
|
37
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.8...4.7.1)
|
38
38
|
|
39
|
-
[
|
39
|
+
## [4.8](https://github.com/datacite/maremma/tree/4.8) (2020-06-19)
|
40
40
|
|
41
|
-
|
41
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.7...4.8)
|
42
42
|
|
43
|
-
##
|
43
|
+
## [4.7](https://github.com/datacite/maremma/tree/4.7) (2020-03-24)
|
44
44
|
|
45
|
-
[
|
45
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.6.1...4.7)
|
46
46
|
|
47
|
-
|
48
|
-
* return status code for errors
|
47
|
+
## [4.6.1](https://github.com/datacite/maremma/tree/4.6.1) (2020-03-05)
|
49
48
|
|
50
|
-
|
49
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.6...4.6.1)
|
51
50
|
|
52
|
-
|
51
|
+
**Merged pull requests:**
|
53
52
|
|
54
|
-
|
53
|
+
- enable gzip request [\#9](https://github.com/datacite/maremma/pull/9) ([kjgarza](https://github.com/kjgarza))
|
55
54
|
|
56
|
-
##
|
55
|
+
## [4.6](https://github.com/datacite/maremma/tree/4.6) (2020-02-22)
|
57
56
|
|
58
|
-
[
|
57
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.5...4.6)
|
59
58
|
|
60
|
-
|
59
|
+
## [v.4.5](https://github.com/datacite/maremma/tree/v.4.5) (2019-12-19)
|
61
60
|
|
62
|
-
|
61
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.4...v.4.5)
|
63
62
|
|
64
|
-
|
63
|
+
**Fixed bugs:**
|
65
64
|
|
66
|
-
|
67
|
-
* fix issue when response.body contains multiple hashes including one named `data`
|
65
|
+
- Specific proxys return 404 instead of 200 [\#5](https://github.com/datacite/maremma/issues/5)
|
68
66
|
|
69
|
-
|
67
|
+
**Merged pull requests:**
|
70
68
|
|
71
|
-
|
69
|
+
- 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))
|
70
|
+
- add Host header for GET requests [\#6](https://github.com/datacite/maremma/pull/6) ([phromo](https://github.com/phromo))
|
72
71
|
|
73
|
-
|
72
|
+
## [v.4.4](https://github.com/datacite/maremma/tree/v.4.4) (2019-10-09)
|
74
73
|
|
75
|
-
|
74
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.3...v.4.4)
|
76
75
|
|
77
|
-
[
|
76
|
+
## [v.4.3](https://github.com/datacite/maremma/tree/v.4.3) (2019-08-31)
|
78
77
|
|
79
|
-
|
80
|
-
* return `headers` hash in the response
|
78
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.6...v.4.3)
|
81
79
|
|
82
|
-
## v.2.4 (
|
80
|
+
## [v.4.2.6](https://github.com/datacite/maremma/tree/v.4.2.6) (2019-07-06)
|
83
81
|
|
84
|
-
[
|
82
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.5...v.4.2.6)
|
85
83
|
|
86
|
-
|
87
|
-
* upgrade `codeclimate-test-reporter` gem
|
84
|
+
## [v.4.2.5](https://github.com/datacite/maremma/tree/v.4.2.5) (2019-07-06)
|
88
85
|
|
89
|
-
|
86
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.4...v.4.2.5)
|
90
87
|
|
91
|
-
[
|
88
|
+
## [v.4.2.4](https://github.com/datacite/maremma/tree/v.4.2.4) (2019-07-06)
|
92
89
|
|
93
|
-
|
90
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.3...v.4.2.4)
|
94
91
|
|
95
|
-
## v.2.3 (
|
92
|
+
## [v.4.2.3](https://github.com/datacite/maremma/tree/v.4.2.3) (2019-07-03)
|
96
93
|
|
97
|
-
[
|
94
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.1...v.4.2.3)
|
98
95
|
|
99
|
-
|
100
|
-
* don't set `Accept` header to `application/json` by default, but rather accept all content types
|
96
|
+
## [v.4.2.1](https://github.com/datacite/maremma/tree/v.4.2.1) (2019-01-10)
|
101
97
|
|
102
|
-
|
98
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.2...v.4.2.1)
|
103
99
|
|
104
|
-
[
|
100
|
+
## [v.4.2](https://github.com/datacite/maremma/tree/v.4.2) (2019-01-10)
|
105
101
|
|
106
|
-
|
102
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.1.1...v.4.2)
|
107
103
|
|
108
|
-
## v.
|
104
|
+
## [v.4.1.1](https://github.com/datacite/maremma/tree/v.4.1.1) (2018-08-17)
|
109
105
|
|
110
|
-
[
|
106
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.1...v.4.1.1)
|
111
107
|
|
112
|
-
|
108
|
+
## [v.4.1](https://github.com/datacite/maremma/tree/v.4.1) (2018-07-24)
|
113
109
|
|
114
|
-
|
110
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.12...v.4.1)
|
115
111
|
|
116
|
-
[
|
112
|
+
## [v.4.0.12](https://github.com/datacite/maremma/tree/v.4.0.12) (2018-07-04)
|
117
113
|
|
118
|
-
|
114
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.11...v.4.0.12)
|
119
115
|
|
120
|
-
## v.
|
116
|
+
## [v.4.0.11](https://github.com/datacite/maremma/tree/v.4.0.11) (2018-06-29)
|
121
117
|
|
122
|
-
[
|
118
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.10...v.4.0.11)
|
123
119
|
|
124
|
-
|
120
|
+
## [v.4.0.10](https://github.com/datacite/maremma/tree/v.4.0.10) (2018-06-21)
|
125
121
|
|
126
|
-
|
122
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.9...v.4.0.10)
|
127
123
|
|
128
|
-
[
|
124
|
+
## [v.4.0.9](https://github.com/datacite/maremma/tree/v.4.0.9) (2018-06-16)
|
129
125
|
|
130
|
-
|
126
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.8...v.4.0.9)
|
127
|
+
|
128
|
+
## [v.4.0.8](https://github.com/datacite/maremma/tree/v.4.0.8) (2018-06-14)
|
129
|
+
|
130
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.7...v.4.0.8)
|
131
|
+
|
132
|
+
## [v.4.0.7](https://github.com/datacite/maremma/tree/v.4.0.7) (2018-06-14)
|
133
|
+
|
134
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.6...v.4.0.7)
|
135
|
+
|
136
|
+
**Closed issues:**
|
137
|
+
|
138
|
+
- Use more standardized user-agent by default [\#4](https://github.com/datacite/maremma/issues/4)
|
139
|
+
|
140
|
+
## [v.4.0.6](https://github.com/datacite/maremma/tree/v.4.0.6) (2018-06-04)
|
141
|
+
|
142
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.5...v.4.0.6)
|
143
|
+
|
144
|
+
## [v.4.0.5](https://github.com/datacite/maremma/tree/v.4.0.5) (2018-03-16)
|
145
|
+
|
146
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.4...v.4.0.5)
|
147
|
+
|
148
|
+
## [v.4.0.4](https://github.com/datacite/maremma/tree/v.4.0.4) (2018-03-16)
|
149
|
+
|
150
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.3...v.4.0.4)
|
151
|
+
|
152
|
+
## [v.4.0.3](https://github.com/datacite/maremma/tree/v.4.0.3) (2018-03-15)
|
153
|
+
|
154
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.2...v.4.0.3)
|
155
|
+
|
156
|
+
## [v.4.0.2](https://github.com/datacite/maremma/tree/v.4.0.2) (2018-03-05)
|
157
|
+
|
158
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.1...v.4.0.2)
|
159
|
+
|
160
|
+
## [v.4.0.1](https://github.com/datacite/maremma/tree/v.4.0.1) (2018-03-05)
|
161
|
+
|
162
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0...v.4.0.1)
|
163
|
+
|
164
|
+
## [v.4.0](https://github.com/datacite/maremma/tree/v.4.0) (2018-02-25)
|
165
|
+
|
166
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.6.2...v.4.0)
|
167
|
+
|
168
|
+
## [v.3.6.2](https://github.com/datacite/maremma/tree/v.3.6.2) (2018-01-09)
|
169
|
+
|
170
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.6.1...v.3.6.2)
|
171
|
+
|
172
|
+
## [v.3.6.1](https://github.com/datacite/maremma/tree/v.3.6.1) (2018-01-09)
|
173
|
+
|
174
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.6...v.3.6.1)
|
175
|
+
|
176
|
+
**Merged pull requests:**
|
177
|
+
|
178
|
+
- use example securely [\#3](https://github.com/datacite/maremma/pull/3) ([katrinleinweber](https://github.com/katrinleinweber))
|
179
|
+
|
180
|
+
## [v.3.6](https://github.com/datacite/maremma/tree/v.3.6) (2017-10-14)
|
181
|
+
|
182
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.4...v.3.6)
|
183
|
+
|
184
|
+
## [v.2.4.4](https://github.com/datacite/maremma/tree/v.2.4.4) (2017-08-22)
|
185
|
+
|
186
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.3...v.2.4.4)
|
187
|
+
|
188
|
+
## [v.2.4.3](https://github.com/datacite/maremma/tree/v.2.4.3) (2017-08-11)
|
189
|
+
|
190
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.11...v.2.4.3)
|
191
|
+
|
192
|
+
## [v.3.5.11](https://github.com/datacite/maremma/tree/v.3.5.11) (2017-08-10)
|
193
|
+
|
194
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.0.3.5.10...v.3.5.11)
|
195
|
+
|
196
|
+
## [v.0.3.5.10](https://github.com/datacite/maremma/tree/v.0.3.5.10) (2017-07-29)
|
197
|
+
|
198
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.10...v.0.3.5.10)
|
199
|
+
|
200
|
+
## [v.3.5.10](https://github.com/datacite/maremma/tree/v.3.5.10) (2017-07-29)
|
201
|
+
|
202
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.9...v.3.5.10)
|
203
|
+
|
204
|
+
## [v.3.5.9](https://github.com/datacite/maremma/tree/v.3.5.9) (2017-07-29)
|
205
|
+
|
206
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.2...v.3.5.9)
|
207
|
+
|
208
|
+
## [v.2.4.2](https://github.com/datacite/maremma/tree/v.2.4.2) (2017-06-10)
|
209
|
+
|
210
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.8...v.2.4.2)
|
211
|
+
|
212
|
+
**Closed issues:**
|
213
|
+
|
214
|
+
- support GitHub token authentication [\#2](https://github.com/datacite/maremma/issues/2)
|
215
|
+
|
216
|
+
## [v.3.5.8](https://github.com/datacite/maremma/tree/v.3.5.8) (2017-06-10)
|
217
|
+
|
218
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.7...v.3.5.8)
|
219
|
+
|
220
|
+
## [v.3.5.7](https://github.com/datacite/maremma/tree/v.3.5.7) (2017-04-16)
|
221
|
+
|
222
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.6...v.3.5.7)
|
223
|
+
|
224
|
+
## [v.3.5.6](https://github.com/datacite/maremma/tree/v.3.5.6) (2017-04-15)
|
225
|
+
|
226
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.5...v.3.5.6)
|
227
|
+
|
228
|
+
## [v.3.5.5](https://github.com/datacite/maremma/tree/v.3.5.5) (2017-04-11)
|
229
|
+
|
230
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.4...v.3.5.5)
|
231
|
+
|
232
|
+
## [v.3.5.4](https://github.com/datacite/maremma/tree/v.3.5.4) (2017-04-09)
|
233
|
+
|
234
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.3...v.3.5.4)
|
235
|
+
|
236
|
+
## [v.3.5.3](https://github.com/datacite/maremma/tree/v.3.5.3) (2017-02-25)
|
237
|
+
|
238
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.5.1...v.3.5.3)
|
239
|
+
|
240
|
+
## [v.3.5.1](https://github.com/datacite/maremma/tree/v.3.5.1) (2017-02-21)
|
241
|
+
|
242
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.5...v.3.5.1)
|
243
|
+
|
244
|
+
## [v.3.5](https://github.com/datacite/maremma/tree/v.3.5) (2017-02-14)
|
245
|
+
|
246
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.5...v.3.5)
|
247
|
+
|
248
|
+
## [v.3.1.5](https://github.com/datacite/maremma/tree/v.3.1.5) (2017-02-12)
|
249
|
+
|
250
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.4...v.3.1.5)
|
251
|
+
|
252
|
+
## [v.3.1.4](https://github.com/datacite/maremma/tree/v.3.1.4) (2017-02-11)
|
253
|
+
|
254
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.3...v.3.1.4)
|
255
|
+
|
256
|
+
## [v.3.1.3](https://github.com/datacite/maremma/tree/v.3.1.3) (2017-02-10)
|
257
|
+
|
258
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.2...v.3.1.3)
|
259
|
+
|
260
|
+
## [v.3.1.2](https://github.com/datacite/maremma/tree/v.3.1.2) (2017-01-29)
|
261
|
+
|
262
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.1.1...v.3.1.2)
|
263
|
+
|
264
|
+
## [v.3.1.1](https://github.com/datacite/maremma/tree/v.3.1.1) (2017-01-02)
|
265
|
+
|
266
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.1...v.3.1.1)
|
267
|
+
|
268
|
+
## [v.3.1](https://github.com/datacite/maremma/tree/v.3.1) (2016-12-10)
|
269
|
+
|
270
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.0.2...v.3.1)
|
271
|
+
|
272
|
+
## [v.3.0.2](https://github.com/datacite/maremma/tree/v.3.0.2) (2016-12-10)
|
273
|
+
|
274
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.0.1...v.3.0.2)
|
275
|
+
|
276
|
+
## [v.3.0.1](https://github.com/datacite/maremma/tree/v.3.0.1) (2016-11-25)
|
277
|
+
|
278
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.3.0...v.3.0.1)
|
279
|
+
|
280
|
+
## [v.3.0](https://github.com/datacite/maremma/tree/v.3.0) (2016-11-25)
|
281
|
+
|
282
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.5...v.3.0)
|
283
|
+
|
284
|
+
## [v.2.5.5](https://github.com/datacite/maremma/tree/v.2.5.5) (2016-11-23)
|
285
|
+
|
286
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.4...v.2.5.5)
|
287
|
+
|
288
|
+
## [v.2.5.4](https://github.com/datacite/maremma/tree/v.2.5.4) (2016-11-23)
|
289
|
+
|
290
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.3...v.2.5.4)
|
291
|
+
|
292
|
+
## [v.2.5.3](https://github.com/datacite/maremma/tree/v.2.5.3) (2016-11-18)
|
293
|
+
|
294
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.2...v.2.5.3)
|
295
|
+
|
296
|
+
## [v.2.5.2](https://github.com/datacite/maremma/tree/v.2.5.2) (2016-11-18)
|
297
|
+
|
298
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.1...v.2.5.2)
|
299
|
+
|
300
|
+
## [v.2.5.1](https://github.com/datacite/maremma/tree/v.2.5.1) (2016-11-18)
|
301
|
+
|
302
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5...v.2.5.1)
|
303
|
+
|
304
|
+
## [v.2.5](https://github.com/datacite/maremma/tree/v.2.5) (2016-11-18)
|
305
|
+
|
306
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.4.1...v.2.5)
|
307
|
+
|
308
|
+
## [v.2.4.1](https://github.com/datacite/maremma/tree/v.2.4.1) (2016-11-06)
|
309
|
+
|
310
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.4...v.2.4.1)
|
311
|
+
|
312
|
+
## [v.2.4](https://github.com/datacite/maremma/tree/v.2.4) (2016-11-06)
|
313
|
+
|
314
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.3.1...v.2.4)
|
315
|
+
|
316
|
+
## [v.2.3.1](https://github.com/datacite/maremma/tree/v.2.3.1) (2016-09-02)
|
317
|
+
|
318
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.3...v.2.3.1)
|
319
|
+
|
320
|
+
## [v.2.3](https://github.com/datacite/maremma/tree/v.2.3) (2016-08-16)
|
321
|
+
|
322
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.2.2...v.2.3)
|
323
|
+
|
324
|
+
**Closed issues:**
|
325
|
+
|
326
|
+
- don't set HOST header by default [\#1](https://github.com/datacite/maremma/issues/1)
|
327
|
+
|
328
|
+
## [v.2.2.2](https://github.com/datacite/maremma/tree/v.2.2.2) (2016-07-01)
|
329
|
+
|
330
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.2.1...v.2.2.2)
|
331
|
+
|
332
|
+
## [v.2.2.1](https://github.com/datacite/maremma/tree/v.2.2.1) (2016-06-30)
|
333
|
+
|
334
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.2...v.2.2.1)
|
335
|
+
|
336
|
+
## [v.2.2](https://github.com/datacite/maremma/tree/v.2.2) (2016-06-30)
|
337
|
+
|
338
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.1.1...v.2.2)
|
339
|
+
|
340
|
+
## [v.2.1.1](https://github.com/datacite/maremma/tree/v.2.1.1) (2016-03-05)
|
341
|
+
|
342
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.1...v.2.1.1)
|
343
|
+
|
344
|
+
## [v.2.1](https://github.com/datacite/maremma/tree/v.2.1) (2016-03-05)
|
345
|
+
|
346
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.0.1...v.2.1)
|
347
|
+
|
348
|
+
## [v.2.0.1](https://github.com/datacite/maremma/tree/v.2.0.1) (2016-02-15)
|
349
|
+
|
350
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.0...v.2.0.1)
|
351
|
+
|
352
|
+
## [v.2.0](https://github.com/datacite/maremma/tree/v.2.0) (2016-01-24)
|
353
|
+
|
354
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.1.1.0...v.2.0)
|
355
|
+
|
356
|
+
## [v.1.1.0](https://github.com/datacite/maremma/tree/v.1.1.0) (2016-01-05)
|
357
|
+
|
358
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/0ad0a51207ada22afb94660258e896b3a15bae91...v.1.1.0)
|
359
|
+
|
360
|
+
|
361
|
+
|
362
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|