mrsoto

Results 8 issues of mrsoto

Excellent plugin Not all are new feature, git flow support bugfix tracking. This is a nice enhance, if not, command line is always required for bug fixes. `git flow bugfix...

enhancement

Hello. Is the a way to use Flight w/out setting rewrite rules? Some thing like `http://host/index.php?q=/my/request/endpoint` Later

Enhancement

Mapping shortcuts is a great feature, not only to improve flexibility, this allow a kind of generic query, for example: ``` php if ($table=='A'){ $mapper->tableX = $mapper->tableA; } else {...

I've this query which does not quote columns and then mysql retrieve an incorrect order. The table has `timestamp` column ``` $mapper->news->fetchAll(Sql::orderBy('timestamp', 'id')->desc()->limit($initial, $pageSize)) ``` Resulting query: ``` SELECT news.*...

Support
Enhancement

Hello, How columns should be names to allow a many-to-many relationship when the same table is referenced, for example ``` table customer(id) table customer_customer(id, customer_id, other_customer_id, other_data) ``` how the...

Hello, Each time I need to reduce overhead related to too many unneeded columns I've to create a database view and fetch from this view. The question is: is there...

Registration instructions of [devlogin plugin](https://javalin.io/plugins/devlogging) is incorrect or incompatible to javalin6. What the page has: ```java Javalin.create(config -> { config.plugins.enableDevLogging(); }); ``` But config's plugin property does not exist in...

Compilation fails ```text error-prone version: 2.16 BugPattern: UnusedTypeParameter Stack Trace: java.util.NoSuchElementException: No value present at java.base/java.util.Optional.get(Optional.java:143) at com.google.errorprone.bugpatterns.UnusedTypeParameter.removeTypeParameter(UnusedTypeParameter.java:119) at com.google.errorprone.bugpatterns.UnusedTypeParameter$1.handle(UnusedTypeParameter.java:79) at com.google.errorprone.bugpatterns.UnusedTypeParameter$1.visitMethod(UnusedTypeParameter.java:69) at com.google.errorprone.bugpatterns.UnusedTypeParameter$1.visitMethod(UnusedTypeParameter.java:53) at jdk.compiler/com.sun.tools.javac.tree.JCTree$JCMethodDecl.accept(JCTree.java:953) at jdk.compiler/com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:86) at com.google.errorprone.bugpatterns.BugChecker$SuppressibleTreePathScanner.scan(BugChecker.java:572)...