neo4j 8.0.0.rc.1 → 8.0.0.rc.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e2f958f5ab64ca55f0c33a3bcd9680773a604c54
4
- data.tar.gz: 6d61a3310ec123a99703b1958072d97a57c279be
3
+ metadata.gz: ec796ebdd559718bc9e676e1d7e6b9d6a3d61a75
4
+ data.tar.gz: 79205b437861d5d425d03a459c64f569c7eb5d8f
5
5
  SHA512:
6
- metadata.gz: 946355cd23bf4c589dbaa651d73896ebc7a87fb9717d8827a4f3f4c0e801fb67ba2299875f2f3c5edc970bd3f1183e52c8573cce5eb2405d73c2b8d87760625c
7
- data.tar.gz: f9e7e33a203f1f32e85f4ff3eab979e216b2a8b09b8901c7be9378e8f2d5cadc2f8385abe7d648f90dd898e52870305047083d65378ad5d73c00b07c4a95c218
6
+ metadata.gz: 9d72b20484dbaf7d9f92acf28937f9d6566bb7f0ebfd296304c537361db791059e47be94c5eeeb5b76b7fcc6add715d9cae0243e23f8d5aca36dcafbcf22ad83
7
+ data.tar.gz: 49cd9a0371d427292e52a4781b309b05964ed002213775ffce8a2ee749379bce61d9d71cdd2b29613b96d6f56cfdf07f1fedd0c433d86d59c486cac08328f846
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
3
3
  This file should follow the standards specified on [http://keepachangelog.com/]
4
4
  This project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## [8.0.0.rc.2] 2016-10-07
7
+
8
+ ### Fixed
9
+
10
+ - Pending migration check was failing when there are no migrations
11
+
6
12
  ## [8.0.0.rc.1] 2016-10-04
7
13
 
8
14
  ### Changed
@@ -7,7 +7,8 @@ module Neo4j
7
7
  end
8
8
 
9
9
  def call(env)
10
- mtime = Neo4j::Migrations::Runner.latest_migration.version.to_i
10
+ latest_migration = Neo4j::Migrations::Runner.latest_migration
11
+ mtime = latest_migration ? latest_migration.version.to_i : 0
11
12
  if @last_check < mtime
12
13
  Neo4j::Migrations.check_for_pending_migrations!
13
14
  @last_check = mtime
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '8.0.0.rc.1'
2
+ VERSION = '8.0.0.rc.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neo4j
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.0.0.rc.1
4
+ version: 8.0.0.rc.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andreas Ronge, Brian Underwood, Chris Grigg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-04 00:00:00.000000000 Z
11
+ date: 2016-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter
@@ -372,4 +372,3 @@ signing_key:
372
372
  specification_version: 4
373
373
  summary: A graph database for Ruby
374
374
  test_files: []
375
- has_rdoc: true