Skip to content

Commit

Permalink
Version Packages (next) (#294)
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 Dec 13, 2024
1 parent 7e149a8 commit af15885
Show file tree
Hide file tree
Showing 16 changed files with 66 additions and 15 deletions.
4 changes: 4 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,24 @@
"gentle-pans-rescue",
"healthy-turtles-change",
"hungry-beans-eat",
"little-vans-begin",
"loud-meals-attend",
"loud-shrimps-push",
"nervous-rabbits-greet",
"nice-elephants-prove",
"nice-jokes-give",
"nine-bobcats-sit",
"ninety-doors-brush",
"ninety-panthers-pretend",
"old-shoes-provide",
"pink-chefs-trade",
"purple-buckets-applaud",
"purple-suns-applaud",
"quick-berries-report",
"selfish-wombats-pay",
"shiny-dodos-rush",
"silver-students-wait",
"spicy-cheetahs-repeat",
"stale-donkeys-grow",
"stale-peas-warn",
"strong-squids-relax",
Expand Down
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 the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This 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')."; 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 the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This 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')."; 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 the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This 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')."; 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 the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This 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')."; exit 2; }
git lfs pre-push "$@"
9 changes: 9 additions & 0 deletions packages/language-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @neo4j-cypher/language-server

## 2.0.0-next.13

### Patch Changes

- Updated dependencies [88fbe63]
- Updated dependencies [22081b0]
- Updated dependencies [62ac442]
- @neo4j-cypher/language-support@2.0.0-next.12

## 2.0.0-next.12

### 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.12",
"version": "2.0.0-next.13",
"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.11",
"@neo4j-cypher/language-support": "2.0.0-next.12",
"lodash.debounce": "^4.0.8",
"neo4j-driver": "^5.3.0",
"vscode-languageserver": "^8.1.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/language-support/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @neo4j-cypher/language-support

## 2.0.0-next.12

### Patch Changes

- 88fbe63: Modified backtick insertion to only happen when really necessary
- 22081b0: Adds autocompletions following YIELD in a procedure call
- 62ac442: Add support for sysinfo, welcome, connect, disconnect and server console commands

## 2.0.0-next.11

### Patch 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.11",
"version": "2.0.0-next.12",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.js",
Expand Down
11 changes: 11 additions & 0 deletions packages/react-codemirror-playground/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @neo4j-cypher/react-codemirror-playground

## 2.0.0-next.15

### Patch Changes

- Updated dependencies [adc5b64]
- Updated dependencies [88fbe63]
- Updated dependencies [22081b0]
- Updated dependencies [62ac442]
- @neo4j-cypher/react-codemirror@2.0.0-next.15
- @neo4j-cypher/language-support@2.0.0-next.12

## 2.0.0-next.14

### 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.14",
"version": "2.0.0-next.15",
"type": "module",
"scripts": {
"dev": "vite --open",
Expand All @@ -21,8 +21,8 @@
"node": ">=18.18.2"
},
"dependencies": {
"@neo4j-cypher/language-support": "2.0.0-next.11",
"@neo4j-cypher/react-codemirror": "2.0.0-next.14",
"@neo4j-cypher/language-support": "2.0.0-next.12",
"@neo4j-cypher/react-codemirror": "2.0.0-next.15",
"@codemirror/autocomplete": "^6.5.1",
"@codemirror/commands": "^6.2.2",
"@codemirror/language": "^6.6.0",
Expand Down
10 changes: 10 additions & 0 deletions packages/react-codemirror/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @neo4j-cypher/react-codemirror

## 2.0.0-next.15

### Patch Changes

- adc5b64: using custom light color theme for the cypher editor
- Updated dependencies [88fbe63]
- Updated dependencies [22081b0]
- Updated dependencies [62ac442]
- @neo4j-cypher/language-support@2.0.0-next.12

## 2.0.0-next.14

### 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.14",
"version": "2.0.0-next.15",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
Expand Down Expand Up @@ -51,7 +51,7 @@
"@codemirror/view": "^6.29.1",
"@lezer/common": "^1.0.2",
"@lezer/highlight": "^1.1.3",
"@neo4j-cypher/language-support": "2.0.0-next.11",
"@neo4j-cypher/language-support": "2.0.0-next.12",
"@types/prismjs": "^1.26.3",
"@types/workerpool": "^6.4.7",
"ayu": "^8.0.1",
Expand Down
9 changes: 9 additions & 0 deletions packages/schema-poller/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @neo4j-cypher/schema-poller

## 2.0.0-next.12

### Patch Changes

- Updated dependencies [88fbe63]
- Updated dependencies [22081b0]
- Updated dependencies [62ac442]
- @neo4j-cypher/language-support@2.0.0-next.12

## 2.0.0-next.11

### Patch 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.11",
"version": "2.0.0-next.12",
"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.11",
"@neo4j-cypher/language-support": "2.0.0-next.12",
"ajv": "^8.12.0",
"neo4j-driver": "^5.12.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@
"test:webviews": "wdio run ./dist/tests/runWebviewTests.js"
},
"dependencies": {
"@neo4j-cypher/language-server": "2.0.0-next.12",
"@neo4j-cypher/language-server": "2.0.0-next.13",
"@neo4j-ndl/base": "^2.12.3",
"@neo4j-ndl/react": "^2.16.5",
"neo4j-driver": "^5.12.0",
Expand Down

0 comments on commit af15885

Please sign in to comment.