Igor Gassmann

Results 43 issues of Igor Gassmann

## Description ## Motivation ## Type of change (choose one) - [ ] Chore (refactors, upgrades, etc.) - [ ] Bug fix (non-breaking change that fixes an issue) - [...

## Description This applies the improvements listed on the [issue](https://linear.app/inngest/issue/INN-2602/replay-ux-improvements). ## Type of change (choose one) - [ ] Chore (refactors, upgrades, etc.) - [ ] Bug fix (non-breaking change...

This fixes the code example in the "Composing Server Actions with Actions" section and updates the imports for all the code examples on the page to ensure consistency with the...

CLA Signed

### Minimal reproducible example https://github.com/IGassmann/expo-bug-reproduction ### What platform(s) does this occur on? Web ### Where did you reproduce the issue? on web ### Summary The Expo’s babel `minifyTypeofWindow` transformation strips...

Issue accepted

### Minimal reproducible example https://github.com/IGassmann/expo-bug-reproduction/tree/require_external ### What platform(s) does this occur on? Web ### Where did you reproduce the issue? in a development build ### Summary When using a web...

needs review

## OpenTelemetry Trace Exports When OpenTelemetry tracing is enabled, the performance latency test results are significantly affected. Disabling it improves the results by approximately **23%** for the "creating 10,000 items"...

performance

We want to setup a performance testing strategy for LiveStore so that we can: ## Goals 1. Identify bugs (memory leaks, crashes, race conditions, irresponsive tab) 2. Identify optimization opportunities...

performance
testing

Currently, the persisted database is [configured with the `MEMORY` journaling mode](https://github.com/livestorejs/livestore/blob/272878d90fa061970e2dc15c9b40ee68dbad8b2e/packages/%40livestore/common/src/leader-thread/connection.ts#L20). While this mode is faster by saving disk I/O, it does at the expense of the safety and integrity...

design decision
adapter:web
sqlite
adapter:node

Browsers impose a storage quota to prevent websites from storing excessive data. LiveStore utilizes the OPFS API for file storage, which consumes this quota. If a website tries to store...

bug
adapter:web

LiveStore [creates a new app DB file in OPFS every time the schema is updated](https://github.com/livestorejs/livestore/blob/e68159e129913b1967515de4fcacc34e0d8a76bb/packages/@livestore/web/src/web-worker/common/persisted-sqlite.ts#L120). The [`AccessHandlePoolVFS` class](https://github.com/livestorejs/livestore/blob/main/packages/%40livestore/web/src/sqlite/wa-sqlite/AccessHandlePoolVFS.ts), which manages the file connection pool to the OPFS files, only allow...

bug
migrations
adapter:web
sqlite