Guillermo Gutiérrez

Results 71 issues of Guillermo Gutiérrez

#### Problem description We've recently included new `DataType` and `ControlType` enums to abstract form data and control types in our code. Up to this moment, they have been used mainly...

We currently have 22 test classes that use the old `TestCase` jUnit API. Modern tools and IDEs support jUnit4's `@Test` annotations that let us have more useful interactions with the...

This issue depends on solving #286 and #290 Currently, our date and time code is based on `java.util.Date` which can unpredictable sometimes and generally difficult to work: - It is...

While working on other things, I've noticed this method on `DateUtils`: ```java public static Date parseDateTime (String str) { DateFields fields = new DateFields(); int i = str.indexOf("T"); if (i...

See https://github.com/dnsimple/dnsimple-developer/issues/315 for reference In this PR: - Add `alias_email` and `destination_email` fields to `EmailForward` - Deprecate `email_from` and `email_to` fields in `EmailForward - Align `EmailForwardInput` constructor param names with...

enhancement

See https://github.com/dnsimple/dnsimple-developer/issues/315 for reference The Node API client doesn't define models for the data structures used as input or output of DNSimple's API endpoints. Therefore, no actual changes are required....

enhancement

See https://github.com/dnsimple/dnsimple-developer/issues/315 for reference In this PR: - Add `alias_email` and `destination_email` fields to `EmailForward`

enhancement

Fixes #295 Currently, the body of 401 Mailgun's API responses doesn't include a `message` property. Instead, an `Error` (case-sensitive) property has the error message: ```json {"Error":"unauthorized"} ``` This causes the...

Hi @mtsmfm! I just wanted to let you know that I've been working on https://github.com/ggalmazor/hubot-test. I was initially focused on modernizing the stack for current Node.js projects. While doing so,...

Fixes #329 This PR is inspired by @peterdemaeyer's #330, which fell through the cracks two years ago. I want to rekindle this effort to have matchers for exceptions thrown in...