rom 4.2.1 → 5.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ae17a0a7246a98135642fdab09437a9c7efd01f85d9458e9a58ed9cafd2a1cc
4
- data.tar.gz: 78d6820f045d7b0f216daf1d4a74460605b6851f196e6d54f91d4140a9a71375
3
+ metadata.gz: 8c0d0fd89fe77add5b26553c15d3db89c3e988de48e8358177ce4b758317a1df
4
+ data.tar.gz: efdfbeffe1a0c910d0827bfa2cf86a83162d0b2894711a4a48e2d004c54eb547
5
5
  SHA512:
6
- metadata.gz: bdd827fe95c1b89944c76767ee3395869f45d9cf6dc92410d9dd8811a993205f0629a48579c2fa4d253528f4f4eb282bfca78689cc49ff1ea6a703205d4ec4d9
7
- data.tar.gz: d9513f4f005e008c8606992aa4b17ad23671607bf9104ec367954e60ffd5b36c1bb79fe808fafad5327df435db466b3ea7fd8654ef70612a643d71d557b5e242
6
+ metadata.gz: 449641ab0a511ed4d96e8c0e9f943cc91099548e6c713ed9c53d5fe6e8bc5695bd307ebaf20cb9ad464145bc2c83320787586ac5c9f2abc9fe6c67d65dec6e54
7
+ data.tar.gz: a41eed2d957176bf29b19702daf49c79fafd1616c988ede84b7177f67ad4238b118c2d7e6089aa1a6e6cb8f1fa404c401da70815affbc97cb7f5ba623fe4ef93
@@ -1,3 +1,34 @@
1
+ # 5.0.0 2019-04-24
2
+
3
+ * All version numbers have been inlined to `5.0.0`
4
+ * `rom-mapper` gem has been retired and `ROM::Mapper` is now part of `rom-core`
5
+
6
+ ## rom
7
+
8
+ * `rom-core` bumped to `5.0.0` (solnic)
9
+ * `rom-changeset` bumped to `5.0.0` (solnic)
10
+ * `rom-repository` bumped to `5.0.0` (solnic)
11
+ * `rom-mapper` was moved to `core` under `rom/mapper` so it's no longer a runtime dependency (solnic)
12
+
13
+ ## rom-core
14
+
15
+ * [BREAKING] `Types::Int` is now `Types::Integer` (flash-gordon)
16
+ * [BREAKING] Attribute aliases are no longer stored in attribute's type meta (waiting-for-dev)
17
+ * Updated to work with `dry-types 1.0.0` (flash-gordon)
18
+ * Updated to work with `dry-struct 1.0.0` (flash-gordon)
19
+ * Updated to work with `dry-initializer 3.0.0` (solnic)
20
+
21
+ ## rom-repository
22
+
23
+ * [BREAKING] Support for ruby <= `2.4` was dropped (flash-gordon)
24
+ * [BREAKING] `Repository::Root#aggregate` was removed in favor of `Relation#combine` (v-kolesnikov)
25
+
26
+ ## rom-changeset
27
+
28
+ *No changes*
29
+
30
+ [Compare v4.2.1...v5.0.0](https://github.com/rom-rb/rom/compare/v4.2.1...v5.0.0)
31
+
1
32
  # 4.2.1 2018-05-03
2
33
 
3
34
  * `rom-core` updated to `['~> 4.2', '>= 4.2.1']`
data/README.md CHANGED
@@ -1,15 +1,13 @@
1
1
  [gem]: https://rubygems.org/gems/rom
2
2
  [travis]: https://travis-ci.org/rom-rb/rom
3
- [gemnasium]: https://gemnasium.com/rom-rb/rom
4
3
  [codeclimate]: https://codeclimate.com/github/rom-rb/rom
5
- [coveralls]: https://coveralls.io/r/rom-rb/rom
6
4
  [inchpages]: http://inch-ci.org/github/rom-rb/rom/
5
+ [chat]: https://rom-rb.zulipchat.com
7
6
 
8
- # rom [![Gitter chat](https://badges.gitter.im/rom-rb/chat.svg)](https://gitter.im/rom-rb/chat)
7
+ # rom [![Join the chat at https://rom-rb.zulipchat.com](https://img.shields.io/badge/rom--rb-join%20chat-942283.svg)][chat]
9
8
 
10
9
  [![Gem Version](https://badge.fury.io/rb/rom.svg)][gem]
11
10
  [![Build Status](https://travis-ci.org/rom-rb/rom.svg?branch=master)][travis]
12
- [![Dependency Status](https://gemnasium.com/rom-rb/rom.svg)][gemnasium]
13
11
  [![Code Climate](https://codeclimate.com/github/rom-rb/rom/badges/gpa.svg)][codeclimate]
14
12
  [![Test Coverage](https://codeclimate.com/github/rom-rb/rom/badges/coverage.svg)][codeclimate]
15
13
  [![Inline docs](http://inch-ci.org/github/rom-rb/rom.svg?branch=master&style=flat)][inchpages]
@@ -135,8 +133,8 @@ There are other gems within the rom ecosystem that you will find useful:
135
133
  ## Community
136
134
 
137
135
  * [Official Blog](http://rom-rb.org/blog/)
138
- * [Discussion Forum](http://discuss.rom-rb.org)
139
- * [Gitter Channel](https://gitter.im/rom-rb/chat)
136
+ * [Discussion Forum](http://discourse.rom-rb.org)
137
+ * [Chat](https://rom-rb.zulipchat.com)
140
138
 
141
139
  ## Credits
142
140
 
data/lib/rom.rb CHANGED
@@ -1,4 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rom-core'
2
- require 'rom-mapper'
3
4
  require 'rom-repository'
4
5
  require 'rom-changeset'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ROM
2
- VERSION = '4.2.1'.freeze
4
+ VERSION = '5.0.0'
3
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rom
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.1
4
+ version: 5.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Solnica
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-05 00:00:00.000000000 Z
11
+ date: 2019-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rom-core
@@ -16,60 +16,42 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '4.2'
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 4.2.1
19
+ version: '5.0'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
24
  - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: '4.2'
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: 4.2.1
26
+ version: '5.0'
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: rom-repository
35
29
  requirement: !ruby/object:Gem::Requirement
36
30
  requirements:
37
31
  - - "~>"
38
32
  - !ruby/object:Gem::Version
39
- version: '2.0'
40
- - - ">="
41
- - !ruby/object:Gem::Version
42
- version: 2.0.2
33
+ version: '5.0'
43
34
  type: :runtime
44
35
  prerelease: false
45
36
  version_requirements: !ruby/object:Gem::Requirement
46
37
  requirements:
47
38
  - - "~>"
48
39
  - !ruby/object:Gem::Version
49
- version: '2.0'
50
- - - ">="
51
- - !ruby/object:Gem::Version
52
- version: 2.0.2
40
+ version: '5.0'
53
41
  - !ruby/object:Gem::Dependency
54
42
  name: rom-changeset
55
43
  requirement: !ruby/object:Gem::Requirement
56
44
  requirements:
57
45
  - - "~>"
58
46
  - !ruby/object:Gem::Version
59
- version: '1.0'
60
- - - ">="
61
- - !ruby/object:Gem::Version
62
- version: 1.0.2
47
+ version: '5.0'
63
48
  type: :runtime
64
49
  prerelease: false
65
50
  version_requirements: !ruby/object:Gem::Requirement
66
51
  requirements:
67
52
  - - "~>"
68
53
  - !ruby/object:Gem::Version
69
- version: '1.0'
70
- - - ">="
71
- - !ruby/object:Gem::Version
72
- version: 1.0.2
54
+ version: '5.0'
73
55
  - !ruby/object:Gem::Dependency
74
56
  name: rake
75
57
  requirement: !ruby/object:Gem::Requirement
@@ -128,8 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
128
110
  - !ruby/object:Gem::Version
129
111
  version: '0'
130
112
  requirements: []
131
- rubyforge_project:
132
- rubygems_version: 2.7.3
113
+ rubygems_version: 3.0.3
133
114
  signing_key:
134
115
  specification_version: 4
135
116
  summary: Persistence and mapping toolkit for Ruby