Laurent Martelli

Results 15 issues of Laurent Martelli

**Edit** : I created a [pull request](https://github.com/theoephraim/node-google-spreadsheet/pull/534) Hi! πŸ‘‹ Firstly, thanks for your work on this project! πŸ™‚ It really is much simpler to use than the _official_ API !...

enhancement

Works out of the box when deployed on GCP, or using GOOGLE_APPLICATION_CREDENTIALS env var for local dev.

I am using `#temporals` to format a LocalDate and it insists on also formatting the time πŸ‘πŸ» `${#temporals.format(period.start,'MEDIUM')}` I believe it is because `org.thymeleaf.extras.java8time.util.TemporalFormattingUtils#defaultOrPatternFormatted()` uses `DateTimeFormatter.ofLocalizedDateTime()`. There should probably be...

needs triage

This change is [](https://reviewable.io/reviews/lesfurets/git-octopus/44)

Show one field per line for improved readability

Fixes https://github.com/spring-projects/spring-boot/issues/34854 Use `MergedAnnotations` in order to support `@AliasFor`. I used plain `Predicate` instead of `AnnotationFilter` because it is much simpler and generic.

type: bug

This is helpful to compare documents and consider documents equal if the only difference is attributes order.

Running tests in alphabetical order is a bad practice : it can hide unwanted dependencies between tests. Therefore I believe it is preferable to run them in random order so...

pr: needs-change
theme: maven
theme: java

## Testing Problem A `@Provide` method in a domain that returns a `ListArbitrary` is not used to generate values for a `@ForAll List`. See https://github.com/jqwik-team/jqwik/compare/main...lmartelli:jqwik:ListArbitrary-provider ## Suggested Solution In `net.jqwik.engine.properties.DomainContextBaseProviders.MethodBasedArbitraryProvider#arbitraryType()`...

## Testing Problem When testing some validation rules, it's easy to come up with a custom arbitrary for the OK case, but much more complicated for the failing cases. Say...