Skip to content

chore(deps): update dependency ecto_sql to v3.13.4#12

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/ecto_sql-3.x-lockfile
Open

chore(deps): update dependency ecto_sql to v3.13.4#12
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/ecto_sql-3.x-lockfile

Conversation

@renovate
Copy link

@renovate renovate bot commented Jan 14, 2025

This PR contains the following updates:

Package Type Update Change
ecto_sql (source) prod minor 3.6.23.13.4

Release Notes

elixir-ecto/ecto_sql (ecto_sql)

v3.13.4

Compare Source

Bug fixes
  • [mysql] Do not crash mix ecto.load with large dumped databases

v3.13.3

Compare Source

Enhancements
  • [sql] Tag generated functions as :generated
  • [sql] Add :wrap_in_transaction option to explain
Bug fixes
  • [mysql] Fix structure_load/2 for MySQL 9.4+

v3.13.2

Compare Source

Enhancements
  • [sandbox] Allow passing through opts in Ecto.Adapters.SQL.Sandbox.allow/4 calls
  • [sql] Add support for ON DELETE SET DEFAULT
Bug fixes
  • [postgres] Fix nested array generated time columns

v3.13.1

Compare Source

Bug fixes
  • [postgres] Fix nested array generated columns

v3.13.0

Compare Source

Enhancements
  • [Ecto.Migration] Add support for index directions
  • [sql] Support :log_stacktrace_mfa for filtering or modifying stacktrace-derived info in query logs
  • [mysql] Support arrays using JSON for MariaDB
  • [mysql] Allow to specify :prepare per operation
  • [postgres] Add support for collations in Postgres
  • [postgres] Allow source fields in json_extract_path

v3.12.1

Compare Source

Enhancements
  • [sql] Support :pool_count option

v3.12.0

Compare Source

Enhancements
  • [Ecto.Migration] Add Ecto.Migration.remove_if_exists/1
  • [Ecto.Migrator] Warn for migration files that end in .ex
  • [sql] Support for subqueries in order_bys and group_bys
  • [mysql] Add check constraints for MySQL
  • [postgres] Add native bitstring support to Postgres
  • [postgres] Add support for :duration type
  • [postgres] Add :plan explain option for Postgres
  • [tds] Allow passing %Tds.Parameter structs as params for named parameter usage in query
Bug fix
  • [mysql] Type cast of integers in MySQL should use signed integers

v3.11.3

Compare Source

Enhancements
  • [mysql] Relax myxql dependency

v3.11.2

Compare Source

Enhancements
  • [postgres] Relax postgrex dependency

v3.11.1

Compare Source

Enhancements
  • [Ecto.Migration] Add :generated option to columns
  • [Ecto.Migration] Add index storage parameters (via :options) for Postgres
Bug fixes
  • [Ecto.Migration] Support :prefix on index rename
  • [Ecto.Migrator] Stop runner if migration fails

v3.11.0

Compare Source

Enhancements
  • [mix ecto.migrate] Add --log-level to ecto.migrate
  • [mix ecto.rollback] Add --log-level to ecto.rollback
  • [sql] Support fragment splicing
  • [sql] Support data-modifying CTEs
  • [sql] Add source to insert_ll, insert, update, and delete telemetry events
  • [tds] Include exec before stored procedure for TDS (for earlier SQLServer versions)
Bug fixes
  • [mix ecto.migrate] Read existing dynamic repo in migrations
  • [mix ecto.migrate] Don't add primary key on remove migration

v3.10.2

Compare Source

Enhancements
  • [migrations] Handle from: {reference, opts} in FK migrations
  • [mysql] Support MariaDB versioned tables
Bug fixes
  • [migrations] Don't add comment to removed columns
  • [migrations] Ensure module is loaded before checking for migration
  • [mysql] Fix for casting boolean values in MySQL

v3.10.1

Compare Source

Enhancements
  • [postgres] Allow Postgrex v0.17.x

v3.10.0

Compare Source

Enhancements
  • [Ecto.Migrator] Allow running the migrator in your supervision tree
  • [Ecto.Migrator] Allow renaming an index
  • [Ecto.Migrator] Add execute_file/1 and execute_file/2
  • [mix ecto.dump] Support dumping multiple prefixes on PostgreSQL and MySQL
  • [mysql] Improve constraint matching support on alternative implementations
  • [postgres] Allow CASCADE when dropping a constraint on postgres
Bug fixes
  • [mix ecto.load] Suppress query logs in mix ecto.load when quiet flag is given

v3.9.2

Compare Source

Enhancements
  • [migrator] Raise if target version in to/exclusive_to is not an integer
  • [mysql] Add support for cross lateral joins
  • [postgres] Add support for cross lateral joins
  • [postgres] Add support for materialized CTEs
  • [telemetry] Send cast_params metadata to telemetry events

v3.9.1

Compare Source

