Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt to 0.28 release and phone number enhancements #19

Merged
merged 42 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from 35 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
81a4449
refactor fields to 0.28
Crashillo Apr 3, 2024
03ec242
update field in profile form
Crashillo Apr 4, 2024
ce8695a
include admin fields and translations
Crashillo Apr 4, 2024
36e44ef
translations
Crashillo Apr 4, 2024
13c822a
better regex
Crashillo Apr 4, 2024
1142fa6
refactor country selector
Crashillo Apr 4, 2024
ba0c29a
bump ruby version
Crashillo Apr 4, 2024
d403705
bump gemfile
Crashillo Apr 8, 2024
77ecb24
Add admin icon of module
entantoencuanto Apr 16, 2024
1405c86
Use custom_country_select on front form
entantoencuanto Apr 16, 2024
14474a6
Allow admins to edit placeholder and pattern fields of phone_number a…
entantoencuanto Apr 16, 2024
7d94ee5
Validate phone number format in the form if required
entantoencuanto Apr 16, 2024
e1046dc
Update module version
entantoencuanto Apr 16, 2024
94d5e35
Inherit rubocop config from 0.28
entantoencuanto Apr 16, 2024
35aa4aa
Update organization factory
entantoencuanto Apr 16, 2024
47a29b2
Fix rubocop offenses
entantoencuanto Apr 16, 2024
b530742
Normalize locales
entantoencuanto Apr 16, 2024
157bef3
Remove references to password confirmation in user creation
entantoencuanto Apr 16, 2024
ba49dd1
Fix rubocop offenses
entantoencuanto Apr 16, 2024
c6b301a
Rename file
entantoencuanto Apr 16, 2024
77f54b3
Change factory to avoid rubocop offense
entantoencuanto Apr 17, 2024
55dbbcd
Include pattern and placeholder settings in update_extra_user_fields …
entantoencuanto Apr 17, 2024
d65dc2b
Adapt test to 0.28 release
entantoencuanto Apr 17, 2024
9e78edb
Add test to check phone number pattern validation in account form
entantoencuanto Apr 17, 2024
dbb9b4f
Extend extra_user_fields configuration to all fields in account_form_…
entantoencuanto Apr 17, 2024
7f3ebd7
Replace gender option with valid value in tests
entantoencuanto Apr 17, 2024
00b6f90
Adapt test to 0.28 release
entantoencuanto Apr 17, 2024
fe9a368
Include example to test phone number pattern validation
entantoencuanto Apr 17, 2024
a0587e8
Redesign export participants dropdown
entantoencuanto Apr 17, 2024
14dc50d
Fix test selectors ambiguities
entantoencuanto Apr 17, 2024
680dfbc
Avoid duplicated labels
entantoencuanto Apr 17, 2024
4cc95cf
Fix selectors in tests
entantoencuanto Apr 17, 2024
3074a42
Add examples to check phone number validation in account system tests
entantoencuanto Apr 17, 2024
b588a19
Remove deprecated actions filling registration form in tests
entantoencuanto Apr 17, 2024
07c8a7d
Add examples to check phone number validation in registration system …
entantoencuanto Apr 17, 2024
bc9e8d6
Add toggle behavior to admin checkboxes
entantoencuanto Apr 18, 2024
634f98c
Add help on regexp field for phone number format
entantoencuanto Apr 18, 2024
b32285a
Disable edition of extra fields in profile if global setting is deact…
entantoencuanto Apr 18, 2024
9177a94
Update feature icon
entantoencuanto Apr 18, 2024
7ce59fc
Normalize translations files
entantoencuanto Apr 18, 2024
b420da1
Make phone placeholder translatable
entantoencuanto Apr 18, 2024
b669e62
Update help text
entantoencuanto Apr 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on: "push"

env:
CI: "true"
RUBY_VERSION: 3.0.2
NODE_VERSION: 16.9.1
RUBY_VERSION: 3.1.1
NODE_VERSION: 18.17.1

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
inherit_from: https://raw.githubusercontent.com/decidim/decidim/release/0.27-stable/.rubocop.yml
inherit_from: https://raw.githubusercontent.com/decidim/decidim/release/0.28-stable/.rubocop.yml

AllCops:
Include:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.2
3.1.1
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

DECIDIM_VERSION = "~> 0.27.4"
DECIDIM_VERSION = "~> 0.28"

source "https://rubygems.org"

Expand All @@ -20,7 +20,7 @@ group :development, :test do
end

group :development do
gem "faker", "~> 2.14"
gem "faker", "~> 3.3.1"
gem "letter_opener_web", "~> 1.3"
gem "listen", "~> 3.1"
gem "rubocop-faker"
Expand Down
Loading
Loading