Skip to content

Commit

Permalink
Version Packages (next) (#143)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Nov 22, 2023
1 parent 08db455 commit c42e157
Show file tree
Hide file tree
Showing 17 changed files with 65 additions and 17 deletions.
4 changes: 3 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
"brown-ravens-obey",
"fuzzy-rice-train",
"nervous-rabbits-greet",
"quick-berries-report"
"purple-suns-applaud",
"quick-berries-report",
"stale-donkeys-grow"
]
}
2 changes: 1 addition & 1 deletion .husky/post-checkout
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting '.git/hooks/post-checkout'.\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
git lfs post-checkout "$@"
2 changes: 1 addition & 1 deletion .husky/post-commit
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting '.git/hooks/post-commit'.\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
git lfs post-commit "$@"
2 changes: 1 addition & 1 deletion .husky/post-merge
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting '.git/hooks/post-merge'.\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
git lfs post-merge "$@"
2 changes: 1 addition & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting '.git/hooks/pre-push'.\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
git lfs pre-push "$@"
8 changes: 8 additions & 0 deletions packages/language-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @neo4j-cypher/language-server

## 2.0.0-next.2

### Patch Changes

- Updated dependencies [a790700]
- Updated dependencies [08db455]
- @neo4j-cypher/language-support@2.0.0-next.1

## 2.0.0-next.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/language-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"cypher",
"language server"
],
"version": "2.0.0-next.1",
"version": "2.0.0-next.2",
"main": "./dist/server.js",
"types": "src/server.ts",
"repository": {
Expand All @@ -34,7 +34,7 @@
"cypher-language-server": "./dist/cypher-language-server"
},
"dependencies": {
"@neo4j-cypher/language-support": "2.0.0-next.0",
"@neo4j-cypher/language-support": "2.0.0-next.1",
"neo4j-driver": "^5.3.0",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-textdocument": "^1.0.8"
Expand Down
7 changes: 7 additions & 0 deletions packages/language-support/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @neo4j-cypher/language-support

## 2.0.0-next.1

### Patch Changes

- a790700: Fix issue where syntax highlighting crashes on create constraint query
- 08db455: Fix incorrect completions when identifier overlaps with keyword

## 2.0.0-next.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/language-support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"linting",
"highlighting"
],
"version": "2.0.0-next.0",
"version": "2.0.0-next.1",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.js",
Expand Down
9 changes: 9 additions & 0 deletions packages/react-codemirror-playground/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @neo4j-cypher/react-codemirror-playground

## 2.0.0-next.3

### Patch Changes

- Updated dependencies [a790700]
- Updated dependencies [08db455]
- @neo4j-cypher/language-support@2.0.0-next.1
- @neo4j-cypher/react-codemirror@2.0.0-next.3

## 2.0.0-next.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/react-codemirror-playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@neo4j-cypher/react-codemirror-playground",
"private": true,
"version": "2.0.0-next.2",
"version": "2.0.0-next.3",
"type": "module",
"scripts": {
"dev": "vite --open",
Expand All @@ -20,8 +20,8 @@
"node": ">=18.18.2"
},
"dependencies": {
"@neo4j-cypher/language-support": "2.0.0-next.0",
"@neo4j-cypher/react-codemirror": "2.0.0-next.2",
"@neo4j-cypher/language-support": "2.0.0-next.1",
"@neo4j-cypher/react-codemirror": "2.0.0-next.3",
"@codemirror/autocomplete": "^6.5.1",
"@codemirror/commands": "^6.2.2",
"@codemirror/language": "^6.6.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/react-codemirror/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @neo4j-cypher/react-codemirror

## 2.0.0-next.3

### Patch Changes

- Updated dependencies [a790700]
- Updated dependencies [08db455]
- @neo4j-cypher/language-support@2.0.0-next.1

## 2.0.0-next.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react-codemirror/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"codemirror",
"codemirror 6"
],
"version": "2.0.0-next.2",
"version": "2.0.0-next.3",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
Expand Down Expand Up @@ -51,7 +51,7 @@
"node": ">=18.18.2"
},
"dependencies": {
"@neo4j-cypher/language-support": "2.0.0-next.0",
"@neo4j-cypher/language-support": "2.0.0-next.1",
"@codemirror/autocomplete": "^6.5.1",
"@codemirror/commands": "^6.2.2",
"@codemirror/language": "^6.6.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/schema-poller/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @neo4j-cypher/schema-poller

## 2.0.0-next.1

### Patch Changes

- Updated dependencies [a790700]
- Updated dependencies [08db455]
- @neo4j-cypher/language-support@2.0.0-next.1

## 2.0.0-next.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/schema-poller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"author": "Neo4j Inc.",
"license": "Apache-2.0",
"version": "2.0.0-next.0",
"version": "2.0.0-next.1",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/src/index.js",
"exports": {
Expand All @@ -26,7 +26,7 @@
"node": ">=18.18.2"
},
"dependencies": {
"@neo4j-cypher/language-support": "2.0.0-next.0",
"@neo4j-cypher/language-support": "2.0.0-next.1",
"neo4j-driver": "^5.12.0"
},
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions packages/vscode-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @neo4j-cypher/vscode-extension

## 2.0.0-next.2

### Patch Changes

- @neo4j-cypher/language-server@2.0.0-next.2

## 2.0.0-next.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Enables support for Neo4j and its query language Cypher",
"author": "Neo4j Inc.",
"license": "Apache-2.0",
"version": "2.0.0-next.1",
"version": "2.0.0-next.2",
"publisher": "Neo4j Inc.",
"activationEvents": [
"onLanguage:cypher"
Expand Down Expand Up @@ -90,7 +90,7 @@
"test:e2e": "npm run build && rm -rf .vscode-test/user-data && node ./dist/e2e_tests/main.js"
},
"dependencies": {
"@neo4j-cypher/language-server": "2.0.0-next.1",
"@neo4j-cypher/language-server": "2.0.0-next.2",
"vscode-languageclient": "^8.1.0"
},
"devDependencies": {
Expand Down

0 comments on commit c42e157

Please sign in to comment.