neo4j 9.6.1 → 9.6.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
  SHA256:
3
- metadata.gz: a6e88125cea7de8e3d8bcbf895b42ace3cc5ec6b73cbe7be3c443a0002e7129c
4
- data.tar.gz: 5aaf29694f97c215b6359627847f4e1d28ab2f09471534bc964f6ec0693ac9a6
3
+ metadata.gz: a03fea8bd94bd82ee1f7dc8379be2d7b32522255094efa953ee916dbbd98e24d
4
+ data.tar.gz: 974ce13ddb60fd778a425aad98590d858af5ed3a1424f6f818bb28d3b72fd92f
5
5
  SHA512:
6
- metadata.gz: 90451a7ba7cc61dd59bd80ccdb3384edf74ea050e9917303512dd45a0143d5fb258b8c0dc8f5306dfc0f162d010bbc2d30cc9784f4a90f0a5c85f8b89f9b5781
7
- data.tar.gz: a4de282130c9975655fb6e8a7fee7e7621b9ac071319d8594cb68f29cec977b7c88f7508cc84364bf164ae91aa1d1edae4b950d0cdc222705631b5930d96fdb1
6
+ metadata.gz: cbf90843f2a0d208170a8e232141d9e8f49a259b62e7d3ac51a23a951c906e9bb785105c49a8372198d0628cc70db25c64c40eeabec9bd6115d6694be2afaafb
7
+ data.tar.gz: d956459329732c7578d2fb7a58754dbce96811145baec33bd9b83812e13a91311f9aa84065a0ba5d0c103e16aff4fe7b025ddca93556e5585d023ea3200ceac3
@@ -3,6 +3,13 @@ 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
+ ## [9.6.2] 2020-04-09
7
+
8
+ ## Fixes
9
+
10
+ - Perform separate tranactions around schema-load and migrations-update
11
+ to allow the seabolt driver to load schemas (#1599)
12
+
6
13
  ## [9.6.1] 2019-12-18
7
14
 
8
15
  ## Fixed
@@ -95,14 +95,12 @@ COMMENT
95
95
  require 'neo4j/migrations/schema'
96
96
 
97
97
  args.with_defaults(remove_missing: false)
98
-
99
98
  schema_data = YAML.safe_load(File.read(SCHEMA_YAML_PATH), [Symbol])
100
-
101
99
  Neo4j::Core::CypherSession::Adaptors::Base.subscribe_to_query(&method(:puts))
102
-
103
100
  Neo4j::ActiveBase.run_transaction do
104
101
  Neo4j::Migrations::Schema.synchronize_schema_data(Neo4j::ActiveBase.current_session, schema_data, args[:remove_missing])
105
-
102
+ end
103
+ Neo4j::ActiveBase.run_transaction do
106
104
  runner = Neo4j::Migrations::Runner.new
107
105
  runner.mark_versions_as_complete(schema_data[:versions]) # Run in test mode?
108
106
  end
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '9.6.1'
2
+ VERSION = '9.6.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: 9.6.1
4
+ version: 9.6.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: 2019-12-19 00:00:00.000000000 Z
11
+ date: 2020-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -222,7 +222,7 @@ dependencies:
222
222
  version: '0'
223
223
  description: 'A Neo4j OGM (Object-Graph-Mapper) for Ruby heavily inspired by ActiveRecord.
224
224
 
225
- '
225
+ '
226
226
  email: andreas.ronge@gmail.com, public@brian-underwood.codes, chris@subvertallmedia.com
227
227
  executables:
228
228
  - neo4j-jars
@@ -381,8 +381,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
381
381
  - !ruby/object:Gem::Version
382
382
  version: '0'
383
383
  requirements: []
384
- rubyforge_project: neo4j
385
- rubygems_version: 2.7.6
384
+ rubygems_version: 3.1.2
386
385
  signing_key:
387
386
  specification_version: 4
388
387
  summary: A graph database for Ruby