Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

101,886

Downloads of v 2.2.2.20150617:

422

Last Update:

17 Jun 2015

Package Maintainer(s):

Software Author(s):

  • Emil Eifrem
  • Johan Svensson

Tags:

neo4j graph community database nosql

Neo4j Community Edition

This is not the latest version of Neo4j Community Edition available.

  • 1
  • 2
  • 3

2.2.2.20150617 | Updated: 17 Jun 2015

Downloads:

101,886

Downloads of v 2.2.2.20150617:

422

Maintainer(s):

Software Author(s):

  • Emil Eifrem
  • Johan Svensson

Neo4j Community Edition 2.2.2.20150617

This is not the latest version of Neo4j Community Edition available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Unknown


Verification Testing Unknown


Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Neo4j Community Edition, run the following command from the command line or from PowerShell:

>

To upgrade Neo4j Community Edition, run the following command from the command line or from PowerShell:

>

To uninstall Neo4j Community Edition, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade neo4j-community -y --source="'INTERNAL REPO URL'" --version="'2.2.2.20150617'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade neo4j-community -y --source="'INTERNAL REPO URL'" --version="'2.2.2.20150617'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install neo4j-community
  win_chocolatey:
    name: neo4j-community
    version: '2.2.2.20150617'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'neo4j-community' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.2.2.20150617'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller neo4j-community
{
    Name     = "neo4j-community"
    Version  = "2.2.2.20150617"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'neo4j-community':
  ensure   => '2.2.2.20150617',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 17 Jun 2015.

Description

Neo4j is the world's leading Graph Database. It is a high performance graph store with all the features expected of a mature and robust database, like a friendly query language and ACID transactions. The programmer works with a flexible network structure of nodes and relationships rather than static tables yet enjoys all the benefits of enterprise-quality database. For many applications, Neo4j offers orders of magnitude performance benefits compared to relational DBs.

Note - This chocolatey package is not created or maintained by Neo4j, however the installation media used is an official distribution from Neo4j

  • Requires OpenJDK 7/8 or Oracle Java 7/8 to be installed as per http://neo4j.com/docs/stable/deployment-requirements.html#_software
  • This package only installs the 64 bit version
  • This chocolatey package supports Package Parameters;
    /Install:<Install Path>
    /ImportNeoProperties:<Path to file>
    /ImportNeoServerProperties:<Path to file>
    /ImportServiceProperties:<Path to file>

e.g. choco install neo4j-community -version 2.2.2.20150617 -packageParameters "/Install:C:\Apps\Neo"

Full information is available at the pacakge project site https://github.com/glennsarti/neo4j-community-chocolatey


tools\chocolateyInstall.ps1
$PackageName = 'neo4j-community'
# Per-package parameters
$downloadUrl = 'http://neo4j.com/artifact.php?name=neo4j-community-2.2.2-windows.zip'
$md5Checksum = '1c5c35ab9aa2a9798193bafe79e72361'
$neozipSubdir = 'neo4j-community-2.2.2'
$neoServerApiJarSuffix = '2.2.2'

try {
  # Taken from https://github.com/chocolatey/chocolatey/wiki/How-To-Parse-PackageParameters-Argument
  $arguments = @{};
  
  # Now, we can use the $env:chocolateyPackageParameters inside the Chocolatey package
  $packageParameters = $env:chocolateyPackageParameters;

  # Default the values
  $InstallDir = Get-BinRoot
  $InstallDir = Join-Path -Path $InstallDir -ChildPath $PackageName
  $ImportNeoProperties = ""
  $ImportNeoServerProperties = ""
  $ImportServiceProperties = ""
  
  # Now, let’s parse the packageParameters using good old regular expression
  if($packageParameters) {
      $MATCH_PATTERN = "\/([a-zA-Z]+):([`"'])?([a-zA-Z0-9- _\\:\.]+)([`"'])?"
      $PARAMATER_NAME_INDEX = 1
      $VALUE_INDEX = 3

      if($packageParameters -match $MATCH_PATTERN ){
          $results = $packageParameters | Select-String $MATCH_PATTERN -AllMatches
          $results.matches | % {
            $arguments.Add(
                $_.Groups[$PARAMATER_NAME_INDEX].Value.Trim(),
                $_.Groups[$VALUE_INDEX].Value.Trim())
        }
      }
      else
      {
        Throw "Package Parameters were found but were invalid (REGEX Failure)";
      }

      if($arguments.ContainsKey("install")) {
          Write-Host "Install Argument Found";
          $InstallDir = $arguments["install"];
      }

      if($arguments.ContainsKey("importneoproperties")) {
          Write-Host "ImportNeoProperties Argument Found";
          $ImportNeoProperties = $arguments["importneoproperties"];
      }

      if($arguments.ContainsKey("importneoserverproperties")) {
          Write-Host "ImportNeoServerProperties Argument Found";
          $ImportNeoServerProperties = $arguments["importneoserverproperties"];
      }

      if($arguments.ContainsKey("importserviceproperties")) {
          Write-Host "ImportServiceProperties Argument Found";
          $ImportServiceProperties = $arguments["importserviceproperties"];
      }
  } else {
      Write-Host "No Package Parameters Passed in";
  }

  $silentArgs = "/install:" + $InstallDir
  if ($ImportNeoProperties -ne "") {
    $silentArgs += " /importneoproperties:" + $ImportNeoProperties
  }
  if ($ImportNeoServerProperties -ne "") {
    $silentArgs += " /importneoserverproperties:" + $ImportNeoServerProperties
  }
  if ($ImportServiceProperties -ne "") {
    $silentArgs += " /importserviceproperties:" + $ImportServiceProperties
  }
  Write-Debug "This would be the Chocolatey Silent Arguments: $silentArgs"

  # Sanity Checks
  If ($ImportNeoProperties -ne "") {
    If (!(Test-Path -Path $ImportNeoProperties)) { Throw "Could not find the NeoProperties file to import. $ImportNeoProperties" }
  }
  If ($ImportNeoServerProperties -ne "") {
    If (!(Test-Path -Path $ImportNeoServerProperties)) { Throw "Could not find the NeoServerProperties file to import. $ImportNeoServerProperties" }
  }
  If ($ImportServiceProperties -ne "") {
    If (!(Test-Path -Path $ImportServiceProperties)) { Throw "Could not find the ServiceProperties file to import. $ImportServiceProperties" }
  }

  # Check if Neo is already installed
  $RunNeo4jInstall = $true
  $existingNeoHome = [string] (Get-EnvironmentVariable -Name 'NEO4J_HOME' -Scope 'Machine')
  if ($existingNeoHome -eq '')
  {
    $existingNeoHome = [string] ( (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment' -ErrorAction Continue).'NEO4J_HOME' )
  }
  if ($existingNeoHome -ne '') {
    Write-Debug 'The NEO4J_HOME environment variable is set.  Checking the version of Neo4j...'
    
    Get-ChildItem -Path (Join-Path -Path $existingNeoHome -ChildPath 'lib') | Where-Object { $_.Name -match 'server-api-.+\.jar' } | ForEach-Object {
      if ($_.Name.ToLower() -eq "server-api-$($neoServerApiJarSuffix).jar")
      {
        $RunNeo4jInstall = $false
        Write-Host "$PackageName version $neoServerApiJarSuffix is already installed"
      }
      else
      {
        Write-Debug "$PackageName has been installed but found an unexpected version of the server-api jar file $($_.Name)"
        Throw "$PackageName is installed but is not the correct version.  Expected version $neoServerApiJarSuffix"
      }
    }
  }

  if ($RunNeo4jInstall) {
    # Check if Java is available
    # This check will not be required once a suitable Java SDK 7 chocolatey package is available in the public feed. This is expected in Feb 2015 sometime.
    $javaResponse = ''
    try {
      Write-Debug 'Testing Java...'
      & java.exe -version
    } catch {
      Throw 'Java is not installed in the PATH.  This is required for a Neo4j installation'
    }
    
    # Install Neo4j
    Install-ChocolateyZipPackage -PackageName $PackageName -URL $downloadUrl -UnzipLocation $InstallDir -CheckSum $md5Checksum -CheckSumType 'md5'
  
    # Set the Home Environment Variable
    $neoHome = "$($InstallDir)\$($neozipSubdir)"
    Install-ChocolateyEnvironmentVariable "NEO4J_HOME" "$neoHome" "Machine"
  
    # Import config files if required
    If ($ImportNeoProperties -ne "") {
      Write-Host "Importing the neo4jproperties from  $ImportNeoProperties"
      [void] (Copy-Item -Path $ImportNeoProperties -Destination "$($neoHome)\conf\neo4j.properties" -Force -Confirm:$false)
    }
    If ($ImportNeoServerProperties -ne "") {
      Write-Host "Importing the neo4j-server.properties from  $ImportNeoServerProperties"
      [void] (Copy-Item -Path $ImportNeoServerProperties -Destination "$($neoHome)\conf\neo4j-server.properties" -Force -Confirm:$false)
    }
    If ($ImportServiceProperties -ne "") {
      Write-Host "Importing the neo4j-wrapper.conf from  $ImportServiceProperties"
      [void] (Copy-Item -Path $ImportServiceProperties -Destination "$($neoHome)\conf\neo4j-wrapper.conf" -Force -Confirm:$false)
    }
    
    # Install the Neo4j Service
    $InstallBatch = "$($neoHome)\bin\Neo4jInstaller.bat"
    if (!(Test-Path $InstallBatch)) { throw "Could not find the Neo4j Installer Batch file at $InstallBatch" }
    
    $args = "install"
    Start-Process -FilePath $InstallBatch -ArgumentList $args -Wait -PassThru -NoNewWindow | Out-Null
    
    $neoService = Get-Service -Name "Neo4j-Server" -ErrorAction Continue
    if ($neoService -eq $null) {
      Throw "The Neo4j Sever Service failed to install"
    }
  }
  
  Write-ChocolateySuccess $PackageName
} catch {
  Write-ChocolateyFailure $PackageName "$($_.Exception.Message)"
  throw
}
tools\chocolateyUninstall.ps1
$PackageName = 'neo4j-community'
try {
  # Get the NeoHome Dir
  #   Try the local environment
  $neoHome = [string] (Get-EnvironmentVariable -Name 'NEO4J_HOME' -Scope 'Machine')  
  # Failing that, try a registry hack
  if ($neoHome -eq '')
  {
    $neoHome = [string] ( (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment' -ErrorAction Continue).'NEO4J_HOME' )
  }
  if ($neoHome -eq '') { throw "Could not find the Neo4jHome directory" }

  # Uninstall the Neo4j Service
  $UninstallBatch = "$($neoHome)\bin\Neo4jInstaller.bat"
  if (!(Test-Path $UninstallBatch)) { throw "Could not find the Neo4j Uninstaller Batch file at $UninstallBatch" }
  
  # Uninstall the service
  $args = "remove"
  $results = (Start-Process -FilePath $UninstallBatch -ArgumentList $args -Wait -PassThru -NoNewWindow)

  # Remove the install folder
  Remove-Item -Path $neoHome -Recurse -Force | Out-Null
  
  # Remove the environment variable
  Install-ChocolateyEnvironmentVariable "NEO4J_HOME" '' "Machine"

  Write-ChocolateySuccess $PackageName
} catch {
  Write-ChocolateyFailure $PackageName "$($_.Exception.Message)"
  throw
}


Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Neo4j Community Edition 3.5.0 335 Thursday, November 29, 2018 Approved
Neo4j Community Edition 3.5.0-rc01-beta 244 Saturday, November 17, 2018 Approved
Neo4j Community Edition 3.5.0-beta03-beta 233 Saturday, October 27, 2018 Approved
Neo4j Community Edition 3.5.0-beta02-beta 210 Thursday, October 18, 2018 Approved
Neo4j Community Edition 3.5.0-beta01-beta 226 Saturday, September 29, 2018 Approved
Neo4j Community Edition 3.5.0-alpha09 217 Saturday, September 15, 2018 Approved
Neo4j Community Edition 3.5.0-alpha08 231 Thursday, September 6, 2018 Approved
Neo4j Community Edition 3.5.0-alpha07 262 Friday, August 17, 2018 Approved
Neo4j Community Edition 3.5.0-alpha06 272 Saturday, August 4, 2018 Approved
Neo4j Community Edition 3.5.0-alpha05 235 Wednesday, July 25, 2018 Approved
Neo4j Community Edition 3.5.0-alpha04 289 Wednesday, July 11, 2018 Approved
Neo4j Community Edition 3.5.0-alpha02 276 Saturday, June 30, 2018 Approved
Neo4j Community Edition 3.5.0-alpha01 298 Tuesday, May 29, 2018 Approved
Neo4j Community Edition 3.4.11 271 Tuesday, December 18, 2018 Approved
Neo4j Community Edition 3.4.10 275 Thursday, November 15, 2018 Approved
Neo4j Community Edition 3.4.9 325 Monday, October 15, 2018 Approved
Neo4j Community Edition 3.4.8 344 Friday, October 5, 2018 Approved
Neo4j Community Edition 3.4.7 423 Saturday, September 1, 2018 Approved
Neo4j Community Edition 3.4.6 326 Friday, August 17, 2018 Approved
Neo4j Community Edition 3.4.5 362 Friday, July 27, 2018 Approved
Neo4j Community Edition 3.4.4 369 Thursday, July 12, 2018 Approved
Neo4j Community Edition 3.4.3 356 Friday, July 6, 2018 Approved
Neo4j Community Edition 3.4.1 387 Wednesday, June 13, 2018 Approved
Neo4j Community Edition 3.4.0 393 Thursday, May 17, 2018 Approved
Neo4j Community Edition 3.4.0-rc02-beta 289 Thursday, May 10, 2018 Approved
Neo4j Community Edition 3.4.0-rc01-beta 321 Saturday, April 28, 2018 Approved
Neo4j Community Edition 3.4.0-beta02-beta 306 Wednesday, April 18, 2018 Approved
Neo4j Community Edition 3.4.0-beta01-beta 301 Wednesday, April 4, 2018 Approved
Neo4j Community Edition 3.4.0-alpha10 346 Wednesday, March 21, 2018 Approved
Neo4j Community Edition 3.4.0-alpha09 338 Tuesday, March 6, 2018 Approved
Neo4j Community Edition 3.4.0-alpha08 345 Wednesday, February 21, 2018 Approved
Neo4j Community Edition 3.4.0-alpha06 353 Tuesday, January 23, 2018 Approved
Neo4j Community Edition 3.4.0-alpha05 354 Wednesday, January 10, 2018 Approved
Neo4j Community Edition 3.4.0-alpha04 392 Friday, January 5, 2018 Approved
Neo4j Community Edition 3.3.9 253 Saturday, November 3, 2018 Approved
Neo4j Community Edition 3.3.8 235 Thursday, November 1, 2018 Approved
Neo4j Community Edition 3.3.7 256 Thursday, September 13, 2018 Approved
Neo4j Community Edition 3.3.6 302 Saturday, June 23, 2018 Approved
Neo4j Community Edition 3.3.5 503 Thursday, April 12, 2018 Approved
Neo4j Community Edition 3.3.4 420 Friday, March 16, 2018 Approved
Neo4j Community Edition 3.3.3 455 Wednesday, February 14, 2018 Approved
Neo4j Community Edition 3.3.2 433 Tuesday, January 23, 2018 Approved
Neo4j Community Edition 3.3.1 490 Friday, January 5, 2018 Approved
Neo4j Community Edition 3.3.0-rc1-beta 422 Thursday, October 5, 2017 Approved
Neo4j Community Edition 3.3.0-beta02-beta 388 Friday, September 22, 2017 Approved
Neo4j Community Edition 3.3.0-beta01-beta 374 Thursday, September 14, 2017 Approved
Neo4j Community Edition 3.3.0-alpha07 336 Wednesday, August 30, 2017 Approved
Neo4j Community Edition 3.3.0-alpha06 368 Thursday, August 17, 2017 Approved
Neo4j Community Edition 3.3.0-alpha05 352 Wednesday, August 2, 2017 Approved
Neo4j Community Edition 3.3.0-alpha04 358 Friday, July 14, 2017 Approved
Neo4j Community Edition 3.3.0-alpha03 403 Monday, July 3, 2017 Approved
Neo4j Community Edition 3.3.0-alpha02 366 Thursday, June 15, 2017 Exempted
Neo4j Community Edition 3.3.0-alpha01 395 Friday, June 2, 2017 Exempted
Neo4j Community Edition 3.2.13 185 Wednesday, October 17, 2018 Approved
Neo4j Community Edition 3.2.12 268 Thursday, May 31, 2018 Approved
Neo4j Community Edition 3.2.11 279 Tuesday, April 24, 2018 Approved
Neo4j Community Edition 3.2.10 279 Tuesday, March 13, 2018 Approved
Neo4j Community Edition 3.2.9 299 Friday, January 5, 2018 Approved
Neo4j Community Edition 3.2.6 537 Tuesday, October 3, 2017 Approved
Neo4j Community Edition 3.2.5 345 Monday, September 18, 2017 Approved
Neo4j Community Edition 3.2.4 374 Wednesday, September 13, 2017 Approved
Neo4j Community Edition 3.2.3 462 Tuesday, August 1, 2017 Approved
Neo4j Community Edition 3.2.2 463 Wednesday, July 5, 2017 Approved
Neo4j Community Edition 3.2.1 418 Monday, June 5, 2017 Approved
Neo4j Community Edition 3.2.0 386 Thursday, May 11, 2017 Approved
Neo4j Community Edition 3.2.0-rc3-beta 354 Monday, May 8, 2017 Approved
Neo4j Community Edition 3.2.0-rc2-beta 386 Friday, May 5, 2017 Approved
Neo4j Community Edition 3.2.0-rc1-beta 404 Thursday, April 27, 2017 Approved
Neo4j Community Edition 3.2.0-alpha08 411 Tuesday, April 11, 2017 Approved
Neo4j Community Edition 3.2.0-alpha07 383 Monday, March 27, 2017 Approved
Neo4j Community Edition 3.2.0-alpha06 368 Friday, March 10, 2017 Approved
Neo4j Community Edition 3.2.0-alpha05 370 Thursday, February 23, 2017 Approved
Neo4j Community Edition 3.2.0-alpha04 396 Tuesday, February 14, 2017 Approved
Neo4j Community Edition 3.2.0-alpha03 405 Friday, January 27, 2017 Approved
Neo4j Community Edition 3.2.0-alpha02 466 Thursday, January 12, 2017 Approved
Neo4j Community Edition 3.2.0-alpha01 377 Wednesday, December 28, 2016 Approved
Neo4j Community Edition 3.1.7 362 Tuesday, October 3, 2017 Approved
Neo4j Community Edition 3.1.6 342 Monday, July 31, 2017 Approved
Neo4j Community Edition 3.1.5 374 Monday, June 5, 2017 Approved
Neo4j Community Edition 3.1.4 400 Tuesday, May 2, 2017 Approved
Neo4j Community Edition 3.1.3 443 Wednesday, March 29, 2017 Approved
Neo4j Community Edition 3.1.2 391 Thursday, March 9, 2017 Approved
Neo4j Community Edition 3.1.1 521 Friday, January 20, 2017 Approved
Neo4j Community Edition 3.1.0 419 Tuesday, December 13, 2016 Approved
Neo4j Community Edition 3.1.0-M10-beta 410 Wednesday, October 5, 2016 Approved
Neo4j Community Edition 3.1.0-M09-beta 405 Monday, October 3, 2016 Approved
Neo4j Community Edition 3.1.0-M08-beta 399 Friday, September 2, 2016 Exempted
Neo4j Community Edition 3.1.0-M07-beta 420 Friday, August 26, 2016 Approved
Neo4j Community Edition 3.0.10 394 Monday, July 3, 2017 Approved
Neo4j Community Edition 3.0.9 363 Thursday, March 16, 2017 Approved
Neo4j Community Edition 3.0.8 372 Tuesday, December 20, 2016 Approved
Neo4j Community Edition 3.0.6 481 Monday, October 3, 2016 Approved
Neo4j Community Edition 3.0.5 415 Monday, October 3, 2016 Approved
Neo4j Community Edition 3.0.4 452 Friday, August 26, 2016 Approved
Neo4j Community Edition 3.0.2 383 Sunday, June 5, 2016 Approved
Neo4j Community Edition 3.0.1 435 Sunday, June 5, 2016 Approved
Neo4j Community Edition 3.0.0 414 Monday, May 2, 2016 Approved
Neo4j Community Edition 3.0.0-RC1-beta 424 Wednesday, April 20, 2016 Approved
Neo4j Community Edition 2.3.12 267 Thursday, March 29, 2018 Approved
Neo4j Community Edition 2.3.11 403 Monday, July 3, 2017 Approved
Neo4j Community Edition 2.3.10 370 Saturday, April 1, 2017 Approved
Neo4j Community Edition 2.3.9 396 Tuesday, January 24, 2017 Approved
Neo4j Community Edition 2.3.8 402 Tuesday, December 13, 2016 Approved
Neo4j Community Edition 2.3.7 404 Monday, October 3, 2016 Approved
Neo4j Community Edition 2.3.6 371 Friday, August 26, 2016 Approved
Neo4j Community Edition 2.3.3 402 Monday, May 2, 2016 Approved
Neo4j Community Edition 2.3.0.20151026 492 Sunday, October 25, 2015 Approved
Neo4j Community Edition 2.3.0-M02-beta 381 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.3.0-M01-beta 401 Saturday, May 30, 2015 Approved
Neo4j Community Edition 2.2.10 467 Friday, August 26, 2016 Approved
Neo4j Community Edition 2.2.2.20150617 422 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.2.1.20150617 357 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.2.0.20150617 337 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.2.0-RC01-beta 419 Saturday, March 7, 2015 Approved
Neo4j Community Edition 2.2.0-M04-beta 444 Tuesday, February 17, 2015 Approved
Neo4j Community Edition 2.2.0-M03-beta 445 Tuesday, February 3, 2015 Exempted
Neo4j Community Edition 2.2.0-M02-beta 407 Wednesday, January 21, 2015 Exempted
Neo4j Community Edition 2.1.8.20150617 600 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.1.7.20150617 420 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.1.6.20152101 449 Wednesday, January 21, 2015 Approved

Full list of changes are available on GitHub; https://github.com/glennsarti/neo4j-community-chocolatey

Version 2.2.2.20150617

  • Initial Release

This package has no dependencies.

Discussion for the Neo4j Community Edition Package

Ground Rules:

  • This discussion is only about Neo4j Community Edition and the Neo4j Community Edition package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Neo4j Community Edition, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus