1
0
Fork 0
Commit Graph

34781 Commits

Author SHA1 Message Date
jsteemann 565009db68 remove unused ctor 2016-11-08 16:46:22 +01:00
Wilfried Goesgens 82a61cab64 implement stripping for client packages 2016-11-08 16:32:57 +01:00
Jan Steemann 836905d341 Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-11-08 16:09:18 +01:00
Jan Steemann f0f90bc914 small fixes for traversal explain output 2016-11-08 16:08:58 +01:00
hkernbach 4f7b5c2249 optimized resizing 2016-11-08 15:39:49 +01:00
Jan Steemann 8504246217 changed behavior of toJSON() function when serializing an object before saving it in the database
if an object provides a toJSON() function, this function is still called for serializing it.
the change is that the result of toJSON() is not stringified anymore, but saved as is. previous
versions of ArangoDB called toJSON() and after that additionally stringified its result.
2016-11-08 15:39:06 +01:00
Jan Steemann c1741ea50c updated CHANGELOG 2016-11-08 15:38:59 +01:00
Jan Christoph Uhde 2dc309db38 make protocol switching less verbose 2016-11-08 15:18:50 +01:00
Mark 94b76ed2f5 Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-11-08 14:08:17 +01:00
Mark 38dac8d774 fixed doku: get collection properties - added replicationFactor 2016-11-08 14:07:59 +01:00
Simran Brucherseifer bb5df3b73b Role is now SINGLE instead of UNDEFINED for a single instance 2016-11-08 13:50:32 +01:00
Max Neunhoeffer 0723cc5325 Merge branch 'devel' of ssh://github.com/ArangoDB/ArangoDB into devel 2016-11-08 13:24:02 +01:00
Max Neunhoeffer 84f4b250d1 Try to fix gmtime_r usage on Windows. 2016-11-08 13:23:48 +01:00
Alan Plum 0779b99d99
Fix Foxx development mode HTTP API 2016-11-08 13:23:24 +01:00
hkernbach fcabefbe12 optimized docs view 2016-11-08 11:42:26 +01:00
Jan Steemann 8b4e86b0d0 version detection fixes 2016-11-08 11:25:57 +01:00
Max Neunhoeffer 0ac4ec6ddf Merge branch 'devel' of ssh://github.com/ArangoDB/ArangoDB into devel 2016-11-08 10:36:42 +01:00
Max Neunhoeffer 25c3f8b0e3 Fix DECODE_REV. 2016-11-08 10:36:18 +01:00
Jan Steemann 5324a6bbe8 fix _rev handling when creating collections 2016-11-08 10:29:53 +01:00
Wilfried Goesgens c086eaf3d8 Merge branch 'devel' of github.com:arangodb/ArangoDB into devel 2016-11-08 10:27:43 +01:00
Wilfried Goesgens 8e53bfb4ab make debian handle the configfiles so user edits don't get overwritten 2016-11-08 10:27:26 +01:00
Wilfried Goesgens 5dba48f933 try to force set the strip command 2016-11-08 10:26:31 +01:00
Max Neunhoeffer b7314cfba9 Merge branch 'devel' of ssh://github.com/ArangoDB/ArangoDB into devel 2016-11-08 10:25:54 +01:00
Max Neunhoeffer 6d5f70b6f4 Add a global DECODE_REV function in JS. 2016-11-08 10:25:35 +01:00
hkernbach 1f76be4506 added missing cleanup to mac build 2016-11-08 09:59:51 +01:00
hkernbach 60a9ec70cf Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-11-08 09:32:42 +01:00
hkernbach e841946e82 optimized mac build process 2016-11-08 09:32:35 +01:00
jsteemann 5b054a7db7 cosmetics 2016-11-07 21:17:03 +01:00
Frank Celler 192516f4d7 added -D 2016-11-07 17:20:56 +01:00
Frank Celler a1003cb5d3 cosmetics 2016-11-07 17:20:56 +01:00
Kaveh Vahedipour cfdb7ababa Old agency startup in documentation of Local/Distributed deployments 2016-11-07 15:38:26 +01:00
Kaveh Vahedipour 90c3af58cc Old agency startup in documentation of Local/Distributed deployments 2016-11-07 15:31:05 +01:00
hkernbach d12410f59d fixed package run script mac os x 2016-11-07 15:20:50 +01:00
Simran Brucherseifer 2154656d95 Docs: 3.1 Google Custom Search 2016-11-07 13:15:28 +01:00
Kaveh Vahedipour 1c3e8c1205 Supervision gracePeriod shorter 2016-11-07 10:12:13 +00:00
Wilfried Goesgens 4968d2f186 add 3.1 to the dropdown 2016-11-07 11:03:41 +01:00
Alan Plum f5ea7d4bf7
Add graphql-sync to CHANGELOG 2016-11-06 13:32:41 +01:00
Alan Plum 3e49650d17
Bump graphql-sync to 0.6.x compat 2016-11-06 13:30:03 +01:00
jsteemann 5f65a9ed4f allow more control over handling of pre-3.1 _rev values
this changes the server startup option `--database.check-30-revisions` from a boolean (true/false)
parameter to a string parameter with the following possible values:

