Franco Liberali

Results 13 issues of Franco Liberali

The function configPower is not compiling when using CFG_sx1272_radio. The error is the following: ```bash ttn-esp32/src/lmic/radio.c: In function 'configPower': ttn-esp32/src/lmic/radio.c:673:15: error: 'eff_pw' may be used uninitialized in this function [-Werror=maybe-uninitialized]...

> Please check if what you want to add to `awesome-go` list meets [quality standards](https://github.com/avelino/awesome-go/blob/main/CONTRIBUTING.md#quality-standards) before sending pull request. Thanks! **Please provide package links to:** - repo link (github.com, gitlab.com,...

Should not work: ``` cql.Update[models.Brand]( db, conditions.Brand.Name.IsDynamic().Eq(conditions.City.Name.Value()), // want "github.com/FrancoLiberali/cql/test/models.City is not joined by the query" ).Set( conditions.Brand.Name.Set().Dynamic( conditions.Brand.Name.Value(), ), ) ```

enhancement

Only ErrFieldModelNotConcerned is solved now, add the rest ones

enhancement

At the moment, conditions are not generated for relations within a collection (has many) because joins cannot be made in those cases. You should give the possibility to make the...

Now soft delete is mandatory, as both UUIDModel and UIntIDModel have a DeletedAt. It should be optional, providing base models without soft delete. This involves reviewing the "delete" functionality

cql.And(), cql.Or() and cql.Not() only support WhereConditions inside, making it imposible to do cql.Or( attribute = "something", relation.attribute == "something", ) In order to do that, the join must be...