Maciej Malecki

Results 10 issues of Maciej Malecki

The function takes the result and env from the previous attempt and returns a new env for the retry request. It allows supporting "retry with new authorization token" cases.

**Describe the bug** When you perform an update on the record, it won't recalculate its loaded values. It means the result will include the calculations from before the update. You...

bug
good first issue

This is exactly the same issue as described in https://github.com/lpil/mix-test.watch/issues/28. However, moving the options under the dev configuration (via if statement or using dedicated `config/dev.exs` file) does not solve the...

It has been discussed in https://github.com/smt116/node-native-ext-loader/pull/3. The current solution is to match against "./" and ".\\" and skip using `path.join` in such case. Find a solution that doesn't require hardcoding...

### Environment * Elixir & Erlang/OTP versions (elixir --version): Elixir 1.13.4 (compiled with Erlang/OTP 23) * Which version of Dialyxir are you using? (cat mix.lock | grep dialyxir): 1.2.0 ###...

**Describe the bug** The following custom unique index: ```elixir postgres do # ... custom_indexes do index(["provider", "provider_id"], unique: true, where: "archived_at IS NULL and provider_id IS NOT NULL") end end...

enhancement
good first issue

**Describe the bug** Calculation with `allow_nil?: false` has no effect on record that loads using PostgreSQL query that resolves to `NULL` (e.g., `(NULL :: UUID = `...` :: UUID) ::...

bug

It allows extending the job with additional options without breaking people's applications. See https://github.com/rails/rails/pull/42452/files#r678742445. [#42430] /cc @rafaelfranca

activerecord

### Steps to reproduce First setup the sample application: 1. `gem install rails -v6.1.4` 2. `rails new ConcurrentAttachTestApp --skip-action-mailer --skip-action-mailbox --skip-action-text --skip-action-cable --skip-sprockets --skip-spring --skip-listen --skip-javascript --skip-turbolinks --skip-jbuilder --skip-test --skip-system-test...

With reproduction steps
activestorage

In complex systems, there are often actions that suppose to only be used internally. For example, a way of user lookup by some custom key or creating a record. Currently,...

good first issue