-
-
Notifications
You must be signed in to change notification settings - Fork 631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added neo4j-bundle 1.0 #1694
added neo4j-bundle 1.0 #1694
Conversation
Thanks for the PR 😍 How to test these changes in your application
Diff between recipe versionsIn order to help with the review stage, I'm in charge of computing the diff between the various versions of patched recipes. neo4j/neo4j-bundle0.4 vs 1.0diff --git a/neo4j/neo4j-bundle/0.4/config/packages/neo4j.yaml b/neo4j/neo4j-bundle/1.0/config/packages/neo4j.yaml
index 37ad241b..228f56b9 100644
--- a/neo4j/neo4j-bundle/0.4/config/packages/neo4j.yaml
+++ b/neo4j/neo4j-bundle/1.0/config/packages/neo4j.yaml
@@ -1,4 +1,4 @@
neo4j:
- connections:
+ drivers:
default:
dsn: '%env(resolve:NEO4J_DEFAULT_CONNECTION_DSN)%'
diff --git a/neo4j/neo4j-bundle/0.4/manifest.json b/neo4j/neo4j-bundle/1.0/manifest.json
index 1c2c5629..7aff089d 100644
--- a/neo4j/neo4j-bundle/0.4/manifest.json
+++ b/neo4j/neo4j-bundle/1.0/manifest.json
@@ -6,6 +6,6 @@
"config/": "%CONFIG_DIR%/"
},
"env": {
- "NEO4J_DEFAULT_CONNECTION_DSN": "bolt://foo:bar@localhost:7687"
+ "NEO4J_DEFAULT_CONNECTION_DSN": "neo4j://<my-username>:<my-password>@localhost"
}
} |
Head branch was pushed to by a user without write access
Head branch was pushed to by a user without write access
Head branch was pushed to by a user without write access
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P.S. Follow-up on unrelated note, it's error at bundle docs to call it |
Thank you so much for being so thorough. We are excited to see it merged! 🥳 |
All tests are passing except the test for PHP 7.4. We are unable to support that version due to upstream limitations of the neo4j-php-client library. Yet, our bundle should work with Symfony 5.4, if the user uses PHP 8.1. We found in the CI definition that this test is safe to ignore:
https://github.com/symfony/recipes/blob/802e06040c6bce727b9298d1eee0e0ae9002f486/.github/workflows/callable-qa.yml#L266C26-L266C123
We would love to have this recipe added to the contrib, as the definition for version 0.4 in this project contains a breaking configuration, potentially confusing new users before they are even started when they run
composer install neo4j/neo4j-bundle
.Kindly let us know if there's anything we can do.