Selene

Results 28 issues of Selene

When we are trying to render a panel that isn't able to retrieve the information from the datasource, `panelsRendered` never exists. It means, that we are waiting to fit a...

It adds report's `Zoom` feature in docs.

type/docs
add to changelog
enterprise-failed
backport v9.3.x

Given: ```cue myValue: #StructA | #StructB ``` Generates: ```go myValue *interface{} ``` We are loosing the concreteness of the possible values in `myValue`. Previously we added [fixRawData](https://github.com/grafana/thema/blob/main/encoding/gocode/decorators.go#L104) decorator to remove...

enhancement

Related: https://github.com/grafana/thema/pull/105 When the Group is true in OpenApi configuration, the maps don't appear in the Go file. Also, it ignores the optionals and set everything without pointers.

bug

This issue is to track Java builders. The common pattern in Java is to have the builder inside the class, so you can access to the builder doing `MyClass.Builder().blah(...).build()`. An...

Maps were adding the import only for references and we weren't checking if a reference was an array. In this second case, we were setting values like `Matchers` and `ObjectMatchers`...

It returns: ```java public PanelBuilder setShowLegend() { if (this.internal.options == null) { this.internal.options = new Options(); } if (this.internal.options.legend == null) { this.internal.options.legend = new HeatmapLegend(); } this.internal.options.legend.show = true;...

area:jennies
language:java

`NotificationPolicy.java` and `Rule.java` don't add some imports and looks like `NotificationPolicy` expects have some field objects that aren't generated.

area:jennies
language:java

When we have list of a single type (string, integer, etc), we are setting the array as signature. It implies that the function argument needs an array initialisation to make...

enhancement
good first issue

Cogs allows to define a destination path, but the final path depends of the language. For example, Go set the tyoes under `'pkg'/types_gen.go` and TS under `src/'pkg'/types_gen.ts`. It could be...

area:jennies
area:cli