rom-http 0.6.0.rc1 → 0.6.0
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/CHANGELOG.md +5 -4
- data/Gemfile +0 -1
- data/lib/rom/http/version.rb +1 -1
- data/rom-http.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ceb0d5ad55a0025e591bbd6d1faa80c61daf1dcc
|
|
4
|
+
data.tar.gz: fa8e226b0edc81e712507776b0be4e6b5a107ea0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12cad00ba08382a6f334e872edc03be82ec1e337705324835227ea073d4970288ffb0478119c085eb5e011e82cf3dba859b707c20309eb75b2d7ea8792b6e022
|
|
7
|
+
data.tar.gz: 055fb8f3a1543398ba921a459066d852f3eca1df5912afb2dfd3337b18b70f49a57552e9b281c314fc568a7f2fe7d0a8a95c04c119510a4b4cc59a79eed50213
|
data/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
# v0.6.0
|
|
2
|
-
|
|
1
|
+
# v0.6.0 2017-02-06
|
|
2
|
+
### Changed
|
|
3
3
|
- Make schemas mandatory and use schema API from ROM core (AMHOL)
|
|
4
4
|
- Generate transformer using schema (AMHOL)
|
|
5
5
|
- Removed rbx-2 support (solnic)
|
|
6
6
|
- Add Dataset#base_path and Relation#primary_key (AMHOL)
|
|
7
|
-
- Updated to work with ROM 3.0
|
|
7
|
+
- Updated to work with ROM 3.0 (maximderbin)
|
|
8
8
|
- Removed ruby 2.1 support (maximderbin)
|
|
9
9
|
- Fix Relation#primary_key when schema defines alias (AMHOL)
|
|
10
10
|
- Transform keys on insert and update (maximderbin)
|
|
11
|
+
- Remove `rom-support` dependency (maximderbin)
|
|
11
12
|
|
|
12
|
-
[Compare v0.5.0...v0.6.0](https://github.com/rom-rb/rom-http/compare/v0.5.0...
|
|
13
|
+
[Compare v0.5.0...v0.6.0](https://github.com/rom-rb/rom-http/compare/v0.5.0...v0.6.0)
|
|
13
14
|
|
|
14
15
|
# v0.5.0 2016-08-08
|
|
15
16
|
### Changed
|
data/Gemfile
CHANGED
data/lib/rom/http/version.rb
CHANGED
data/rom-http.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.require_paths = ['lib']
|
|
20
20
|
|
|
21
21
|
spec.add_runtime_dependency 'concurrent-ruby'
|
|
22
|
-
spec.add_runtime_dependency 'rom', '~> 3.0.0
|
|
22
|
+
spec.add_runtime_dependency 'rom', '~> 3.0.0'
|
|
23
23
|
spec.add_runtime_dependency 'dry-core', '~> 0.2', '>= 0.2.3'
|
|
24
24
|
spec.add_runtime_dependency 'dry-equalizer', '~> 0.2'
|
|
25
25
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rom-http
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.0
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Piotr Solnica
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2017-
|
|
13
|
+
date: 2017-02-07 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: concurrent-ruby
|
|
@@ -32,14 +32,14 @@ dependencies:
|
|
|
32
32
|
requirements:
|
|
33
33
|
- - "~>"
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
|
-
version: 3.0.0
|
|
35
|
+
version: 3.0.0
|
|
36
36
|
type: :runtime
|
|
37
37
|
prerelease: false
|
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
39
39
|
requirements:
|
|
40
40
|
- - "~>"
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 3.0.0
|
|
42
|
+
version: 3.0.0
|
|
43
43
|
- !ruby/object:Gem::Dependency
|
|
44
44
|
name: dry-core
|
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -190,9 +190,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
190
190
|
version: '0'
|
|
191
191
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
192
192
|
requirements:
|
|
193
|
-
- - "
|
|
193
|
+
- - ">="
|
|
194
194
|
- !ruby/object:Gem::Version
|
|
195
|
-
version:
|
|
195
|
+
version: '0'
|
|
196
196
|
requirements: []
|
|
197
197
|
rubyforge_project:
|
|
198
198
|
rubygems_version: 2.5.1
|