Skip to content

Releases: arangodb/arangojs

v3.4.3

21 Apr 12:57
Compare
Choose a tag to compare

Changes:

  • fixed a bug in collection.import (see #27).

v3.4.2

21 Apr 12:55
Compare
Choose a tag to compare

Changes:

  • Fixed a bug in edgeCollection.save (see #19).

v3.4.1

21 Apr 12:55
Compare
Choose a tag to compare

Changes:

  • Fixed a bug in edgeCollection.save (see #19).

v3.4.0

18 Mar 10:23
Compare
Choose a tag to compare

Changes:

  • callbacks passed to route methods now receive the response object as a third argument

v3.3.1

11 Mar 16:06
Compare
Choose a tag to compare

Changes:

  • Added back missing default value for type option in imports. Fixes #21.

v3.3.0

18 Feb 14:56
Compare
Choose a tag to compare

Changes:

  • Renamed "endpoints" to "routes" to avoid confusion with the HTTP API for managing endpoints.
  • Added support for manipulating indexes.
  • Added support for geo-spatial queries.
  • Added support for fulltext queries.

v3.2.0

18 Feb 12:42
Compare
Choose a tag to compare

Changes:

  • Replaced database.truncate(excludeSystem=false) with database.truncateAll.
  • Replaced database.collections(excludeSystem=false) with database.allCollections.
  • Removed the excludeSystem option from database.truncate and database.collections (default is now true).
  • Added support for AQL user functions API.
  • Added database.createEdgeCollection as convenience method for database.createCollection(type=3).
  • Added support for line-delimited JSON in collection.import.
  • All functions that accept document handles now also accept document/edge/vertex objects instead.
  • Improved documentation.

v3.1.0

17 Feb 14:15
Compare
Choose a tag to compare

Changes:

  • Changed the bulk import API so the type option defaults to "auto" if not explicitly set.

v3.0.0

17 Feb 14:14
Compare
Choose a tag to compare

First official release of the new ArangoDB JavaScript client.

Rewritten from scratch with a node-friendly API.

v3.0.0-rc3

17 Feb 14:11
Compare
Choose a tag to compare
v3.0.0-rc3 Pre-release
Pre-release

Final release candidate.

  • Added support for transactions.
  • Added support for bulk imports.
  • Added support for traversals.
  • Fixed collection API not passing through options.