Matthew Peveler

Results 147 issues of Matthew Peveler

Right now, there's some number of tests that utilize xpath selectors to find a specific element in the page. If we add a unique ID scheme for a lot of...

enhancement / feature request
Testing / Continuous Integration (CI)
good first issue

The cloud allows setting IP allow list for a service: https://docs.timescale.com/use-timescale/latest/security/ip-allow-list/ It'd be nice to be able to configure this via terraform.

PR adds an API for managing facts in the semantic catalog so that you can: 1. add a fact 2. drop an existing fact 3. edit an existing fact The...

PR reworks how we handle the foreign key pragma in sqlite, so that we turn on the pragma before doing any plan actions, and turn it back on after all...

If I do: ```php $this->table('foo') ->addColumn('id_2', 'integer') ->create(); $this->table('foo') ->changePrimaryKey('id_2') ->update(); ``` After the create I'll have: ```sql CREATE TABLE `foo` (`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, `id_2` INTEGER...

PR updates phpstan from 1.9.x to 2.1.x, which is the latest major/minor release at this time.

Some adapters have a maximum value of allowed parameters per query. For example, for sqlite, per [their docs](https://www.sqlite.org/limits.html): > To prevent excessive memory allocations, the maximum value of a host...

> On a side note, the docs still says `default_migration_table` but I think that's deprecated since `0.13`. _Originally posted by @zkwbbr in [#2264](https://github.com/cakephp/phinx/issues/2264#issuecomment-1921995968)_

docs

### Description I've setup my app to make heavy use of `logfire.span` with added attributes, like: ```python with logfire.span("loading_users", num_users=len(users_data)): pass ``` For local development, I want to see this...

Feature Request