Andreas Heissenberger

Results 43 comments of Andreas Heissenberger

This worked for me to get a better validation of number fields - browser builtin validation failed to block negative values: ```php Field::make('text', 'participants_slots_max', __('Participants')) ->set_attribute('type', 'number') ->set_attribute('min', '0') ->set_required(true)...

it is on the road map of sentry.io but they have to rewrite part of there code (https://github.com/getsentry/sentry/issues/2632#issuecomment-289914269) which is now primarily focused on browser based source maps

@esetnik Have a look at my fork https://github.com/aheissenberger/serverless-sentry-plugin/tree/feature/upload-sourcemaps which supports uploads with sentry-cli and the new Sentry Unified Node.js SDK. Sourcemaps need to be part of the zip created for...

I found this option when looking into the code of the official webpack plugin: https://github.com/getsentry/sentry-webpack-plugin I tried to add it but failed to provide the related information programatically at the...

> @developit is there is a way to get microbundle to output a file with the `.mjs` extension? Right now when I run microbundle with that config, it outputs `dist/index.modern.js`....

same problem with @material-ui/utils: import { Memo, ForwardRef } from '/@npm/react-is'; => `utils:5 Uncaught SyntaxError: The requested module '/@npm/react-is' does not provide an export named 'Memo'`

I have written a command line tool in typescript/deno which converts the output parts of a notebook to markdown: https://github.com/aheissenberger/notebook-to-markdown I think this is much better as it allows to...

Here is my working solution: 1. create the lambda function without the event 2. create the queue in resources 3. create the source mapping with "DependsOn" **Important:** Name of Lamda...

I looked into the adapter: https://github.com/honojs/hono/blob/09845e5e045c9da08c0b2d46a3882ff47ca98e4d/src/adapter/aws-lambda/handler.ts#L200-L202 In line 200 the value from `event.rawPath` ist used for V2 Events and combined with the domainName in line 202. This needs to be...

The best fix until the AWS Gateway provides a fix for `rawPath` in Version "2.0" is to switch back to Version "1.0". This is possible for specific path and methods.