incubator-kie-drools
incubator-kie-drools copied to clipboard
Drools is a rule engine, DMN engine and complex event processing (CEP) engine for Java.
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. Commits 74b2db2 3.0.3 88f1429 update eslint. lint, fix unit tests. 415d660 Snyk js braces 6838727 (#40) 190510f fix tests, skip 1 test in test/braces.expand...
Bumps [org.xmlunit:xmlunit-core](https://github.com/xmlunit/xmlunit) from 2.8.2 to 2.10.0. Release notes Sourced from org.xmlunit:xmlunit-core's releases. XMLUnit for Java 2.10.0 add a new ElementSelectors.byNameAndAllAttributes variant that filters attributes before deciding whether elements can be...
**Issue**: * https://github.com/apache/incubator-kie-drools/issues/5988 https://github.com/apache/incubator-kie-drools/pull/5989 is the PR to be merged, so the new parser is disabled by default. This PR enables the new parser so that we can confirm the...
**Issue**: * https://github.com/apache/incubator-kie-drools/issues/5988 Merging `dev-new-parser` branch to `main` branch. - Merging has to be done **after** Drools 10.0 release. - Until the Drools 10.0 release, mark the PR [DO-NOT-MERGE] and...
https://github.com/apache/incubator-kie-drools/issues/5678#issuecomment-2159601578 As of 2024-07-11, `dev-new-parser` unit tests are all green. Remaining child issues are low priority, so they can be handled after merging to main. The next step is to...
This issue aggregates improvement candidates. It may be something wrong or too tolerate in the old Antlr3 parser. Also it may be to drop features which would improve the maintainability....
This issue aggregates known backward compatibility issues between new Antlr4 parser and old Antlr3 parser. - In the new parser, `new` is not included in `drlIdentifier`. For example, `new` is...
Deadlock like this: ``` "Thread-A": at org.kie.scanner.KieRepositoryScannerImpl.getArtifactVersion(KieRepositoryScannerImpl.java:121) - waiting to lock (a org.kie.scanner.KieRepositoryScannerImpl) at org.drools.compiler.kie.builder.impl.KieRepositoryImpl$KieModuleRepo.load(KieRepositoryImpl.java:442) - locked (a org.drools.compiler.kie.builder.impl.KieRepositoryImpl$KieModuleRepo) at org.drools.compiler.kie.builder.impl.KieRepositoryImpl$KieModuleRepo.load(KieRepositoryImpl.java:426) - locked (a org.drools.compiler.kie.builder.impl.KieRepositoryImpl$KieModuleRepo) at org.drools.compiler.kie.builder.impl.KieRepositoryImpl.getKieModule(KieRepositoryImpl.java:128) // KieScannerHolder.kieScanner is...
## Parent issue - #5678 ## Failing tests None. Discovered accidentally. ## Notes Add a new test to `org.drools.drl.parser.antlr4.MiscDRLParserTest`. Related to #5937. Two options: - Develop a [lexer rule](https://github.com/antlr/antlr4/blob/master/doc/lexer-rules.md) that...
If I try a simple ``` [when]with an object where=/a/b/c/d/object [when]- type is "{type}"=type == "{type}" ``` I get this error `No pattern was found to add the constraint to:...