chore(deps): update dependency oban to v2.20.2 #493
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.17.4->2.20.2Release Notes
oban-bg/oban (oban)
v2.20.2Compare Source
Enhancements
[Telemetry] Add domain to
attach_default_loggermetadataAlthough this information is present in the source attribute, it’s not part of the metadata,
it’s part of the attributes. And when
encode = true, it’s generated as a string, which makesit less convenient to work with.
[Cron] Add unique cron entry identifiers to job meta
A id value is generated for each cron entry and stored in the job's meta to distinguish between
different cron jobs with the same expression.
Bug Fixes
[Stager] Order staging query to maximize compound index usage
The core compound index couldn't be utilized by staging queries when the planner estimated a
large number of hits. Changing the query to order by
scheduled_atandid, it becomes anindex scan.
It would still be more efficient to use a dedicated index, but OSS doesn't have any mechanisms
for automatic concurrent index creation and we have to save it for later.
[Executor] Take measurements from the executing process
When Producer starts jobs, it calls
Executor.newin its own process, before handing it off toTask.Supervisor.async_nolinkto callExecutor.call. That means it used the Producerpid,and took measurements from that process.
[Oban] Set
scheduledstate correctly when updating withupdate_job/3When the
scheduled_attimestamp is set duringupdate_job, the state is automatically set toscheduled. This mirrors the functionality ofinsert_job.Note that the value of the timestamp isn't considered. Setting a timestamp in the past will set
the job as
scheduled. This isn't a problem in practice because the stager will change thestate to
availableon the next cycle anyhow.[Repo] Include
:deadlock_detectedin expected errorsDeadlocks are automatically resolved by Postgres because it aborts one transaction. At that
point, the retry should succeed quickly since the blocking transaction is gone.
v2.20.1Compare Source
Bug Fixes
[Worker] Handle missing fields in unique Worker validation.
Workers that specified
keyswithoutfieldswould fail validation at compile time. Nowdefault values are considered for
use Oban.Workeras well asJob.new/2.v2.20.0Compare Source
Enhancements
MigrationAdd V13 migration for indexing cancelled and discarded states.A new V13 migration adds compound indexes to significantly improve
Oban.Plugins.Prunerperformance when cleaning up
discardedandcancelledjobs. This is especially beneficial forapplications that process large volumes of jobs and retain them for extended periods.
RepoExpose dynamic repo switching aswith_dynamic_repo/2The function was previously internal, which made impossible to use in external modules or extend
upon. Now custom plugins and extensions can use
Repo.with_dynamic_repo/2to use the configureddynamic repo options.
Bug Fixes
[Oban] Allow
insert_all/1,3via Oban facadeThe
insert_all/1andinsert_all/3function variants were missing from the generated Obanfacade functions when using a named instance.
[Testing] Generate correct
perform_job/1,2,3clauses.The
perform_job/2,3clauses generated byuse Oban.Testingdidn't handle theperform_job/2variant designed to run jobs created with
build_job/3. This caused test failures when tryingto execute jobs built using the
build_job/3helper function.The fix generates the missing
perform_job/2clause along with a convenientperform_job/1variant, ensuring all testing scenarios work seamlessly regardless of how jobs are constructed.
[Testing] Restrict inline execution to
availableandscheduledstates.Jobs in the
completedstate or other non-runnable states were incorrectly attempted by theinline engine, potentially causing errors or unexpected behavior during testing.
[Worker] Disallow
:keyswhen:fieldsdoesn't contain:argsor:metaUnique job configurations using
:keyswere allowed even when:fieldsdidn't include:argsor
:meta, which would result in runtime errors since keys can only extract values from thesekeyable fields.
[Cron] Fix error message when the crontab has an invalid range.
Cron validation errors for invalid ranges were returning exception structs instead of readable
error messages, making it difficult to understand and fix crontab configuration issues.
v2.19.4Compare Source
v2.19.3Compare Source
v2.19.2Compare Source
Enhancements
[Oban] Allow setting a MFA in
:get_dynamic_repoAnonymous functions don't work with OTP releases, as anonymous functions cannot be used in configuration. Now a MFA tuple can be passed instead of a fun, and the scaling guide recommends a function instead.
[Cron] Include configured timezone in cron job metadata
Along with the cron expression, stored as
cron_expr, the configured timezone is also recorded ascron_tzin cron job metadata.[Cron] Add
next_at/2andlast_at/2for cron time calculationsThis implements jumping functions for cron expressions. Rather than naively iterating through minutes, it uses the expression values to efficiently jump to the next or last cron run time.
[Executor] Always convert
queue_timeto native time unitThe telemetry docs state that measurements are recorded in
nativetime units. However, that hasn't been the case forqueue_timefor a while now. It usually worked anyway native and nanosecond is of the same resolution, but now it is guaranteed.Bug Fixes
[Peer] Correct leadership elections for the
DolphinengineMySQL always returns the number of entries attempted, even when nothing was added. The previous match caused all nodes to believe they were the leader. This uses a secondary query within the same transaction to detect if the current instance is the leader.
[Reindexer] Drop invalid indexes concurrently when reindexing.
The
DROP INDEXquery would lock the whole table with anACCESS EXCLUSIVElock and could cause queries to fail unexpectedly.[Testing] Use
Ecto.Type.cast/2for backward compatibilityThe
cast!/2function wasn't added until Ecto 3.12. This reverts time casting to usecast/2for compatibility with earlier Ecto versions.[Worker] Validate that the
uniqueoption isn't an empty list.An empty list was accepted at compile time, but wouldn't be valid later at runtime. Now the two validations match for greater parity.
v2.19.1Compare Source
Bug Fixes
[Mix] Improve igniter installer idempotency and compatibility.
The installer now uses
on_exists: :skipwhen generating a migration, so it composes safely with other igniter installers. It also removes unnecessaryadd_depcalls that would overwrite a previously specified Oban version with~> 2.18.v2.19.0: v2.19Compare Source
The minimum Elixir version is now v1.15. The official policy is to only support the three latest versions of Elixir.
🐬 MySQL Support
Oban officially supports MySQL with the new
Dolphinengine. Oban supports modern (read "with full JSON support") MySQL versions from 8.4 on, and has been tested on the highly scalable Plantescale database.Running on MySQL is as simple as specifying the
Dolphinengine in your configuration:With this addition, Oban can run in estimated 10% more Elixir applications!
⚗️ Automated Installer
Installing Oban into a new application is simplified with a new igniter powered
mixtask. The newoban.installtask handles installing and configuring a standard Oban installation, and it will deduce the correctengineandnotifierautomatically based on the database adapter.This
oban.installtask is currently the recommended way to install Oban. As a bonus, the task composes together with other igniter installers, making it possible to installphoenix,ash,oban, and other packages with a single command:Look at the
Mix.Oban.Installdocs for full usage and options.📔 Logging Enhancements
Logging in a busy system may be noisy due to job events, but there are other events that are particularly useful for diagnosing issues. A new
eventsoption forattach_default_logger/1allows selective event logging, so it's possible to receive important notices such as notifier connectivity issues, without logging all job activity:Along with filtering, there are new events to make diagnosing operational problems easier.
A
peer:electionevents logs leadership changes to indicate when nodes gain or lose leadership. Leadership issues are rare, but insidious, and make diagnosing production problems especially tricky.Helpfully,
plugin:stopevents are now logged for all core plugins via an optional callback, andplugin:exceptionevents are logged for all plugins regardless of whether they implement the callback. Runtime information is logged forCron,Lifeline,Pruner,Stager, andReindexerplugins.For example, every time
Cronruns successfully it will output details about the execution time and all of the inserted job ids:⛵️ Official JSON
Oban will default to using the official
JSONmodule built into Elixir v1.18+ when available.A new
Oban.JSONmodule detects whether the official ElixirJSONmodule is available at compile time. If it isn't available, then it falls back toJason, and ifJasonisn't available (which is extremely rare) then it warns about a missing module.This approach was chosen over a config option for backward compatibility because Oban will only support the JSON module once the minimum supported Elixir version is v1.18.
v2.19.0 — 2025-01-16
Enhancements
[Oban] Start all queues in parallel on initialization.
The midwife now starts queues using an async stream to parallelize startup and minimize boot time for applications with many queues. Previously,
[Oban] Safely return
nilfromcheck_queue/2when checking queues that aren't running.Checking on a queue that wasn't currently running on the local node now returns
nilrather than causing a crash. This makes it safer to check the whether a queue is running at all without atry/catchclause.[Oban] Add
check_all_queues/1to gather all queue status in a single function.This new helper gathers the "check" details from all running queues on the local node. While it was previously possible to pull the queues list from config and call
check_queue/2on each entry, this more accurately pulls from the registry and checks each producer concurrently.[Oban] Add
delete_job/2anddelete_all_jobs/2operations.This adds
Oban.delete_job/2,Oban.delete_all_jobs/2, Engine callbacks, and associated operations for all native engines. Deleting jobs is now easier and safer, due to automatic state protections.[Engine] Record when a queue starts shutting down
Queue producer metadata now includes a
shutdown_started_atfield to indicate that a queue isn't just paused, but is actually shutting down as well.[Engine] Add
rescue_jobs/3callback for all engines.The
Lifelineplugin formerly used two queries to rescue jobs—one to mark jobs with remaining attempts asavailableand another thatdiscardedthe remaining stuck jobs. Those are now combined into a single callback, with the base definition in theBasicengine.MySQL won't accept a select in an update statement. The Dolphin implementation of
rescue_jobs/3uses multiple queries to return the relevant telemetry data and make multiple updates.[Cron] Introduce
Oban.Cronwithschedule_interval/4The new
Cronmodule allows processes, namely plugins, to get cron-like scheduled functionality with a single function call. This will allow plugins to removes boilerplate around parsing, scheduling, and evaluating for cron behavior.[Registry] Add
select/1to simplify querying for registered modules.[Testing] Add
build_job/3helper for easier testing.Extract the mechanism for verifying and building jobs out of
perform_job/3so that it's usable in isolation. This also introducesperform_job/2for executing built jobs.[Telemetry] Add information on leadership changes to
oban.peer.electionevent.An additional
was_leader?field is included in[:oban, :peer, :election | _]event metadata to make hooking into leadership change events simpler.[Telemetry] Add callback powered logging for plugin events.
Events are now logged for plugins that implement the a new optional callback, and exceptions are logged for all plugins regardless of whether they implement the callback.
This adds logging for
Cron,Lifeline,Pruner,Stager, andReindexer.[Telemetry] Add peer election logging to default logger.
The default logger now includes leadership events to make identifying the leader, and leadership changes between nodes, easier.
[Telemetry] Add option to restrict logging to certain events.
Logging in a busy system may be noisy due to job events, but there are other events that are particularly useful for diagnosing issues. This adds an
eventsoption toattach_default_logger/1to allow selective event logging.[Telemetry] Expose
default_handler_id/0for telemetry testing.Simplifies testing whether the default logger is attached or detached in application code.
Chores
PostgrestoDatabasebecause it is also used for MySQL databases.Bug Fixes
[Oban] Allow overwriting all
insert/*functions arities afteruse Oban.[Node] Correctly handle
:nodeoption forscale_queue/2Scoping
scale_queue/2calls to a single node didn't work as advertised due to some extra validation for producer meta compatibility.[Migration] Fix version query for databases with non-unique
oidUse
pg_catalog.obj_description(object_oid, catalog_name), introduced in PostgreSQL 7.2, to specify thepg_classcatalog so only theoban_jobsdescription is returned.[Pruner] Use state specific fields when querying for prunable jobs.
Using
scheduled_atis not correct in all situations. Depending on job state, one ofcancelled_at,discarded_at, orscheduled_atshould be used.[Peer] Conditionally return the current node as leader for isolated peers.
Prevents returning the current node name when leadership is disabled.
[Testing] Retain time as microseconds for
scheduled_attests.Include microseconds in the
beginanduntiltimes used for scheduled_at tests with a delta. The prior version would truncate, which rounded theuntildown and broke microsecond level checks.[Telemetry] Correct spelling of "elapsed" in
oban.queue.shutdownmetadata.v2.18.3Compare Source
Enhancements
[Basic] Use the shared concat operator when appending errors.
The standard
pushoperation for updates is designed for arrays and usesarray_appendinternally. This replaces all use ofpushwith a fragment that uses the||operator instead, which works for both arrays and jsonb.CockroachDB doesn't support arrays of jsonb, but they do support simple jsonb columns. Now we can append to the errors column in either format for CRDB compatibility.
Bug Fixes
[Queue] Link the dynamic queue supervisor and
Midwifefor automatic restarts.When a producer crashes it brings the queue's supervisor down with it. With enough database errors, the producer may crash repeatedly enough to exhaust restarts and bring down the DynamicSupervisor in charge of all queues.
Now the supervisor is linked to the midwife to ensure that the midwife restarts as well, and it restarts all of the queues.
[Testing] Handle
insert_all/3with streams for the:inlinetesting engine.The inline engine's
insert_all_jobscallback incorrectly expected changesets to always be a list rather and couldn't handle streams.v2.18.2Compare Source
Bug Fixes
[Repo] Prevent debug noise by ensuring default opts for standard transactions.
Without default opts each transaction is logged. Many standard operations execute each second, which makes for noisy logs. Now transaction opts are passed as a third argument to ensure defaults are applied.
[Repo] Increase transaction retry delay and increase with each attempt.
Bump the base transaction retry from 100ms to 500ms, and increase linearly between each successive attempt to provide deeper backoff. This alleviates pressure on smaller connection pools and gives more time to recover from contentions failures.
v2.18.1Compare Source
Enhancements
[Repo] Automatically retry all transactions with backoff.
Avoid both expected an unexpected database errors by automatically retrying transactions. Some operations, such as serialization and lock not available errors, are likely to occur during standard use depending on how a database is configured. Other errors happen infrequently due to pool contention or flickering connections, and those should also be retried for increased safety.
This change is applied to
Oban.Repo.transaction/3itself, so it will apply to every location that uses transactions.[Migration] Declare
tagsas an array oftextrather thanvarchar.We don't provide a limit on the size of tags and they could conceivably be larger than 256 characters. Externally the types are interchangeable, but internally there are minor advantages to using the text type.
There isn't a new migration; this change is only for new tables.
Bug Fixes
query!/4toquery!rather thanquerywithout a bang.v2.18.0Compare Source
🔭 Queue Shutdown Telemetry
A new queue shutdown event,
[:oban, :queue, :shutdown], is emitted by each queue when it terminates. The event originates from thewatchmanprocess, which tracks the total ellapsed time from when termination starts to when all jobs complete or the allotted period is exhausted.Any jobs that take longer than the
:shutdown_grace_period(by default 15 seconds) are brutally killed and left as orphans. The ids of jobs left in an executing state are listed in the event'sorphanedmeta.This also adds
queue:shutdownlogging to the default logger. Only queues that shutdown with orphaned jobs are logged, which makes it easier to detect orphaned jobs and which jobs were affected:🚚 Distributed PostgreSQL Support
It's now possible to run Oban in distributed PostgreSQL databases such as Yugabyte. This is made possible by a few simple changes to the
Basicengine, and a newunloggedmigration option.Some PostgreSQL compatible databases don't support unlogged tables. Making
oban_peersunlogged isn't a requirement for Oban to operate, so it can be disabled with a migration flag:🧠 Job Observability
Job
stopandexceptiontelemetry now includes the reported memory and total reductions from the job's process. Values are pulled withProcess.info/2after the job executes and safely fall back to0in the event the process has crashed. Reductions are a rough proxy for CPU load, and the new measurements will make it easier to identify computationally expensive or memory hungry jobs.In addition, thanks to the addition of
Process.set_labelin recent Elixir versions, the worker name is set as the job's process label. That makes it possible to identify which job is running in apidvia observer or live dashboard.v2.18.0 — 2024-07-26
Enhancements
[Job] Support simple
unique: trueandunique: falsedeclarationsUniqueness can now be enabled with
unique: trueand disabled withunique: falsefrom job options or a worker definition. Theunique: trueoption uses all the standard defaults, but sets the period to:infinityfor compatibility with Oban Pro's newsimpleunique mode.[Cron] Remove forced uniqueness when inserting scheduled jobs.
Using uniqueness by default prevents being able to use the Cron plugin with databases that don't support uniqueness because of advisory locks. Luckily, uniqueness hasn't been necessary for safe cron insertion since leadership was introduced and scheduling changed to top-of-the-minute many versions ago.
[Engine] Introduce
check_available/1engine callbackThe
check_available/1callback allows engines to customize the query used to find jobs in theavailablestate. That makes it possible for alternative engines, such Oban Pro's Smart engine, to check for available jobs in a fraction of the time with large queues.[Peer] Add
Oban.Peer.get_leader/2for checking leadershipThe
get_leader/2function makes it possible to check which node is currently the leader regardless of the Peer implementation, and without having to query the database.[Producer] Log a warning for unhandled producer messages.
Some messages are falling through to the catch-all
handle_info/2clause. Previously, they were silently ignored and it degraded producer functionality because inactive jobs with dead pids were still tracked asrunningin the producer.[Oban] Use structured messages for most logger warnings.
A standard structure for warning logs makes it easier to search for errors or unhandled messages from Oban or a particular module.
Bug Fixes
[Job] Include all fields in the unique section of
Job.t/0.The unique spec lacked types for both
keysandtimestampkeys.[Basic] Remove
materializedoption fromfetch_jobs/3.The
MATERIALIZEDclause for CTEs didn't make a meaningful difference in job fetching accuracy. In some situations it caused a performance regression (which is why it was removed from Pro's Smart engine a while ago).v2.17.12Compare Source
v2.17.11Compare Source
Bug Fixes
[Oban] Handle deprecation warnings from Elixir 1.17
[Notifier] Prevent noisy logging about switching between modes.
There's an apparent race condition in Sonar between pruning stale nodes on
:pingand updating the status after a notification. This primarily happens in development for two reasons:Using
monotonic_time/1instead ofsystem_time/1guards against clock drift/time warp effects.[Stager] Prevent notification status timeouts from bubbling into the Stager.
A clogged Ecto pool could cause cascading errors on startup due to a sequence of calls between the
Notifier,Sonar, andStager.Sonarsends a notification inhandle_continueon startup.Notifierwaits for a connection from the Ecto pool.Stagerchecks for the connection status on startup, which would eventually time out because theSonarhadn't finished initializing.Stagercrashes from the timeout error.This makes the following changes to prevent this sequence of events:
Stagerno longer gets the sonar status during startup.Notifiercatches timeout errors fromSonarchecks, warns about it, then returns an:unknownstatus.[Engine] Defensively check the process dictionary during inline testing.
Not all processes are guaranteed to return a value for the process dictionary. Sometimes a value was missing during inline testing, which would crash the test.
[Basic] Set
conflict?flag when encountering a unique advisory lock.The
conflict?flag wasn't set when inserting a unique job was blocked by an advisory lock. Now the flag is set on either a fetched duplicate, or when the advisory lock is set.[Job] Correct
replace_by_state_optiontype by switching from keyword to tuples.[Config] Correctly type
shutdown_grace_periodas anintegerrather than atimeout.v2.17.10Compare Source
Enhancements
[Oban] Make all generated functions from
use Obanoverridable.Now the functions generated by
use Obanare all marked withdefoverridablefor extensibility.Bug Fixes
[Testing] Use
$callersrather than$ancestorsfor ancestry tree check.We care about Tasks for inline testing checks, not normal supervision tree ancestry. The
$callersentry is the appropriate mechanism to find the trail of calling processes:v2.17.9Compare Source
Enhancements
[Testing] Check process ancestry tree for
with_testing_modeoverride.Cascade the
with_testing_modeblock to nested processes that make use of:$ancestryin the process dictionary, i.e. tasks. Now enqueuing a job within spawned processes likeTask.asyncorTask.async_streamwill honor the testing mode specified inwith_testing_mode/2.[PG] Support alternative namespacing in
PGnotifierBy default, all Oban instances using the same
prefixoption would receive notifications from each other. Now you can use thenamespaceoption to separate instances that are in the same cluster without changing theprefix.Bug Fixes
[Oban] Restore zero arity version of
pause_all_queues/0Both pause and resume variants lost their default argument in a refactor that shifted around guard clauses.
[Oban] Add
:oban_drainingto process dict while drainingThe flag marks the test process while draining to give hints to the executor and engines. It fixes an incompatibility between
Oban.drain_queue/2and Pro'sTesting.drain_jobs/2.v2.17.8Compare Source
Enhancements
[Backoff] Backoff retry on DBConnection and Postgrex errors from GenServer calls.
GenServer calls that result in a
ConnectionErrororPostgrex.Errorshould also be caught and retried rather than crashing on the first attempt.Bug Fixes
[Notifier] Check for a live notifier process and propagate notify errors.
The
Notifier.notify/1spec showed it would always return:ok, but that wasn't the case when the notifier was disconnected or the process was no longer running. Now an error tuple is returned when a notifier process isn't running.This situation happened most frequently during shutdown, particularly from external usage of the Notifier like an application or the
oban_metpackage.In addition, the errors bubble up through top level
Obanfunctions likescale_queue/1,pause_queue/1, etc. to indicate that the operation can't actually succeed.[Peers.Postgres] Rescue
DBConnection.ConnectionErrorin peer leadership check.Previously, only
Postgrex.Errorexceptions were rescued and other standard connection errors were ignored, crashing the Peer. Because leadership is checked immediately after the peer initializes, any connection issues would trigger a crash loop that could bring down the rest of the supervision tree.v2.17.7Compare Source
Bug Fixes
[Notifier] Prevent Sonar from running in
:testingmodes.Sonar has no purpose during tests, and it can cause sandbox issues when tests run with the Postgres notifier.
[Oban] Correctly handle pause and resume all with opts.
The primary clause had two default arguments and it was impossible to call
pause_all_queues/1orresume_all_queues/1with opts and no name.v2.17.6Compare Source
Enhancements
[Cron] Include cron indicator and original cron expression in meta.
When the Cron plugin inserts jobs the original, unnormalized cron expression is now stored in a job's meta under the
cron_exprkey. For compatibility with Pro'sDynamicCron, meta also hascron: trueinjected.[Worker] Change
backoff/1spec to allow immediate rescheduling by returning0The callback now specifies a
non_neg_integerto allow retrying 0 seconds into the future. This matches the abilitiy to use{:snooze, 0}.Bug Fixes
[Notifier] Revert using single connection to deliver notices.
Production use of the single notifier connection in various environments showed timeouts from bottlenecks in the single connection could crash the connection and start new ones, leaving extra idle processes. In addition, Use interpolated NOTIFY instead of pg_notify with a JSON argument added parsing load because it could no longer use prepared statements.
[Worker] Apply custom backoff on timeout and unhandled exit
A worker's custom
backoff/1wasn't applied after aTimeoutErroror unhandled exit. That's because the producer stores the executor struct before resolving the worker module. Now the module is resolved again to ensure custombackoff/1are used.[Job] Revert setting the default priority key in Job schema.
The Ecto default was removed to allow overriding the default in the database and it was purposefully removed.
v2.17.5Compare Source
Enhancements
[Notifier] Use the Postgres notifier's connection to deliver notifications.
The Postgres notifier holds a single connection for listening and relaying messages. However, it wasn't used to dispatch messages; that was left to queries through the Ecto pool. Those queries were noisy and put unnecessary load on the pool, particularly from insert notifications.
Now notifications are delivered through the notifier's connection—they don't require a pool checkout, and they won't clutter Ecto logs or telemetry.
[Engine] Emit insert trigger notification directly from
Enginecallbacks.Notifications are now sent from the engine, within the
insert_*telemetry block, so the timing impact is visible. In addition, notifications aren't emitted forscheduledjobs, as there's nothing ready for producers to fetch.Bug Fixes
[Notifier] Track and compare sonar pings using the correct time unit.
The notifier's status tracker pruned stale nodes using mismatched time units, causing constant status change events despite nothing changing. This ensures the recorded and compared times are both milliseconds, not a mixture of seconds and native time.
[Cron] Retain
@rebootcron entries until node becomes leader.With rolling deploys it is frequent that a node isn't the leader the first time cron evaluates. However,
@rebootexpressions were discarded after the first run, which prevented reboots from being inserted when the node acquired leadership.[Oban] Require Ecto v3.10 to support
materializedflag added in the previous patch.The
materializedoption wasn't supported by Ecto until v3.10. Compiling with an earlier version causes a compilation error.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.