chore(deps): update mix dependencies #77
No reviewers
Labels
No labels
bug
duplicate
enhancement
help wanted
high priority
invalid
L
low priority
M
medium priority
needs refinement
question
S
UX research
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: local-it/mitgliederverwaltung#77
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "renovate/mix-dependencies"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
3.5.19->3.5.260.13.9->0.13.114.9.3->4.9.62.10.1->2.10.32.3.6->2.3.102.6.6->2.6.103.12.1->3.13.2~> 0.13->~> 0.200.37.1->0.38.00.6.7->0.6.19~> 0.2->~> 0.34.6.4->4.6.51.19.2->1.19.31.2.0->1.3.0~> 0.1->~> 0.2Release Notes
ash-project/ash (ash)
v3.5.26Compare Source
Bug Fixes:
don't dump values to native when building changesets by @zachdaniel
ensure that async limiter is properly cleared by @zachdaniel
when comparing embedded attributes, ignore metadata keys by @zachdaniel
clear async limiter on pagination query by @zachdaniel
Improvements:
set
show_policy_breakdowns?totruein dev/test by default by @zachdanielmake
mix ash.gen.resourcemerge existing resources by @zachdanielallow code_interface default_options to accept a function (#2183) by scottwoodall
show optional code interface inputs in usage rules by @zachdaniel
v3.5.25Compare Source
Bug Fixes:
handle additional cases in
Ash.Filter.flat_mapby @zachdanielhandle overlapping type short-codes in app/dependencies by @zachdaniel
ensure that constraints are set on calculations by @zachdaniel
Upgrade strip_metadata/1 to recurse on maps and handle additional metadata fields (#2169) by Samuel Wrenn
ensure that atomic upgrades assume casted inputs by @zachdaniel
move length constraint checking to the end (#2155) by kernel-io
Improvements:
validate reserved constraint key names by @zachdaniel
Read Action multitenancy :bypass_all (#2154) by xantrac
add missing types to Ash.load typespec (#2167) by @barnabasJ
allow pure-binary sigils in expr fragments (#2165) by Frank Dugan III
add notifier trace/telemetry span type by @zachdaniel
v3.5.24Compare Source
Bug Fixes:
restrict subset of context -> opts in embedded changesets by @zachdaniel
properly handle nested context for embeddable type by @zachdaniel
Use the same parent query timeout for the count query, for
readactions (#2161) by sevenseacatensure join query has shared context passed to it by @zachdaniel
ensure shared context is set on through queries when loading by @zachdaniel
Improvements:
make usage-rules more clear about require Ash.Query by @zachdaniel
require Ash.QueryinAsh.Resourceby @zachdanielv3.5.23Compare Source
Bug Fixes:
set proper metadata key for bulk destroy changes by @zachdaniel
don't override tenant if manually set by @zachdaniel
v3.5.22Compare Source
Bug Fixes:
template opts in conditions in atomic changes by @zachdaniel
properly detect existing timestamp attributes in igniter tasks by @zachdaniel
Improvements:
improve message for --dev migrations message by @zachdaniel
add
mix ashcommand by @zachdanielhandle changes to
nilfor unknown attribute values by @zachdanielv3.5.21Compare Source
Bug Fixes:
support read actions and arguments in Ash.Generator.action_input/3 (#2137) by @barnabasJ
combination_of typespec (#2135) by @barnabasJ
Improvements:
allow update_query when
expr_erroris nto supported by @zachdanielonly require atomicity when update_query and expr_error supported by @zachdaniel
make installer avoid protocol consolidation by @zachdaniel
v3.5.20Compare Source
Bug Fixes:
ash-project/ash_admin (ash_admin)
v0.13.11Compare Source
Bug Fixes:
Prevent double HTML escaping (#332) by Jechol Lee
Encode/decode cookie values in JS (#328) by Jechol Lee
v0.13.10Compare Source
Improvements:
ash-project/ash_phoenix (ash_phoenix)
v2.3.10Compare Source
Bug Fixes:
value_is_keyforms by @zachdanielv2.3.9Compare Source
Improvements:
raw_errorsby @zachdanielv2.3.8Compare Source
Bug Fixes:
Improvements:
AshPhoenix.Form.raw_errors/2by @zachdanielv2.3.7Compare Source
Bug Fixes:
access proper form field for nested argument inputs by @zachdaniel
handle case where last item in add form path is an integer by @zachdaniel
ash-project/ash_postgres (ash_postgres)
v2.6.10Compare Source
Bug Fixes:
properly return the type when configured by Zach Daniel
retain sort when upgrading to a subquery by Zach Daniel
v2.6.9Compare Source
Bug Fixes:
smallserial not mapping to proper type (#574) by Marc Planelles
Fix foreign key constraint on specially named references (#572) by olivermt
v2.6.8Compare Source
Bug Fixes:
v2.6.7Compare Source
Bug Fixes:
elixir-ecto/ecto_sql (ecto_sql)
v3.13.2Compare Source
Enhancements
Ecto.Adapters.SQL.Sandbox.allow/4callsON DELETE SET DEFAULTBug fixes
v3.13.1Compare Source
Bug fixes
v3.13.0Compare Source
Enhancements
:log_stacktrace_mfafor filtering or modifying stacktrace-derived info in query logs:prepareper operationjson_extract_pathsneako/finch (finch)
v0.20.0Compare Source
Enhancements
:supported_groupsto list of TLS options #307:defaultpool in documentation #314nimble_optionsto document deprecations #315Bug Fixes
Other
philss/floki (floki)
v0.38.0Compare Source
Added
This version adds initial support for the
:haspseudo-selector.It is a great addition that enables finding elements containing
matching children.
Examples for selectors:
"div:has(h1)""div:has(h1, p, span)""div:has(p.foo)""div:has(img[src='https://example.com'])""tr:has(*:fl-contains('TEST'))"Note that combinators like
">"are not allowed yet.Thank you @bvobart for this feature!
Fixed
Add
:styleoption documentation toFloki.text/2.Thanks @s3cur3 for the fix.
Fix deprecation warnings for upcoming Elixir 1.19.
Prevent from crashing when selector is an empty string.
Removed
Remove support for Elixir 1.14 and OTP 23.
Remove deprecated functions and function clauses
that were accepting strings (binaries).
Affected functions:
parse/1- removed functionmap/2- removed functionattr/4- removed clausefind/2- removed clausetext/3- removed clausetext/3- removed clauseattribute/2- removed clausefilter_out/2- removed clauseHTML must be parsed before searching. Functions like
Floki.find/2,Floki.attribute/2, and other HTML manipulation functions no longer workdirectly with HTML strings. The HTML must be parsed first using
Floki.parse_fragment/2orFloki.parse_document/2.Before:
After:
ash-project/igniter (igniter)
v0.6.19Compare Source
Bug Fixes:
set_yesby Zach Danielv0.6.18Compare Source
Improvements:
v0.6.17Compare Source
Bug Fixes:
v0.6.16Compare Source
Bug Fixes:
Improvements:
don't assume
--yeswith no tty when in test mode by Zach Danielclean up and deprecate macros in
Igniter.Mix.Taskby Zach Danielmore granular info on the output of installers by Zach Daniel
v0.6.15Compare Source
Bug Fixes:
vendor
Path.relative_toto get 1.18.4 behavior by Zach Danielassume Kernel is imported in older Elixir versions by Zach Daniel
v0.6.14Compare Source
Bug Fixes:
v0.6.13Compare Source
Bug Fixes:
v0.6.12Compare Source
Bug Fixes:
v0.6.11Compare Source
Improvements:
v0.6.10Compare Source
Improvements:
Igniter.exists?support directories by Zach Danielv0.6.9Compare Source
Improvements:
Implement removal of configuration (#309) by Benjamin Milde
add
required?option toIgniter.update_elixir_file/3by Benjamin Mildev0.6.8Compare Source
Bug Fixes:
properly honor explicitly passed --only flag over other
onlyconfigs by Zach Danielproperly render the child that must be placed in the supervision tree by Zach Daniel
Improvements:
software-mansion/live-debugger (live_debugger)
v0.3.1Compare Source
Fixes
Full Changelog: https://github.com/software-mansion/live-debugger/compare/v0.3.0...v0.3.1
v0.3.0Compare Source
What's Changed
New features
Fixes
toggle_switchcomponent by @kraleppa in https://github.com/software-mansion/live-debugger/pull/446external_urlfor live_debugger_tags' url by @GuzekAlan in https://github.com/software-mansion/live-debugger/pull/452Refactors
linked_viewhook by @kraleppa in https://github.com/software-mansion/live-debugger/pull/376traces_liveby @kraleppa in https://github.com/software-mansion/live-debugger/pull/466Other
New Contributors
Full Changelog: https://github.com/software-mansion/live-debugger/compare/v0.2.0...v0.3.0
phoenixframework/phoenix_ecto (phoenix_ecto)
v4.6.5swoosh/swoosh (swoosh)
v1.19.3Compare Source
✨ Features
beam-telemetry/telemetry_poller (telemetry_poller)
v1.3.0Compare Source
Added
atom_limit,process_limit, andport_limitmeasurements to the[vm, system_counts]event. (#79)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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Renovate Bot.
94fba42fd1to2c3a5e39262c3a5e3926tod581664871d581664871to60cdbf41e960cdbf41e9toa0562f1f08a0562f1f08to2dd8c449362dd8c44936tob3dbb17775b3dbb17775to310bf9521f310bf9521fto536b8e6ead536b8e6eadto9bbb1428699bbb142869to228cf15646228cf15646to7a741b54587a741b5458tob326b6de33b326b6de33to07437dda6707437dda67toc2ba02bbffc2ba02bbfftoa72fafdd58a72fafdd58to410395e1fc410395e1fctoa0fb413de0a0fb413de0toaa037622d9aa037622d9tocc24027cc2cc24027cc2toba8b2b9ff5ba8b2b9ff5tod4dd386283