- "fail":
  will validate _rev values of 3.0 collections on collection loading and throw an exception when invalid _rev values are found.
  in this case collections with invalid _rev values are marked as corrupted and cannot be used in the ArangoDB 3.1 instance.
  the fix procedure for such collections is to export the collections from 3.0 database with arangodump and restore them in 3.1 with arangorestore.
  collections that do not contain invalid _rev values are marked as ok and will not be re-checked on following loads.
  collections that contain invalid _rev values will be re-checked on following loads.

- "true":
  will validate _rev values of 3.0 collections on collection loading and print a warning when invalid _rev values are found.
  in this case collections with invalid _rev values can be used in the ArangoDB 3.1 instance.
  however, subsequent operations on documents with invalid _rev values may silently fail or fail with explicit errors.
  the fix procedure for such collections is to export the collections from 3.0 database with arangodump and restore them in 3.1 with arangorestore.
  collections that do not contain invalid _rev values are marked as ok and will not be re-checked on following loads.
  collections that contain invalid _rev values will be re-checked on following loads.

- "false":
  will not validate _rev values on collection loading and not print warnings.
  no hint is given when invalid _rev values are found.
  subsequent operations on documents with invalid _rev values may silently fail or fail with explicit errors.
  this setting does not affect whether collections are re-checked later.
  collections will be re-checked on following loads if `--database.check-30-revisions` is later set to either `true` or `fail`.

The change also suppresses warnings that were printed when collections were restored using arangorestore, and the restore
data contained invalid _rev values. Now these warnings are suppressed, and new HLC _rev values are generated for these documents
as before.
2016-11-04 23:17:01 +01:00
Alan Plum ccb251e1f5
Better handling of routers & middleware in Swagger
Fixes #2148.
2016-11-04 20:06:08 +01:00
Michael Hackstein 1c34e0e14b Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-11-04 18:15:35 +01:00
Michael Hackstein a7f63b3a53 Removed dead code of TraverserExpressions. They have been replaced by native AQL expressions everywhere. 2016-11-04 18:15:04 +01:00
Wilfried Goesgens 446713f9d3 add safeguard against unstripped packages 2016-11-04 15:45:48 +01:00
Wilfried Goesgens 4a9cd98446 add safeguard against unstripped packages 2016-11-04 15:42:42 +01:00
hkernbach 0e32f3a41e Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-11-04 14:51:26 +01:00
hkernbach 2dce0a9c8b js semistandard 2016-11-04 14:51:06 +01:00
Kaveh Vahedipour 256245392b Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-11-04 11:42:21 +01:00
Kaveh Vahedipour 62492195e9 Recapsulating MUTEX in key value Store 2016-11-04 11:42:08 +01:00
Wilfried Goesgens 7035338911 Change build-directory name when building enterprise packages 2016-11-04 09:56:13 +01:00
hkernbach 5efb3d2ce8 ui added regex filter 2016-11-04 09:47:15 +01:00