Paweł Lipski
Paweł Lipski
Akka Persistence provides docs on how to migrate events when using Jackson-based serializer: https://doc.akka.io/docs/akka/current/serialization-jackson.html#schema-evolution or a protobuf-based one: https://doc.akka.io/docs/akka/current/persistence-schema-evolution.html [akka-kryo](https://github.com/altoo-ag/akka-kryo-serialization) docs, in turn, explicitly state that: _Note that this serializer...
When checker stub file change, then old cached result of compilation might still be used, without recompilation, leading to false positives and/or negatives. It would be nice if this plugin...
`.toString` on case objects is generated by Scala compiler, not overridden by Enumeratum... so when a `entryName`-mangling mixin like `UpperSnakecase` is involved, `.toString` and `.entryName` return different things. To avoid...
As suggested by @LeeAlephium on #616.
As for now, most `deps` in tox.ini are defined as: ```tox deps = pytest pytest-mock pytest-xdist ``` This is convenient, but might lead to non-reproducible builds in the future (as...
I've got sth like ``` main │ └─FOO-138 PR #32 │ └─refactor/FOO-131-subnet-typo PR #33 WRONG PR BASE or MACHETE PARENT? PR has 'main' ``` Then I've run `git machete github...
Such cases were common in the codebase, most notably in one user-facing message: ``` git_machete/client.py:1627: "Consider running:\n `git machete fork-point --unset-override {branch}`\n")) ``` I've used some basic regexes to find...
Pls check other similar cases: ``` Creating a PR from FOO-131 to main...A pull request already exists for foo:FOO-131. ```
As reported by @mkondratek: ``` mkondratek@VL-D-1096 git-machete-intellij-plugin % git machete s git rev-parse --short 0958ae8b40cfcdd991af5fa08709011c43344f51^{commit} returned 128 stderr: fatal: Needed a single revision ``` TBD if it's corrupted git repo,...
Repro: 1. 2 unique commits on a branch Y 2. delete its base branch X 3. override fork-point for Y to Y~2 4. `git machete squash` while on Y 5....