Skip to content

Commit

Permalink
Prepare for release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
albertoventurini committed Dec 9, 2022
1 parent 7f190da commit 9f1dc25
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.3.0]

### Added

- Don't show Cypher autocompletion in comments (#4)
- Support existential and count subqueries (#24)
- Support connections to named databases

## [0.2.2]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public Neo4jBoltDatabase(Neo4jBoltConfiguration configuration) {

final String authType = configuration.getAuthType();
final String protocol = configuration.getProtocol();
final String database = configuration.getDatabase();

if (protocol == null) {
if (host.startsWith("bolt://") || host.startsWith("bolt+routing://")) {
Expand All @@ -62,8 +63,8 @@ public Neo4jBoltDatabase(Neo4jBoltConfiguration configuration) {
auth = AuthTokens.none();
}

if (configuration.getDatabase() != null) {
dbConfig = SessionConfig.forDatabase(configuration.getDatabase());
if (database != null && !database.trim().isEmpty()) {
dbConfig = SessionConfig.forDatabase(database);
} else {
dbConfig = SessionConfig.defaultConfig();
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ intellijSdkVersion=2022.2
# intellijSdkVersion=LATEST-EAP-SNAPSHOT

# Versions
versionGradleIntelliJ=1.10.0
versionGradleIntelliJ=1.10.1
versionGradleChangelog=2.0.0
versionJunit=4.12
versionAssertj=3.23.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
updater.title=Graph Database plugin updated to v{0}
updater.notification=\
Add support for Cypher EXISTS and COUNT subqueries. Disable highlighting in Cypher comments.
Add support for Cypher EXISTS and COUNT subqueries. \
Disable highlighting in Cypher comments. \
Support connections to named databases.

0 comments on commit 9f1dc25

Please sign in to comment.