Enhancements
  • [mysql] Support :format option on explain
  • [postgres] Permit outer joins when using update_all
  • [sql] Add support for ONLY in index creation
Bug fixes
  • [mysql] Ensure locks are quoted
  • [mysql] Do not crash on mix ecto.drop when the database is unreachable
  • [postgres] Fix empty array compare in PostgreSQL
  • [sql] Allow function sources whose name begins with 'select'

v3.9.0

Compare Source

Enhancements
  • [migrations] Support primary_key configuration options in table
  • [migrations] Add :nulls_distinct option for unique indexes
  • [postgres] Support the use of advisory locks for migrations
  • [sql] Add dump_cmd to postgrex and myxql adapters
  • [sql] Log human-readable UUIDs by using pre-dumped query parameters
  • [sql] Support select aliases from selected_as/1 and selected_as/2
  • [telemetry] Emit schema_migration: true under telemetry_options

v3.8.3

Compare Source

Enhancements
  • [sql] Implement literal/1 support in fragments

v3.8.2

Compare Source

Bug fixes
  • [postgres] Fix possible breaking change on json_extract_path for boolean values introduced in v3.8.0
  • [sql] Colorize stacktrace and use : before printing line number

v3.8.1

Compare Source

Bug fixes
  • [mysql] Raise on a subquery with parameter on MySQL join
  • [sql] Do not invoke dynamic repositories in direct Ecto.Adapters.SQL operations

v3.8.0

Compare Source

Enhancements
  • [migrations] Support --to-exclusive in mix ecto.migrate and mix ecto.rollback
  • [mysql] Add :comment support on MySQL migrations
  • [postgres] Support :prepare option per operation
  • [postgres] Optimize json_extract_path comparisons in PostgreSQL
  • [sql] Optionally log last known call, publish stacktrace in telemetry
  • [telemetry] Include :repo option in telemetry events
Bug fixes
  • [sql] Ensure :timeout option is respected in Ecto.Adapters.SQL.explain/3

v3.7.2

Compare Source

Enhancements
  • [adapters] Support latest myxql and postgrex

v3.7.1

Compare Source

Enhancements
  • [migrations] Add :cascade option to drop
  • [migrations] Support --prefix in mix ecto.migrations
  • [migrations] Add --log-migrator-sql and --log-migrations-sql
  • [mysql] Cache more insert/update queries and allow :cache_statement to be set
  • [mssql] Support more recent tds versions
Bug fixes
  • [migrations] Consider the database prefix when locking tables

v3.7.0

Compare Source

Enhancements
  • [mysql] Support lateral joins
Bug fixes
  • [sql] Fix CTE subqueries not finding parent bindings

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/ecto_sql-3.x-lockfile branch from 0210d53 to 20a1a9e Compare March 3, 2025 14:22
@renovate renovate bot force-pushed the renovate/ecto_sql-3.x-lockfile branch from 20a1a9e to 99d9969 Compare June 18, 2025 18:55
@renovate renovate bot changed the title chore(deps): update dependency ecto_sql to v3.12.1 chore(deps): update dependency ecto_sql to v3.13.0 Jun 18, 2025
@renovate renovate bot force-pushed the renovate/ecto_sql-3.x-lockfile branch from 99d9969 to 2f4214d Compare June 20, 2025 21:54
@renovate renovate bot changed the title chore(deps): update dependency ecto_sql to v3.13.0 chore(deps): update dependency ecto_sql to v3.13.1 Jun 20, 2025
@renovate renovate bot force-pushed the renovate/ecto_sql-3.x-lockfile branch from 2f4214d to 087da6c Compare June 24, 2025 18:15
@renovate renovate bot changed the title chore(deps): update dependency ecto_sql to v3.13.1 chore(deps): update dependency ecto_sql to v3.13.2 Jun 24, 2025
@renovate renovate bot force-pushed the renovate/ecto_sql-3.x-lockfile branch from 087da6c to 69ba764 Compare August 10, 2025 14:34
@renovate renovate bot force-pushed the renovate/ecto_sql-3.x-lockfile branch from 69ba764 to 09e925e Compare October 21, 2025 09:11
@renovate renovate bot force-pushed the renovate/ecto_sql-3.x-lockfile branch from 09e925e to 85f8833 Compare December 8, 2025 20:10
@renovate renovate bot changed the title chore(deps): update dependency ecto_sql to v3.13.2 chore(deps): update dependency ecto_sql to v3.13.3 Dec 8, 2025
@renovate renovate bot changed the title chore(deps): update dependency ecto_sql to v3.13.3 chore(deps): update dependency ecto_sql to v3.13.4 Dec 27, 2025
@renovate renovate bot force-pushed the renovate/ecto_sql-3.x-lockfile branch from 85f8833 to 46798b9 Compare December 27, 2025 13:06
@renovate renovate bot force-pushed the renovate/ecto_sql-3.x-lockfile branch from 46798b9 to 5b36cec Compare February 2, 2026 16:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

Comments