valkyrie 1.5.0.RC2 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +47 -0
  3. data/lib/valkyrie/version.rb +1 -1
  4. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: a34c6f01c77ee732d90f66322562160085e37800237dc332b11f7e2746988061
4
- data.tar.gz: 5ac4dd5720a759fd1f9ce09591ad8010e9696ea4fda96dc20d6121cd72c37b8b
2
+ SHA1:
3
+ metadata.gz: 61b7e04b31c2d342dc23c2a992a3591127100a83
4
+ data.tar.gz: e52992172aa6f6a7c0b6f0109d0ddf36d97e1af9
5
5
  SHA512:
6
- metadata.gz: 23775f00829a543946ef3bcdd506ae9445bbf790b4e3dbc1da2e4a879ce013ef21d91b6c974f7a8a5f5db29f252148431ea19324339815a79180ea43b72ed4dc
7
- data.tar.gz: 3cc9e68db536cb2a2f88de674b00a810884fc7dce58b3abc90c34405cc3a5e7792484e43e530e1155713799512366747f36b719f1963137de57092320f4914dc
6
+ metadata.gz: 572780616a4d8ac782b405f7bee713590789be2b86c3cba5e004701060713561ebf8d71ee4336a17e39eb52f7b2147dce7229933240748533c352870ba1d931c
7
+ data.tar.gz: bfe2c60c9facf6224abc8c411b7bd9d88f832bf80c00f8c4b0a33c4a8c4fdb03faff4152b6ff6b856c72ce0234e88a5ee165f3caa104b03449f99438e0ff0a8a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,50 @@
1
+ # v1.5.0 2018-02-06
2
+
3
+ ## Changes since last release
4
+
5
+ * Fix solr casting when an updated_at key isn't present in the solr document.
6
+ [tpendragon](https://github.com/tpendragon)
7
+ * Add missing query service requirement to persister shared specs
8
+ [cjcolvar](https://github.com/cjcolvar)
9
+ * Provide a warning when postgres adapter overwrites an ID, deprecate this
10
+ behavior so it will throw an exception in the future.
11
+ [cam156](https://github.com/cam156)
12
+ [hackmastera](https://github.com/hackmastera)
13
+ [tpendragon](https://github.com/tpendragon)
14
+ * Add support for passing just an ID to find_inverse_references_by
15
+ [cam156](https://github.com/cam156)
16
+ [hackmastera](https://github.com/hackmastera)
17
+ * Fix memory adapter raising an exception in find_by_alternate_identifier when
18
+ there are resources without the alternate_identifier attribute.
19
+ [jeremyf](https://github.com/jeremyf)
20
+ * Provide a warning when using the postgres adapter without manually providing
21
+ the pg gem, so it can be an optional dependency in 2.0.0.
22
+ [hackmastera](https://github.com/hackmastera)
23
+ * Provide guidance in specs on how to define alternate_ids
24
+ [cjcolvar](https://github.com/cjcolvar)
25
+ * Upload files to Fedora using form/multipart.
26
+ [tpendragon](https://github.com/tpendragon)
27
+ * Improve CompositePersister documentation.
28
+ [tpendragon](https://github.com/tpendragon)
29
+ * Add a Valkyrie::Types::Params::ID type which handles when an HTML form passes
30
+ an empty string value.
31
+ [tpendragon](https://github.com/tpendragon)
32
+ * Deprecate .member on Valkyrie::Types::Array & Set
33
+ [tpendragon](https://github.com/tpendragon)
34
+ * Fix updated_at not being set correctly for the Solr adapter, fix shared specs.
35
+ [tpendragon](https://github.com/tpendragon)
36
+
37
+ Additional thanks to the following for code review and issue reports leading to
38
+ this release:
39
+
40
+ [awead](https://github.com/awead)
41
+ [escowles](https://github.com/escowles)
42
+ [kelynch](https://github.com/kelynch)
43
+ [mbklein](https://github.com/mbklein)
44
+ [mjgiarlo](https://github.com/mjgiarlo)
45
+ [no-reply](https://github.com/no-reply)
46
+ [revgum](https://github.com/revgum)
47
+
1
48
  # v1.5.0 RC2 2018-02-01
2
49
 
3
50
  ## Changes since last release
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Valkyrie
3
- VERSION = "1.5.0.RC2"
3
+ VERSION = "1.5.0"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: valkyrie
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0.RC2
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Trey Pendragon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-02-03 00:00:00.000000000 Z
11
+ date: 2019-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-struct
@@ -602,12 +602,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
602
602
  version: '0'
603
603
  required_rubygems_version: !ruby/object:Gem::Requirement
604
604
  requirements:
605
- - - ">"
605
+ - - ">="
606
606
  - !ruby/object:Gem::Version
607
- version: 1.3.1
607
+ version: '0'
608
608
  requirements: []
609
609
  rubyforge_project:
610
- rubygems_version: 2.7.7
610
+ rubygems_version: 2.6.14
611
611
  signing_key:
612
612
  specification_version: 4
613
613
  summary: An ORM using the Data Mapper pattern, specifically built to solve Digital