-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Usage and product changes We merge development into master for 2.26.6 release.
- Loading branch information
Showing
14 changed files
with
131 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
Available through https://crates.io/crates/typeql. | ||
``` | ||
cargo add [email protected]-rc0 | ||
cargo add [email protected] | ||
``` | ||
|
||
## TypeQL Grammar and Language Library distributions for Java | ||
|
@@ -20,12 +20,12 @@ cargo add [email protected] | |
<dependency> | ||
<groupId>com.vaticle.typeql</groupId> | ||
<artifactId>typeql-grammar</artifactId> | ||
<version>2.26.6-rc0</version> | ||
<version>2.26.6</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.vaticle.typeql</groupId> | ||
<artifactId>typeql-lang</artifactId> | ||
<version>2.26.6-rc0</version> | ||
<version>2.26.6</version> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
@@ -35,7 +35,7 @@ cargo add [email protected] | |
Available through https://pypi.org | ||
|
||
``` | ||
pip install typeql-grammar==2.26.6-rc0 | ||
pip install typeql-grammar==2.26.6 | ||
``` | ||
|
||
|
||
|
@@ -62,6 +62,21 @@ pip install typeql-grammar==2.26.6-rc0 | |
|
||
|
||
## Code Refactors | ||
- **Allow variables to have a leading digit** | ||
|
||
We modify the behaviour of #310 which unified variables and labels to have the same valid identifier syntax, which eliminated the capability of variables to have a leading number. For example, the variable `$0` was banned. | ||
|
||
This PR reverts this specific behaviour, and enables usage of variables with leading digits: | ||
``` | ||
match | ||
$1_a isa entity; | ||
get; | ||
``` | ||
is made valid again. | ||
|
||
Testing specified in https://github.com/vaticle/typedb-behaviour/pull/281 | ||
|
||
|
||
|
||
- **Merge typedb-common repository into typeql** | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.26.6-rc0 | ||
2.26.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.