Mathieu Pillard

Results 384 comments of Mathieu Pillard

Note: At the moment, you can't really edit block versions. You're either deleting versions from a block (unblocking them) or adding some (blocking them). This is all done through `BlocklistSubmission`,...

Re-using `BlocklistSubmission` flow, we could: - Expose a new radio button in the blocklist submission for adding blocks, determining if that's a soft or a hard block submission. You wouldn't...

Some mockup of what the new action to soften a block would look like on a complex set of versions: ![new_soften_action](https://github.com/user-attachments/assets/0e4d7852-bdfa-4e13-8908-00510289f40c) Checkboxes would only be shown in that case for...

Probably a Q2/Q3 thing, this should be part of the technical roadmap for the year.

> Client libraries should be updated first, then we'll need to see if our documents/indexes are compatible with 8.x, then perform the update in local/dev/stage/prod envs. I have done this...

>> I believe the idea was that we might do this pre-calculation as part of the process that does the git extraction for a version. > mmm what exactly should...

I would prefer we do it with a more permanent storage than memcached. Ultimately the file entries list won't change for a given commit, and we definitely want it, so...

code-manager and related code are no longer a thing.

@chrstinalin looks like this can still fail if sending `" "`: https://mozilla.sentry.io/issues/5899353034/?project=6224627&referrer=github-pr-bot I can reproduce with `curl http://olympia.test/api/v5/addons/search/\?type\=statictheme\&color\=%20` Maybe to be extra safe we need something like: ```diff diff --git...

Maybe instead of `lstrip('#')` we could remove anything that is not a valid hexadecimal character before doing the `[:6]` part if we really want to be nice. Or just throw...