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 +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 +288 -68
- data/Gemfile.lock +55 -50
- data/lib/maremma.rb +59 -46
- data/lib/maremma/version.rb +1 -1
- data/maremma.gemspec +4 -4
- data/spec/maremma_spec.rb +112 -103
- metadata +26 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8dea0b9b5cf0916542d904c1c3f0f4cbdfa325177b0dcd9bd3a096bea05bdeb0
|
|
4
|
+
data.tar.gz: ded3d03c921a63b33b4a975fb9b75d020bc2a7feb250f37703c90dcf7d1a7716
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
[
|
|
3
|
+
## [4.9](https://github.com/datacite/maremma/tree/4.9) (2021-06-06)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.7.4...4.9)
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## [4.7.4](https://github.com/datacite/maremma/tree/4.7.4) (2021-03-26)
|
|
8
8
|
|
|
9
|
-
[
|
|
9
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.7.3...4.7.4)
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
## [4.7.3](https://github.com/datacite/maremma/tree/4.7.3) (2021-03-25)
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.7.2...4.7.3)
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
**Fixed bugs:**
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
- Queries with umlauts fail [\#11](https://github.com/datacite/maremma/issues/11)
|
|
18
18
|
|
|
19
|
-
##
|
|
19
|
+
## [4.7.2](https://github.com/datacite/maremma/tree/4.7.2) (2020-08-23)
|
|
20
20
|
|
|
21
|
-
[
|
|
21
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.7.1...4.7.2)
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
## [4.7.1](https://github.com/datacite/maremma/tree/4.7.1) (2020-07-11)
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.8...4.7.1)
|
|
26
26
|
|
|
27
|
-
[
|
|
27
|
+
## [4.8](https://github.com/datacite/maremma/tree/4.8) (2020-06-19)
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.7...4.8)
|
|
30
30
|
|
|
31
|
-
##
|
|
31
|
+
## [4.7](https://github.com/datacite/maremma/tree/4.7) (2020-03-24)
|
|
32
32
|
|
|
33
|
-
[
|
|
33
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.6.1...4.7)
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
## [4.6.1](https://github.com/datacite/maremma/tree/4.6.1) (2020-03-05)
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.6...4.6.1)
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
**Merged pull requests:**
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
- enable gzip request [\#9](https://github.com/datacite/maremma/pull/9) ([kjgarza](https://github.com/kjgarza))
|
|
42
42
|
|
|
43
|
-
##
|
|
43
|
+
## [4.6](https://github.com/datacite/maremma/tree/4.6) (2020-02-22)
|
|
44
44
|
|
|
45
|
-
[
|
|
45
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.5...4.6)
|
|
46
46
|
|
|
47
|
-
|
|
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
|
-
|
|
49
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.4...v.4.5)
|
|
51
50
|
|
|
52
|
-
|
|
51
|
+
**Fixed bugs:**
|
|
53
52
|
|
|
54
|
-
|
|
53
|
+
- Specific proxys return 404 instead of 200 [\#5](https://github.com/datacite/maremma/issues/5)
|
|
55
54
|
|
|
56
|
-
|
|
55
|
+
**Merged pull requests:**
|
|
57
56
|
|
|
58
|
-
|
|
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
|
-
|
|
60
|
+
## [v.4.4](https://github.com/datacite/maremma/tree/v.4.4) (2019-10-09)
|
|
61
61
|
|
|
62
|
-
|
|
62
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.3...v.4.4)
|
|
63
63
|
|
|
64
|
-
[
|
|
64
|
+
## [v.4.3](https://github.com/datacite/maremma/tree/v.4.3) (2019-08-31)
|
|
65
65
|
|
|
66
|
-
|
|
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.
|
|
68
|
+
## [v.4.2.6](https://github.com/datacite/maremma/tree/v.4.2.6) (2019-07-06)
|
|
70
69
|
|
|
71
|
-
[
|
|
70
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.5...v.4.2.6)
|
|
72
71
|
|
|
73
|
-
|
|
72
|
+
## [v.4.2.5](https://github.com/datacite/maremma/tree/v.4.2.5) (2019-07-06)
|
|
74
73
|
|
|
75
|
-
|
|
74
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.4...v.4.2.5)
|
|
76
75
|
|
|
77
|
-
[
|
|
76
|
+
## [v.4.2.4](https://github.com/datacite/maremma/tree/v.4.2.4) (2019-07-06)
|
|
78
77
|
|
|
79
|
-
|
|
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 (
|
|
80
|
+
## [v.4.2.3](https://github.com/datacite/maremma/tree/v.4.2.3) (2019-07-03)
|
|
83
81
|
|
|
84
|
-
[
|
|
82
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.2.1...v.4.2.3)
|
|
85
83
|
|
|
86
|
-
|
|
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
|
-
|
|
86
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.2...v.4.2.1)
|
|
90
87
|
|
|
91
|
-
[
|
|
88
|
+
## [v.4.2](https://github.com/datacite/maremma/tree/v.4.2) (2019-01-10)
|
|
92
89
|
|
|
93
|
-
|
|
90
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.1.1...v.4.2)
|
|
94
91
|
|
|
95
|
-
## v.
|
|
92
|
+
## [v.4.1.1](https://github.com/datacite/maremma/tree/v.4.1.1) (2018-08-17)
|
|
96
93
|
|
|
97
|
-
[
|
|
94
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.1...v.4.1.1)
|
|
98
95
|
|
|
99
|
-
|
|
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
|
-
|
|
98
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.12...v.4.1)
|
|
103
99
|
|
|
104
|
-
[
|
|
100
|
+
## [v.4.0.12](https://github.com/datacite/maremma/tree/v.4.0.12) (2018-07-04)
|
|
105
101
|
|
|
106
|
-
|
|
102
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.11...v.4.0.12)
|
|
107
103
|
|
|
108
|
-
## v.
|
|
104
|
+
## [v.4.0.11](https://github.com/datacite/maremma/tree/v.4.0.11) (2018-06-29)
|
|
109
105
|
|
|
110
|
-
[
|
|
106
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.10...v.4.0.11)
|
|
111
107
|
|
|
112
|
-
|
|
108
|
+
## [v.4.0.10](https://github.com/datacite/maremma/tree/v.4.0.10) (2018-06-21)
|
|
113
109
|
|
|
114
|
-
|
|
110
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.9...v.4.0.10)
|
|
115
111
|
|
|
116
|
-
[
|
|
112
|
+
## [v.4.0.9](https://github.com/datacite/maremma/tree/v.4.0.9) (2018-06-16)
|
|
117
113
|
|
|
118
|
-
|
|
114
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.8...v.4.0.9)
|
|
119
115
|
|
|
120
|
-
## v.
|
|
116
|
+
## [v.4.0.8](https://github.com/datacite/maremma/tree/v.4.0.8) (2018-06-14)
|
|
121
117
|
|
|
122
|
-
[
|
|
118
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.7...v.4.0.8)
|
|
123
119
|
|
|
124
|
-
|
|
120
|
+
## [v.4.0.7](https://github.com/datacite/maremma/tree/v.4.0.7) (2018-06-14)
|
|
125
121
|
|
|
126
|
-
|
|
122
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.4.0.6...v.4.0.7)
|
|
127
123
|
|
|
128
|
-
|
|
124
|
+
**Closed issues:**
|
|
129
125
|
|
|
130
|
-
|
|
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)*
|