From 4898fc5e5121de3dbb333b84db2dc6a45eea065c Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Wed, 5 Mar 2025 12:59:19 +0200 Subject: [PATCH 1/6] Update rack to version 3.1.11 (#3714) Co-authored-by: depfu[bot] <23717796+depfu[bot]@users.noreply.github.com> --- Gemfile.lock | 2 +- gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock | 2 +- gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock | 2 +- gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 83f3ef163..e286de69f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -452,7 +452,7 @@ GEM puma (6.6.0) nio4r (~> 2.0) racc (1.8.1) - rack (3.1.10) + rack (3.1.11) rack-session (2.1.0) base64 (>= 0.1.0) rack (>= 3.0.0) diff --git a/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock b/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock index d4f929811..40ed304d4 100644 --- a/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock +++ b/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock @@ -450,7 +450,7 @@ GEM puma (6.6.0) nio4r (~> 2.0) racc (1.8.1) - rack (3.1.10) + rack (3.1.11) rack-session (2.1.0) base64 (>= 0.1.0) rack (>= 3.0.0) diff --git a/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock b/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock index ed18b6b4c..38f52505f 100644 --- a/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock +++ b/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock @@ -422,7 +422,7 @@ GEM puma (6.6.0) nio4r (~> 2.0) racc (1.8.1) - rack (3.1.10) + rack (3.1.11) rack-session (2.1.0) base64 (>= 0.1.0) rack (>= 3.0.0) diff --git a/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock b/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock index 77755e490..ccaae4bb4 100644 --- a/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock +++ b/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock @@ -422,7 +422,7 @@ GEM puma (6.6.0) nio4r (~> 2.0) racc (1.8.1) - rack (3.1.10) + rack (3.1.11) rack-session (2.1.0) base64 (>= 0.1.0) rack (>= 3.0.0) From 69efaff1bcff36776e0ea0bc4747f5b0e94e176f Mon Sep 17 00:00:00 2001 From: Paul Bob <69730720+Paul-Bob@users.noreply.github.com> Date: Wed, 5 Mar 2025 17:56:25 +0200 Subject: [PATCH 2/6] fix: missing locale keys for `created_at_timestamp` and `updated_at_timestamp` (#3721) * fix: missing locale keys for `created_at_timestamp` and `updated_at_timestamp` * variable name fix * variable name fix * i18n-tasks check-consistent-interpolations --- CONTRIBUTING.MD | 29 +++++++++++++++++++ .../avo/templates/locales/avo.ar.yml | 2 ++ .../avo/templates/locales/avo.de.yml | 2 ++ .../avo/templates/locales/avo.en.yml | 2 ++ .../avo/templates/locales/avo.es.yml | 2 ++ .../avo/templates/locales/avo.fr.yml | 2 ++ .../avo/templates/locales/avo.it.yml | 2 ++ .../avo/templates/locales/avo.ja.yml | 2 ++ .../avo/templates/locales/avo.nb.yml | 2 ++ .../avo/templates/locales/avo.nl.yml | 2 ++ .../avo/templates/locales/avo.nn.yml | 2 ++ .../avo/templates/locales/avo.pl.yml | 2 ++ .../avo/templates/locales/avo.pt-BR.yml | 2 ++ .../avo/templates/locales/avo.pt.yml | 2 ++ .../avo/templates/locales/avo.ro.yml | 2 ++ .../avo/templates/locales/avo.ru.yml | 2 ++ .../avo/templates/locales/avo.tr.yml | 2 ++ .../avo/templates/locales/avo.uk.yml | 2 ++ .../avo/templates/locales/avo.zh.yml | 2 ++ 19 files changed, 65 insertions(+) diff --git a/CONTRIBUTING.MD b/CONTRIBUTING.MD index 6004c46a6..b42c4e131 100644 --- a/CONTRIBUTING.MD +++ b/CONTRIBUTING.MD @@ -224,3 +224,32 @@ To keep track of the schema structure for the models, run `annotate --models --e ## Using VSCode? We compiled [an extension pack](https://marketplace.visualstudio.com/items?itemName=adrianthedev.vsruby) with a few extensions that should help you with Ruby development. We use them with Avo. + +## Adding I18n Keys + +When incorporating I18n keys, such as `avo.preview`, it's important to ensure that all locale files include the key with appropriate translations. + +### Step 1: Add and Normalize +First, add the key to the `avo.en.yml` file. Then, run the following command to normalize the locale files alphabetically: +```bash +i18n-tasks normalize +``` + +### Step 2: Adding Missing Keys with or without Translation + +When adding missing keys, you have two options: proceed without translation or automatically translate them using OpenAI. + +#### Option 1: Add Missing Keys Without Translation +Run the following command to add the missing keys to all locale files: +```bash +i18n-tasks add-missing +``` +This will populate the missing keys but retain the original label without translations applied. + +#### Option 2: Add and Automatically Translate Missing Keys +If you prefer to automatically translate the missing keys, skip the previous step and execute this command with your OpenAI API token: +```bash +OPENAI_API_KEY=TOKEN bundle exec i18n-tasks translate-missing --backend=openai +``` + +Replace `TOKEN` with your actual OpenAI API key. This step will both add the missing keys and translate them automatically. diff --git a/lib/generators/avo/templates/locales/avo.ar.yml b/lib/generators/avo/templates/locales/avo.ar.yml index 00c5b4300..df7ffcb2a 100644 --- a/lib/generators/avo/templates/locales/avo.ar.yml +++ b/lib/generators/avo/templates/locales/avo.ar.yml @@ -33,6 +33,7 @@ ar: confirm: تأكيد copy: نسخ create_new_item: إنشاء %{item} جديد + created_at_timestamp: تم الإنشاء في %{created_at} dashboard: لوحة القيادة dashboards: لوحات القيادة default_scope: الجميع @@ -126,6 +127,7 @@ ar: type_to_search: اكتب للبحث. unauthorized: غير مصرح به undo: تراجع + updated_at_timestamp: تم التحديث في %{updated_at} view: عرض view_item: عرض %{item} visit_record_on_external_path: زيارة السجل على الرابط الخارجي diff --git a/lib/generators/avo/templates/locales/avo.de.yml b/lib/generators/avo/templates/locales/avo.de.yml index 35ea2ff2c..f4ec05a58 100644 --- a/lib/generators/avo/templates/locales/avo.de.yml +++ b/lib/generators/avo/templates/locales/avo.de.yml @@ -27,6 +27,7 @@ de: confirm: Bestätigen copy: Kopieren create_new_item: Neues %{item} erstellen + created_at_timestamp: Erstellt am %{created_at} dashboard: Dashboard dashboards: Dashboards default_scope: Alle @@ -116,6 +117,7 @@ de: type_to_search: Tippen, um zu suchen. unauthorized: Nicht autorisiert undo: Rückgängig machen + updated_at_timestamp: Aktualisiert am %{updated_at} view: Anzeigen view_item: "%{item} anzeigen" visit_record_on_external_path: Datensatz über externen Link besuchen diff --git a/lib/generators/avo/templates/locales/avo.en.yml b/lib/generators/avo/templates/locales/avo.en.yml index b6fa650c9..5c38cfd24 100644 --- a/lib/generators/avo/templates/locales/avo.en.yml +++ b/lib/generators/avo/templates/locales/avo.en.yml @@ -27,6 +27,7 @@ en: confirm: Confirm copy: Copy create_new_item: Create new %{item} + created_at_timestamp: Created at %{created_at} dashboard: Dashboard dashboards: Dashboards default_scope: All @@ -116,6 +117,7 @@ en: type_to_search: Type to search. unauthorized: Unauthorized undo: undo + updated_at_timestamp: Updated at %{updated_at} view: View view_item: view %{item} visit_record_on_external_path: Visit record on external path diff --git a/lib/generators/avo/templates/locales/avo.es.yml b/lib/generators/avo/templates/locales/avo.es.yml index 3b26bfa1e..5f8a76be9 100644 --- a/lib/generators/avo/templates/locales/avo.es.yml +++ b/lib/generators/avo/templates/locales/avo.es.yml @@ -29,6 +29,7 @@ es: confirm: Confirmar copy: Copiar create_new_item: Crear nuevo/a %{item} + created_at_timestamp: Creado en %{created_at} dashboard: Panel dashboards: Paneles default_scope: Todos @@ -118,6 +119,7 @@ es: type_to_search: Escribe para buscar. unauthorized: No autorizado undo: deshacer + updated_at_timestamp: Actualizado en %{updated_at} view: Vista view_item: ver %{item} visit_record_on_external_path: Visitar registro en enlace externo diff --git a/lib/generators/avo/templates/locales/avo.fr.yml b/lib/generators/avo/templates/locales/avo.fr.yml index 64cf8360c..06e72965e 100644 --- a/lib/generators/avo/templates/locales/avo.fr.yml +++ b/lib/generators/avo/templates/locales/avo.fr.yml @@ -29,6 +29,7 @@ fr: confirm: Confirmer copy: Copier create_new_item: Créer un nouveau %{item} + created_at_timestamp: Créé le %{created_at} dashboard: Tableau de bord dashboards: Tableaux de bord default_scope: Tout @@ -118,6 +119,7 @@ fr: type_to_search: Type à rechercher. unauthorized: Non autorisé undo: annuler + updated_at_timestamp: Mis à jour le %{updated_at} view: Vue view_item: voir %{item} visit_record_on_external_path: Consulter l'enregistrement via un lien externe diff --git a/lib/generators/avo/templates/locales/avo.it.yml b/lib/generators/avo/templates/locales/avo.it.yml index 088ab4802..73b0fd29c 100644 --- a/lib/generators/avo/templates/locales/avo.it.yml +++ b/lib/generators/avo/templates/locales/avo.it.yml @@ -27,6 +27,7 @@ it: confirm: Conferma copy: Copia create_new_item: Crea nuovo %{item} + created_at_timestamp: Creato il %{created_at} dashboard: Cruscotto dashboards: Cruscotti default_scope: Tutti @@ -116,6 +117,7 @@ it: type_to_search: Digita per cercare. unauthorized: Non autorizzato undo: Annulla + updated_at_timestamp: Aggiornato il %{updated_at} view: Visualizza view_item: Visualizza %{item} visit_record_on_external_path: Visita il record tramite link esterno diff --git a/lib/generators/avo/templates/locales/avo.ja.yml b/lib/generators/avo/templates/locales/avo.ja.yml index 8b6516a59..140c4c2dd 100644 --- a/lib/generators/avo/templates/locales/avo.ja.yml +++ b/lib/generators/avo/templates/locales/avo.ja.yml @@ -29,6 +29,7 @@ ja: confirm: 確認 copy: コピー create_new_item: 新しい%{item}を作成 + created_at_timestamp: "%{created_at}で作成" dashboard: ダッシュボード dashboards: ダッシュボード default_scope: 全て @@ -118,6 +119,7 @@ ja: type_to_search: 検索する内容を入力してください。 unauthorized: 許可されていません undo: 元に戻す + updated_at_timestamp: "%{updated_at}で更新" view: ビュー view_item: "%{item}を表示" visit_record_on_external_path: 外部リンクで記録を確認する diff --git a/lib/generators/avo/templates/locales/avo.nb.yml b/lib/generators/avo/templates/locales/avo.nb.yml index 3b5f59bb0..7b7efedaa 100644 --- a/lib/generators/avo/templates/locales/avo.nb.yml +++ b/lib/generators/avo/templates/locales/avo.nb.yml @@ -29,6 +29,7 @@ nb: confirm: Bekreft copy: Kopier create_new_item: Lag ny %{item} + created_at_timestamp: Opprettet den %{created_at} dashboard: Dashboard dashboards: Dashboards default_scope: Alle @@ -118,6 +119,7 @@ nb: type_to_search: Søk. unauthorized: Ikke autorisert undo: angre + updated_at_timestamp: Oppdatert den %{updated_at} view: Vis view_item: vis %{item} visit_record_on_external_path: Besøk posten via en ekstern lenke diff --git a/lib/generators/avo/templates/locales/avo.nl.yml b/lib/generators/avo/templates/locales/avo.nl.yml index dcaf35263..0bfb1717c 100644 --- a/lib/generators/avo/templates/locales/avo.nl.yml +++ b/lib/generators/avo/templates/locales/avo.nl.yml @@ -27,6 +27,7 @@ nl: confirm: Bevestigen copy: Kopie create_new_item: Nieuw %{item} aanmaken + created_at_timestamp: Aangemaakt op %{created_at} dashboard: Dashboard dashboards: Dashboards default_scope: Alle @@ -116,6 +117,7 @@ nl: type_to_search: Typ om te zoeken. unauthorized: Niet geautoriseerd undo: Ongedaan maken + updated_at_timestamp: Bijgewerkt op %{updated_at} view: Bekijken view_item: "%{item} bekijken" visit_record_on_external_path: Bezoek record via een externe link diff --git a/lib/generators/avo/templates/locales/avo.nn.yml b/lib/generators/avo/templates/locales/avo.nn.yml index e5b909842..62c1de7d0 100644 --- a/lib/generators/avo/templates/locales/avo.nn.yml +++ b/lib/generators/avo/templates/locales/avo.nn.yml @@ -29,6 +29,7 @@ nn: confirm: Stadfest copy: Kopier create_new_item: Lag ny %{item} + created_at_timestamp: Oppretta den %{created_at} dashboard: Dashboard dashboards: Dashboards default_scope: Alle @@ -118,6 +119,7 @@ nn: type_to_search: Søk. unauthorized: Ikkje autorisert undo: angre + updated_at_timestamp: Oppdatert den %{updated_at} view: Vis view_item: vis %{item} visit_record_on_external_path: Besøk posten via ein ekstern lenke diff --git a/lib/generators/avo/templates/locales/avo.pl.yml b/lib/generators/avo/templates/locales/avo.pl.yml index 4f3a0189d..213543be6 100644 --- a/lib/generators/avo/templates/locales/avo.pl.yml +++ b/lib/generators/avo/templates/locales/avo.pl.yml @@ -27,6 +27,7 @@ pl: confirm: Potwierdź copy: Kopiuj create_new_item: Utwórz nowy %{item} + created_at_timestamp: Utworzono o %{created_at} dashboard: Pulpit nawigacyjny dashboards: Pulpity nawigacyjne default_scope: Wszystkie @@ -118,6 +119,7 @@ pl: type_to_search: Wpisz, aby wyszukać. unauthorized: Brak autoryzacji undo: Cofnij + updated_at_timestamp: Zaktualizowano o %{updated_at} view: Widok view_item: Wyświetl %{item} visit_record_on_external_path: Odwiedź rekord za pomocą zewnętrznego linku diff --git a/lib/generators/avo/templates/locales/avo.pt-BR.yml b/lib/generators/avo/templates/locales/avo.pt-BR.yml index 82d220bb1..9ed3114e5 100644 --- a/lib/generators/avo/templates/locales/avo.pt-BR.yml +++ b/lib/generators/avo/templates/locales/avo.pt-BR.yml @@ -29,6 +29,7 @@ pt-BR: confirm: Confirmar copy: Copiar create_new_item: Criar novo %{item} + created_at_timestamp: Criado em %{created_at} dashboard: Painel dashboards: Painéis default_scope: Todos @@ -118,6 +119,7 @@ pt-BR: type_to_search: Digite para buscar. unauthorized: Não autorizado undo: desfazer + updated_at_timestamp: Atualizado em %{updated_at} view: Visualizar view_item: visualizar %{item} visit_record_on_external_path: Visitar registro através de link externo diff --git a/lib/generators/avo/templates/locales/avo.pt.yml b/lib/generators/avo/templates/locales/avo.pt.yml index bb163a138..af9d152ff 100644 --- a/lib/generators/avo/templates/locales/avo.pt.yml +++ b/lib/generators/avo/templates/locales/avo.pt.yml @@ -29,6 +29,7 @@ pt: confirm: Confirmar copy: Copiar create_new_item: Criar novo %{item} + created_at_timestamp: Criado em %{created_at} dashboard: Painel dashboards: Painéis default_scope: Todos @@ -118,6 +119,7 @@ pt: type_to_search: Escreva para pesquisar. unauthorized: Não autorizado undo: desfazer + updated_at_timestamp: Atualizado em %{updated_at} view: Ver view_item: ver %{item} visit_record_on_external_path: Visitar registro através de link externo diff --git a/lib/generators/avo/templates/locales/avo.ro.yml b/lib/generators/avo/templates/locales/avo.ro.yml index 027d0fff1..766539e82 100644 --- a/lib/generators/avo/templates/locales/avo.ro.yml +++ b/lib/generators/avo/templates/locales/avo.ro.yml @@ -30,6 +30,7 @@ ro: confirm: Confirm copy: Copiază create_new_item: Creează %{item} + created_at_timestamp: Creat la %{created_at} dashboard: Panou de control dashboards: Panouri de control default_scope: Tot @@ -120,6 +121,7 @@ ro: type_to_search: Caută aici... unauthorized: Neautorizat undo: Anulează + updated_at_timestamp: Actualizat la %{updated_at} view: vezi view_item: vezi %{item} visit_record_on_external_path: Vizitați înregistrarea printr-un link extern diff --git a/lib/generators/avo/templates/locales/avo.ru.yml b/lib/generators/avo/templates/locales/avo.ru.yml index f93954324..d122e24f0 100644 --- a/lib/generators/avo/templates/locales/avo.ru.yml +++ b/lib/generators/avo/templates/locales/avo.ru.yml @@ -27,6 +27,7 @@ ru: confirm: Подтвердить copy: Копировать create_new_item: Создать новый %{item} + created_at_timestamp: Создано в %{created_at} dashboard: Панель управления dashboards: Панели управления default_scope: Все @@ -118,6 +119,7 @@ ru: type_to_search: Поиск... unauthorized: Не авторизован undo: Отменить + updated_at_timestamp: Обновлено в %{updated_at} view: Просмотр view_item: Просмотр %{item} visit_record_on_external_path: Перейти к записи через внешнюю ссылку diff --git a/lib/generators/avo/templates/locales/avo.tr.yml b/lib/generators/avo/templates/locales/avo.tr.yml index edfcc498c..e9f4665c3 100644 --- a/lib/generators/avo/templates/locales/avo.tr.yml +++ b/lib/generators/avo/templates/locales/avo.tr.yml @@ -29,6 +29,7 @@ tr: confirm: Onayla copy: Kopya create_new_item: Yeni bir %{item} oluşturun + created_at_timestamp: "%{created_at} tarihinde oluşturuldu" dashboard: Yönetim Paneli dashboards: Yönetim Panelleri default_scope: Herşey @@ -118,6 +119,7 @@ tr: type_to_search: Aramak için yazın. unauthorized: Yetkisiz undo: geri al + updated_at_timestamp: "%{updated_at} tarihinde güncellendi" view: Görünüm view_item: "%{item} öğresini görüntüle" visit_record_on_external_path: Harici bağlantı yoluyla kaydı ziyaret et diff --git a/lib/generators/avo/templates/locales/avo.uk.yml b/lib/generators/avo/templates/locales/avo.uk.yml index 4fdc4a072..708a7d124 100644 --- a/lib/generators/avo/templates/locales/avo.uk.yml +++ b/lib/generators/avo/templates/locales/avo.uk.yml @@ -27,6 +27,7 @@ uk: confirm: Підтвердити copy: Копіювати create_new_item: Створити новий %{item} + created_at_timestamp: Sukurta %{created_at} dashboard: Панель керування dashboards: Панелі керування default_scope: Всі @@ -118,6 +119,7 @@ uk: type_to_search: Введіть для пошуку. unauthorized: Не авторизовано undo: Скасувати + updated_at_timestamp: Atnaujinta %{updated_at} view: Перегляд view_item: Перегляд %{item} visit_record_on_external_path: Перейти до запису через зовнішнє посилання diff --git a/lib/generators/avo/templates/locales/avo.zh.yml b/lib/generators/avo/templates/locales/avo.zh.yml index 5910022bc..4256ead47 100644 --- a/lib/generators/avo/templates/locales/avo.zh.yml +++ b/lib/generators/avo/templates/locales/avo.zh.yml @@ -27,6 +27,7 @@ zh: confirm: 确认 copy: 复制 create_new_item: 创建新的 %{item} + created_at_timestamp: 创建于%{created_at} dashboard: 仪表盘 dashboards: 仪表盘 default_scope: 所有 @@ -116,6 +117,7 @@ zh: type_to_search: 输入以搜索。 unauthorized: 未经授权 undo: 撤销 + updated_at_timestamp: 更新于%{updated_at} view: 查看 view_item: 查看 %{item} visit_record_on_external_path: 通过外部链接访问记录 From b1edcaee1af8c6ae009fe94ed695f7165de4bf3e Mon Sep 17 00:00:00 2001 From: Paul Bob Date: Wed, 5 Mar 2025 18:16:33 +0200 Subject: [PATCH 3/6] Bumped avo to 3.18.1 --- Gemfile.lock | 2 +- gemfiles/rails_6.1_ruby_3.1.4.gemfile.lock | 2 +- gemfiles/rails_6.1_ruby_3.3.0.gemfile.lock | 2 +- gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock | 2 +- gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock | 2 +- gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock | 2 +- lib/avo/version.rb | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e286de69f..b932f16bb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - avo (3.18.0) + avo (3.18.1) actionview (>= 6.1) active_link_to activerecord (>= 6.1) diff --git a/gemfiles/rails_6.1_ruby_3.1.4.gemfile.lock b/gemfiles/rails_6.1_ruby_3.1.4.gemfile.lock index 3458a5403..8553c53cb 100644 --- a/gemfiles/rails_6.1_ruby_3.1.4.gemfile.lock +++ b/gemfiles/rails_6.1_ruby_3.1.4.gemfile.lock @@ -6,7 +6,7 @@ PATH PATH remote: .. specs: - avo (3.18.0) + avo (3.18.1) actionview (>= 6.1) active_link_to activerecord (>= 6.1) diff --git a/gemfiles/rails_6.1_ruby_3.3.0.gemfile.lock b/gemfiles/rails_6.1_ruby_3.3.0.gemfile.lock index c43f97e3a..742072da8 100644 --- a/gemfiles/rails_6.1_ruby_3.3.0.gemfile.lock +++ b/gemfiles/rails_6.1_ruby_3.3.0.gemfile.lock @@ -6,7 +6,7 @@ PATH PATH remote: .. specs: - avo (3.18.0) + avo (3.18.1) actionview (>= 6.1) active_link_to activerecord (>= 6.1) diff --git a/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock b/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock index 40ed304d4..7a7e1e1fd 100644 --- a/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock +++ b/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock @@ -6,7 +6,7 @@ PATH PATH remote: .. specs: - avo (3.18.0) + avo (3.18.1) actionview (>= 6.1) active_link_to activerecord (>= 6.1) diff --git a/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock b/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock index 38f52505f..6e0d9e1b5 100644 --- a/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock +++ b/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock @@ -6,7 +6,7 @@ PATH PATH remote: .. specs: - avo (3.18.0) + avo (3.18.1) actionview (>= 6.1) active_link_to activerecord (>= 6.1) diff --git a/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock b/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock index ccaae4bb4..63023c9cf 100644 --- a/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock +++ b/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock @@ -6,7 +6,7 @@ PATH PATH remote: .. specs: - avo (3.18.0) + avo (3.18.1) actionview (>= 6.1) active_link_to activerecord (>= 6.1) diff --git a/lib/avo/version.rb b/lib/avo/version.rb index 20e665fa1..278bb552c 100644 --- a/lib/avo/version.rb +++ b/lib/avo/version.rb @@ -1,3 +1,3 @@ module Avo - VERSION = "3.18.0" unless const_defined?(:VERSION) + VERSION = "3.18.1" unless const_defined?(:VERSION) end From 3594b85d3f623937e13ec1e6b6636c7b99ca1aa3 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Thu, 6 Mar 2025 09:49:29 +0200 Subject: [PATCH 4/6] Update all Yarn dependencies (2025-03-06) (#3723) Co-authored-by: depfu[bot] <23717796+depfu[bot]@users.noreply.github.com> --- package.json | 6 ++--- yarn.lock | 65 ++++++++++++++++------------------------------------ 2 files changed, 23 insertions(+), 48 deletions(-) diff --git a/package.json b/package.json index 81efd3230..4fefd2159 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "@algolia/autocomplete-theme-classic": "^1.0.0-alpha.46", "@babel/plugin-proposal-class-properties": "^7.12.1", "@hotwired/stimulus": "^3.2.2", - "@hotwired/turbo-rails": "^8.0.12", + "@hotwired/turbo-rails": "^8.0.13", "@rails/activestorage": "^6.1.710", "@stimulus-components/clipboard": "^5.0.0", "@stimulus-components/password-visibility": "^3.0.0", @@ -50,10 +50,10 @@ "chart.js": "^3.9.1", "chartkick": "^4.2.0", "codemirror": "5.59.1", - "core-js": "^3.40.0", + "core-js": "^3.41.0", "css-loader": "^6.11.0", "dompurify": "^3.2.4", - "easymde": "^2.19.0", + "easymde": "^2.20.0", "el-transition": "^0.0.7", "esbuild": "^0.25.0", "eslint-config-airbnb": "^19.0.4", diff --git a/yarn.lock b/yarn.lock index 0fce7839c..833d5caa7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1584,18 +1584,18 @@ resolved "https://registry.yarnpkg.com/@hotwired/stimulus/-/stimulus-3.2.2.tgz#071aab59c600fed95b97939e605ff261a4251608" integrity sha512-eGeIqNOQpXoPAIP7tC1+1Yc1yl1xnwYqg+3mzqxyrbE5pg5YFBZcA6YoTiByJB6DKAEsiWtl6tjTJS4IYtbB7A== -"@hotwired/turbo-rails@^8.0.12": - version "8.0.12" - resolved "https://registry.yarnpkg.com/@hotwired/turbo-rails/-/turbo-rails-8.0.12.tgz#6f1a2661122c0a2bf717f3bc68b5106638798c89" - integrity sha512-ZXwu9ez+Gd4RQNeHIitqOQgi/LyqY8J4JqsUN0nnYiZDBRq7IreeFdMbz29VdJpIsmYqwooE4cFzPU7QvJkQkA== +"@hotwired/turbo-rails@^8.0.13": + version "8.0.13" + resolved "https://registry.yarnpkg.com/@hotwired/turbo-rails/-/turbo-rails-8.0.13.tgz#7016651f7144053992ce5096bb95495f8faa5854" + integrity sha512-6SCnnOSzhtaJ0pNkAjncZxjtKsK3sP/vPEkCnTXBXSHkr+vF7DTZkOlwjhms1DbbQNTsjCsBoKvzSMbh/omSCQ== dependencies: - "@hotwired/turbo" "^8.0.12" + "@hotwired/turbo" "^8.0.13" "@rails/actioncable" "^7.0" -"@hotwired/turbo@^8.0.12": - version "8.0.12" - resolved "https://registry.yarnpkg.com/@hotwired/turbo/-/turbo-8.0.12.tgz#50aa8345d7f62402680c6d2d9814660761837001" - integrity sha512-l3BiQRkD7qrnQv6ms6sqPLczvwbQpXt5iAVwjDvX0iumrz6yEonQkNAzNjeDX25/OJMFDTxpHjkJZHGpM9ikWw== +"@hotwired/turbo@^8.0.13": + version "8.0.13" + resolved "https://registry.yarnpkg.com/@hotwired/turbo/-/turbo-8.0.13.tgz#ab35fda9d358432c8a872a833844b38cccb8c25b" + integrity sha512-M7qXUqcGab6G5PKOiwhgbByTtrPgKPFCTMNQ52QhzUEXEqmp0/ApEguUesh/FPiUjrmFec+3lq98KsWnYY2C7g== "@humanwhocodes/config-array@^0.13.0": version "0.13.0" @@ -2426,10 +2426,10 @@ core-js-compat@^3.40.0: dependencies: browserslist "^4.24.3" -core-js@^3.40.0: - version "3.40.0" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.40.0.tgz#2773f6b06877d8eda102fc42f828176437062476" - integrity sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ== +core-js@^3.41.0: + version "3.41.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.41.0.tgz#57714dafb8c751a6095d028a7428f1fb5834a776" + integrity sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA== cosmiconfig@^8.3.5: version "8.3.6" @@ -2629,10 +2629,10 @@ eastasianwidth@^0.2.0: resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== -easymde@^2.19.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/easymde/-/easymde-2.19.0.tgz#73fb3ac2879334f4aaa6da68dec85cf1428e689f" - integrity sha512-4F1aNImqse+9xIjLh9ttfpOVenecjFPxUmKbl1tGp72Z+OyIqLZPE/SgNyy88c/xU0mOy0WC3+tfbZDQ5PDWhg== +easymde@^2.20.0: + version "2.20.0" + resolved "https://registry.yarnpkg.com/easymde/-/easymde-2.20.0.tgz#88b3161feab6e1900afa9c4dab3f1da352b0a26e" + integrity sha512-V1Z5f92TfR42Na852OWnIZMbM7zotWQYTddNaLYZFVKj7APBbyZ3FYJ27gBw2grMW3R6Qdv9J8n5Ij7XRSIgXQ== dependencies: "@types/codemirror" "^5.60.10" "@types/marked" "^4.0.7" @@ -5250,16 +5250,7 @@ stimulus-use@^0.50.0: dependencies: hotkeys-js ">=3" -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^4.1.0, string-width@^4.2.0: +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -5359,14 +5350,7 @@ string.prototype.trimstart@^1.0.8: define-properties "^1.2.1" es-object-atoms "^1.0.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -5766,16 +5750,7 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== From 37687cd9cfc774a410588693729037534ecf6580 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Thu, 6 Mar 2025 09:49:43 +0200 Subject: [PATCH 5/6] Update all Bundler dependencies (2025-03-06) (#3724) Co-authored-by: depfu[bot] <23717796+depfu[bot]@users.noreply.github.com> --- Gemfile.lock | 25 ++++++++++++---------- gemfiles/rails_6.1_ruby_3.1.4.gemfile.lock | 23 +++++++++++--------- gemfiles/rails_6.1_ruby_3.3.0.gemfile.lock | 19 +++++++++------- gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock | 25 ++++++++++++---------- gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock | 21 ++++++++++-------- gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock | 21 ++++++++++-------- 6 files changed, 76 insertions(+), 58 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index b932f16bb..fd566b1f8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -108,7 +108,7 @@ GEM acts_as_list (1.2.4) activerecord (>= 6.1) activesupport (>= 6.1) - actual_db_schema (0.8.2) + actual_db_schema (0.8.3) activerecord activesupport ast @@ -130,8 +130,8 @@ GEM money-rails (~> 1.12) avo-record_link_field (0.0.2) aws-eventstream (1.3.1) - aws-partitions (1.1056.0) - aws-sdk-core (3.219.0) + aws-partitions (1.1061.0) + aws-sdk-core (3.220.0) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) @@ -191,7 +191,7 @@ GEM bigdecimal rexml crass (1.0.6) - cssbundling-rails (1.4.2) + cssbundling-rails (1.4.3) railties (>= 6.0.0) csv (3.3.2) cuprite (0.15.1) @@ -511,7 +511,7 @@ GEM psych (>= 4.0.0) redis (5.4.0) redis-client (>= 0.22.0) - redis-client (0.23.2) + redis-client (0.24.0) connection_pool reek (6.4.0) dry-schema (~> 1.13.0) @@ -563,8 +563,8 @@ GEM rubocop-performance (1.23.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) - rubocop-shopify (2.15.1) - rubocop (~> 1.51) + rubocop-shopify (2.16.0) + rubocop (~> 1.62) ruby-openai (7.4.0) event_stream_parser (>= 0.3.0, < 2.0.0) faraday (>= 1) @@ -602,7 +602,7 @@ GEM simplecov-lcov (0.8.0) simplecov_json_formatter (0.1.4) smart_properties (1.17.0) - solargraph (0.51.2) + solargraph (0.52.0) backport (~> 1.2) benchmark bundler (~> 2.0) @@ -620,6 +620,7 @@ GEM thor (~> 1.0) tilt (~> 2.0) yard (~> 0.9, >= 0.9.24) + yard-solargraph (~> 0.1) solargraph-rails (1.1.0) activesupport solargraph @@ -656,9 +657,9 @@ GEM tilt (2.6.0) timeout (0.4.3) tty-which (0.5.0) - turbo-rails (2.0.11) - actionpack (>= 6.0.0) - railties (>= 6.0.0) + turbo-rails (2.0.13) + actionpack (>= 7.1.0) + railties (>= 7.1.0) turbo_power (0.7.0) turbo-rails (>= 1.3.0) tzinfo (2.0.6) @@ -696,6 +697,8 @@ GEM xpath (3.2.0) nokogiri (~> 1.8) yard (0.9.37) + yard-solargraph (0.1.0) + yard (~> 0.9) zeitwerk (2.7.2) PLATFORMS diff --git a/gemfiles/rails_6.1_ruby_3.1.4.gemfile.lock b/gemfiles/rails_6.1_ruby_3.1.4.gemfile.lock index 8553c53cb..7a1edcaca 100644 --- a/gemfiles/rails_6.1_ruby_3.1.4.gemfile.lock +++ b/gemfiles/rails_6.1_ruby_3.1.4.gemfile.lock @@ -95,7 +95,7 @@ GEM acts_as_list (1.2.4) activerecord (>= 6.1) activesupport (>= 6.1) - actual_db_schema (0.8.2) + actual_db_schema (0.8.3) activerecord activesupport ast @@ -117,8 +117,8 @@ GEM money-rails (~> 1.12) avo-record_link_field (0.0.2) aws-eventstream (1.3.1) - aws-partitions (1.1056.0) - aws-sdk-core (3.219.0) + aws-partitions (1.1061.0) + aws-sdk-core (3.220.0) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) @@ -178,7 +178,7 @@ GEM bigdecimal rexml crass (1.0.6) - cssbundling-rails (1.4.2) + cssbundling-rails (1.4.3) railties (>= 6.0.0) csv (3.3.2) cuprite (0.15.1) @@ -436,7 +436,7 @@ GEM puma (6.6.0) nio4r (~> 2.0) racc (1.8.1) - rack (2.2.11) + rack (2.2.12) rack-test (2.2.0) rack (>= 1.3) rails (6.1.7.10) @@ -488,7 +488,7 @@ GEM rdoc (6.3.4.1) redis (5.4.0) redis-client (>= 0.22.0) - redis-client (0.23.2) + redis-client (0.24.0) connection_pool reek (6.4.0) dry-schema (~> 1.13.0) @@ -540,8 +540,8 @@ GEM rubocop-performance (1.23.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) - rubocop-shopify (2.15.1) - rubocop (~> 1.51) + rubocop-shopify (2.16.0) + rubocop (~> 1.62) ruby-openai (7.4.0) event_stream_parser (>= 0.3.0, < 2.0.0) faraday (>= 1) @@ -578,7 +578,7 @@ GEM simplecov-lcov (0.8.0) simplecov_json_formatter (0.1.4) smart_properties (1.17.0) - solargraph (0.51.2) + solargraph (0.52.0) backport (~> 1.2) benchmark bundler (~> 2.0) @@ -596,6 +596,7 @@ GEM thor (~> 1.0) tilt (~> 2.0) yard (~> 0.9, >= 0.9.24) + yard-solargraph (~> 0.1) solargraph-rails (1.1.0) activesupport solargraph @@ -631,7 +632,7 @@ GEM tilt (2.6.0) timeout (0.4.3) tty-which (0.5.0) - turbo-rails (2.0.11) + turbo-rails (2.0.12) actionpack (>= 6.0.0) railties (>= 6.0.0) turbo_power (0.7.0) @@ -670,6 +671,8 @@ GEM xpath (3.2.0) nokogiri (~> 1.8) yard (0.9.37) + yard-solargraph (0.1.0) + yard (~> 0.9) zeitwerk (2.7.2) PLATFORMS diff --git a/gemfiles/rails_6.1_ruby_3.3.0.gemfile.lock b/gemfiles/rails_6.1_ruby_3.3.0.gemfile.lock index 742072da8..527160c3f 100644 --- a/gemfiles/rails_6.1_ruby_3.3.0.gemfile.lock +++ b/gemfiles/rails_6.1_ruby_3.3.0.gemfile.lock @@ -95,7 +95,7 @@ GEM acts_as_list (1.2.4) activerecord (>= 6.1) activesupport (>= 6.1) - actual_db_schema (0.8.2) + actual_db_schema (0.8.3) activerecord activesupport ast @@ -117,8 +117,8 @@ GEM money-rails (~> 1.12) avo-record_link_field (0.0.2) aws-eventstream (1.3.1) - aws-partitions (1.1056.0) - aws-sdk-core (3.219.0) + aws-partitions (1.1061.0) + aws-sdk-core (3.220.0) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) @@ -178,7 +178,7 @@ GEM bigdecimal rexml crass (1.0.6) - cssbundling-rails (1.4.2) + cssbundling-rails (1.4.3) railties (>= 6.0.0) csv (3.3.2) cuprite (0.15.1) @@ -408,7 +408,7 @@ GEM puma (6.6.0) nio4r (~> 2.0) racc (1.8.1) - rack (2.2.11) + rack (2.2.12) rack-test (2.2.0) rack (>= 1.3) rails (6.1.7.10) @@ -460,7 +460,7 @@ GEM rdoc (6.3.4.1) redis (5.4.0) redis-client (>= 0.22.0) - redis-client (0.23.2) + redis-client (0.24.0) connection_pool reek (6.1.4) kwalify (~> 0.7.0) @@ -549,7 +549,7 @@ GEM simplecov-lcov (0.8.0) simplecov_json_formatter (0.1.4) smart_properties (1.17.0) - solargraph (0.51.2) + solargraph (0.52.0) backport (~> 1.2) benchmark bundler (~> 2.0) @@ -567,6 +567,7 @@ GEM thor (~> 1.0) tilt (~> 2.0) yard (~> 0.9, >= 0.9.24) + yard-solargraph (~> 0.1) solargraph-rails (1.1.0) activesupport solargraph @@ -602,7 +603,7 @@ GEM tilt (2.6.0) timeout (0.4.3) tty-which (0.5.0) - turbo-rails (2.0.11) + turbo-rails (2.0.12) actionpack (>= 6.0.0) railties (>= 6.0.0) turbo_power (0.7.0) @@ -639,6 +640,8 @@ GEM xpath (3.2.0) nokogiri (~> 1.8) yard (0.9.37) + yard-solargraph (0.1.0) + yard (~> 0.9) zeitwerk (2.7.2) PLATFORMS diff --git a/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock b/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock index 7a7e1e1fd..4d5743a06 100644 --- a/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock +++ b/gemfiles/rails_7.1_ruby_3.1.4.gemfile.lock @@ -108,7 +108,7 @@ GEM acts_as_list (1.2.4) activerecord (>= 6.1) activesupport (>= 6.1) - actual_db_schema (0.8.2) + actual_db_schema (0.8.3) activerecord activesupport ast @@ -130,8 +130,8 @@ GEM money-rails (~> 1.12) avo-record_link_field (0.0.2) aws-eventstream (1.3.1) - aws-partitions (1.1056.0) - aws-sdk-core (3.219.0) + aws-partitions (1.1061.0) + aws-sdk-core (3.220.0) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) @@ -191,7 +191,7 @@ GEM bigdecimal rexml crass (1.0.6) - cssbundling-rails (1.4.2) + cssbundling-rails (1.4.3) railties (>= 6.0.0) csv (3.3.2) cuprite (0.15.1) @@ -508,7 +508,7 @@ GEM rdoc (6.3.4.1) redis (5.4.0) redis-client (>= 0.22.0) - redis-client (0.23.2) + redis-client (0.24.0) connection_pool reek (6.4.0) dry-schema (~> 1.13.0) @@ -560,8 +560,8 @@ GEM rubocop-performance (1.23.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) - rubocop-shopify (2.15.1) - rubocop (~> 1.51) + rubocop-shopify (2.16.0) + rubocop (~> 1.62) ruby-openai (7.4.0) event_stream_parser (>= 0.3.0, < 2.0.0) faraday (>= 1) @@ -599,7 +599,7 @@ GEM simplecov-lcov (0.8.0) simplecov_json_formatter (0.1.4) smart_properties (1.17.0) - solargraph (0.51.2) + solargraph (0.52.0) backport (~> 1.2) benchmark bundler (~> 2.0) @@ -617,6 +617,7 @@ GEM thor (~> 1.0) tilt (~> 2.0) yard (~> 0.9, >= 0.9.24) + yard-solargraph (~> 0.1) solargraph-rails (1.1.0) activesupport solargraph @@ -652,9 +653,9 @@ GEM tilt (2.6.0) timeout (0.4.3) tty-which (0.5.0) - turbo-rails (2.0.11) - actionpack (>= 6.0.0) - railties (>= 6.0.0) + turbo-rails (2.0.13) + actionpack (>= 7.1.0) + railties (>= 7.1.0) turbo_power (0.7.0) turbo-rails (>= 1.3.0) tzinfo (2.0.6) @@ -692,6 +693,8 @@ GEM xpath (3.2.0) nokogiri (~> 1.8) yard (0.9.37) + yard-solargraph (0.1.0) + yard (~> 0.9) zeitwerk (2.7.2) PLATFORMS diff --git a/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock b/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock index 6e0d9e1b5..a672aae1c 100644 --- a/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock +++ b/gemfiles/rails_7.1_ruby_3.3.0.gemfile.lock @@ -108,7 +108,7 @@ GEM acts_as_list (1.2.4) activerecord (>= 6.1) activesupport (>= 6.1) - actual_db_schema (0.8.2) + actual_db_schema (0.8.3) activerecord activesupport ast @@ -130,8 +130,8 @@ GEM money-rails (~> 1.12) avo-record_link_field (0.0.2) aws-eventstream (1.3.1) - aws-partitions (1.1056.0) - aws-sdk-core (3.219.0) + aws-partitions (1.1061.0) + aws-sdk-core (3.220.0) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) @@ -191,7 +191,7 @@ GEM bigdecimal rexml crass (1.0.6) - cssbundling-rails (1.4.2) + cssbundling-rails (1.4.3) railties (>= 6.0.0) csv (3.3.2) cuprite (0.15.1) @@ -480,7 +480,7 @@ GEM rdoc (6.3.4.1) redis (5.4.0) redis-client (>= 0.22.0) - redis-client (0.23.2) + redis-client (0.24.0) connection_pool reek (6.1.4) kwalify (~> 0.7.0) @@ -570,7 +570,7 @@ GEM simplecov-lcov (0.8.0) simplecov_json_formatter (0.1.4) smart_properties (1.17.0) - solargraph (0.51.2) + solargraph (0.52.0) backport (~> 1.2) benchmark bundler (~> 2.0) @@ -588,6 +588,7 @@ GEM thor (~> 1.0) tilt (~> 2.0) yard (~> 0.9, >= 0.9.24) + yard-solargraph (~> 0.1) solargraph-rails (1.1.0) activesupport solargraph @@ -623,9 +624,9 @@ GEM tilt (2.6.0) timeout (0.4.3) tty-which (0.5.0) - turbo-rails (2.0.11) - actionpack (>= 6.0.0) - railties (>= 6.0.0) + turbo-rails (2.0.13) + actionpack (>= 7.1.0) + railties (>= 7.1.0) turbo_power (0.7.0) turbo-rails (>= 1.3.0) tzinfo (2.0.6) @@ -661,6 +662,8 @@ GEM xpath (3.2.0) nokogiri (~> 1.8) yard (0.9.37) + yard-solargraph (0.1.0) + yard (~> 0.9) zeitwerk (2.7.2) PLATFORMS diff --git a/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock b/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock index 63023c9cf..bb76b9409 100644 --- a/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock +++ b/gemfiles/rails_8.0_ruby_3.3.0.gemfile.lock @@ -108,7 +108,7 @@ GEM acts_as_list (1.2.4) activerecord (>= 6.1) activesupport (>= 6.1) - actual_db_schema (0.8.2) + actual_db_schema (0.8.3) activerecord activesupport ast @@ -130,8 +130,8 @@ GEM money-rails (~> 1.12) avo-record_link_field (0.0.2) aws-eventstream (1.3.1) - aws-partitions (1.1056.0) - aws-sdk-core (3.219.0) + aws-partitions (1.1061.0) + aws-sdk-core (3.220.0) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) @@ -191,7 +191,7 @@ GEM bigdecimal rexml crass (1.0.6) - cssbundling-rails (1.4.2) + cssbundling-rails (1.4.3) railties (>= 6.0.0) csv (3.3.2) cuprite (0.15.1) @@ -480,7 +480,7 @@ GEM rdoc (6.3.4.1) redis (5.4.0) redis-client (>= 0.22.0) - redis-client (0.23.2) + redis-client (0.24.0) connection_pool reek (6.1.4) kwalify (~> 0.7.0) @@ -570,7 +570,7 @@ GEM simplecov-lcov (0.8.0) simplecov_json_formatter (0.1.4) smart_properties (1.17.0) - solargraph (0.51.2) + solargraph (0.52.0) backport (~> 1.2) benchmark bundler (~> 2.0) @@ -588,6 +588,7 @@ GEM thor (~> 1.0) tilt (~> 2.0) yard (~> 0.9, >= 0.9.24) + yard-solargraph (~> 0.1) solargraph-rails (1.1.0) activesupport solargraph @@ -623,9 +624,9 @@ GEM tilt (2.6.0) timeout (0.4.3) tty-which (0.5.0) - turbo-rails (2.0.11) - actionpack (>= 6.0.0) - railties (>= 6.0.0) + turbo-rails (2.0.13) + actionpack (>= 7.1.0) + railties (>= 7.1.0) turbo_power (0.7.0) turbo-rails (>= 1.3.0) tzinfo (2.0.6) @@ -661,6 +662,8 @@ GEM xpath (3.2.0) nokogiri (~> 1.8) yard (0.9.37) + yard-solargraph (0.1.0) + yard (~> 0.9) zeitwerk (2.7.2) PLATFORMS From 1d8410d08626732f369ea361d3a4b40f27c0337c Mon Sep 17 00:00:00 2001 From: Adrian Marin Date: Thu, 6 Mar 2025 17:48:52 +0400 Subject: [PATCH 6/6] chore: definition list tweak (#3725) --- app/assets/stylesheets/avo.base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/avo.base.css b/app/assets/stylesheets/avo.base.css index 1dce0a91c..608022768 100644 --- a/app/assets/stylesheets/avo.base.css +++ b/app/assets/stylesheets/avo.base.css @@ -97,7 +97,7 @@ dl { @apply text-sm grid gap-x-2 grid-cols-[max-content_1fr]; dt { - @apply font-bold mt-1; + @apply font-bold; } dd {