Ben Gribaudo

Results 18 issues of Ben Gribaudo

Hello, The "manage cookies" dialog indicates that multiple cookies can be defined with a single cookie entry by separating them with semicolons (e.g. `_cfuid=value; Secure; ...`). ![image](https://user-images.githubusercontent.com/857202/133788086-2459ae27-5c3b-42b0-ae4e-47e7120cb90c.png) However, only the...

bug

Hello, Thanks for Nightingale! If I try to set a header of "Content-Type: multipart/mixed; boundary=batch_AAA123", the request dies complaining that the header's format is invalid: ```` The format of value...

Would it be possible for an environment variable's value to reference other environment variables? For example, Microsoft Dataverse's [setup instructions for Postman](https://docs.microsoft.com/en-us/powerapps/developer/data-platform/webapi/setup-postman-environment#connect-with-your-dataverse-environment) have several variables whose values that reference other...

Per `Table.GenerateByPage`'s [Helper Functions](https://docs.microsoft.com/en-us/power-query/helperfunctions#tablegeneratebypage) description, this method should call `getNextPage` until that callback returns null, then will combine all returned pages into a single table. However, when the existing `Table.GenerateByPage`...

Existing uses one set of logic to handle table column value transforms and another for record field value/list item transforms. This change DRYs the code to remove this duplication. /CC:...

Hello, As [we know](https://docs.microsoft.com/en-us/powerquery-m/table-view), `Table.View` can be used to override a table's existing behaviors. However, from what I'm seeing, if a table view handler declines a folding request by raising...

Hello, When a `Table.View` handles `DirectQueryCapabilities.From` using `OnInvoke`, per https://github.com/microsoft/DataConnectors/issues/318#issuecomment-674159531, the method names in the table that's returned should be the methods that the view supports for folding when in...

Hi, Using `Table.AddKey`/`Table.ReplaceKeys`, it's possible to annotate the type returned by `Table.View`'s `GetType()` handler with key information. To help us better understand when/what key information to provide, can you give...

**Expected behavior** The M language specification and the existing Power Query SDK allow a section member to use an _exclusive identifier reference_ to refer to itself (e.g. the `SumConsecutive(x -...

bug

**Expected behavior** To align with Query Editor's behavior, in `[1.=true]`, "1." should be rejected as an invalid identifier. ![image](https://user-images.githubusercontent.com/857202/126382406-3a927bfd-6752-4fe8-ba90-da6e145ef2dc.png) **Actual behavior** The parser (as tested in VSCode using the [Power...

bug