decidim 0.30.1 → 0.30.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +5 -9
- data/docs/modules/develop/pages/share_tokens.adoc +2 -2
- data/docs/modules/install/pages/index.adoc +4 -9
- data/docs/modules/install/pages/manual.adoc +23 -31
- data/docs/modules/install/pages/update.adoc +0 -2
- data/docs/modules/services/pages/activestorage.adoc +4 -3
- data/lib/decidim/version.rb +1 -1
- data/package-lock.json +7 -7
- data/packages/browserslist-config/package.json +1 -1
- data/packages/core/package.json +1 -1
- data/packages/dev/package.json +1 -1
- data/packages/eslint-config/package.json +1 -1
- data/packages/prettier-config/package.json +1 -1
- data/packages/stylelint-config/package.json +1 -1
- data/packages/webpacker/package.json +1 -1
- metadata +40 -40
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2982bf1809ccfb5545ab9fea2b242855513456c7bada5ce02c5abde0ff27828
|
4
|
+
data.tar.gz: 5905a2a0ce48ee650aef8f693bcfad8ebea43c6461715d26f95c760ce469f523
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c09847dfc88f2bcc259d2b3643a9ca79f7e07ad25d68e30b20fd7a7caacbfa7c878209aa02ccfab5f74019ce5e1c05ecb2544906a1395d2448a97e1c1c24aeda
|
7
|
+
data.tar.gz: 22d1d315af1974f40b0efd0dd2209db5643735da4eead26557aaea3af4b6666a1426f1fb95e80b155ff2f843e265263616bb2cb9eaa809e1dd608a631fae07a3
|
data/Rakefile
CHANGED
@@ -65,11 +65,7 @@ end
|
|
65
65
|
desc "Pushes a new build for each gem and package."
|
66
66
|
task release_all: [:ensure_git_remote, :fetch_git_tags, :update_versions, :fetch_git_tags, :check_uncommitted_changes, :check_locale_completeness] do
|
67
67
|
commands = {}
|
68
|
-
Decidim::GemManager.all_dirs
|
69
|
-
next if dir.include?("decidim-admin")
|
70
|
-
next if dir.include?("decidim-accountability")
|
71
|
-
commands[dir] = "rake release[#{Decidim::ReleaseManager.git_remote}]"
|
72
|
-
end
|
68
|
+
Decidim::GemManager.all_dirs { |dir| commands[dir] = "rake release[#{Decidim::ReleaseManager.git_remote}]" }
|
73
69
|
Decidim::GemManager.package_dirs { |dir| commands[dir] = "npm publish --access public" }
|
74
70
|
|
75
71
|
commands.each do |dir, command|
|
@@ -94,10 +90,10 @@ end
|
|
94
90
|
|
95
91
|
desc "Makes sure there are no uncommitted changes."
|
96
92
|
task :check_uncommitted_changes do
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
93
|
+
unless system("git diff --exit-code --quiet")
|
94
|
+
puts "There are uncommitted changes, run `git diff` to see them."
|
95
|
+
abort "Please commit your changes before release!"
|
96
|
+
end
|
101
97
|
end
|
102
98
|
|
103
99
|
desc "Makes sure all official locales are complete and clean."
|
@@ -96,7 +96,7 @@ Decidim.menu :admin_assembly_menu do |menu|
|
|
96
96
|
decidim_admin_assemblies.assembly_share_tokens_path(current_participatory_space),
|
97
97
|
active: is_active_link?(decidim_admin_assemblies.assembly_share_tokens_path(current_participatory_space)),
|
98
98
|
icon_name: "share-line",
|
99
|
-
if: allowed_to?(:read, :
|
99
|
+
if: allowed_to?(:read, :share_token, current_participatory_space:)
|
100
100
|
...
|
101
101
|
end
|
102
102
|
----
|
@@ -128,7 +128,7 @@ For admin controllers:
|
|
128
128
|
|
129
129
|
[source,ruby]
|
130
130
|
----
|
131
|
-
allow! if permission_action.subject == :
|
131
|
+
allow! if permission_action.subject == :share_token
|
132
132
|
----
|
133
133
|
|
134
134
|
For frontend controllers:
|
@@ -28,18 +28,13 @@ gem install decidim
|
|
28
28
|
decidim decidim_application
|
29
29
|
----
|
30
30
|
|
31
|
-
You can see the xref:install:manual.adoc[official manual installation tutorial]
|
31
|
+
You can see the xref:install:manual.adoc[official manual installation tutorial] for all the instructions on how to install Decidim.
|
32
32
|
|
33
|
-
=== B.
|
33
|
+
=== B. Docker / docker-compose
|
34
34
|
|
35
|
-
|
35
|
+
If you are proficient with Docker you can use the docker-compose.yml file that we provide as an example. The main limitation that you will have is that you cannot use modules with this image, only the official ones. It can be a good starting point if you want to check out Decidim locally quickly and before going to the manual installation approach.
|
36
36
|
|
37
|
-
[
|
38
|
-
----
|
39
|
-
wget -O install-decidim.sh https://raw.githubusercontent.com/Platoniq/decidim-install/master/script/install-decidim.sh
|
40
|
-
chmod +x install-decidim.sh
|
41
|
-
./install-decidim.sh decidim_application
|
42
|
-
----
|
37
|
+
You can see the docker instructions at the https://github.com/decidim/docker/[Docker repository].
|
43
38
|
|
44
39
|
== Initializing your application for local development
|
45
40
|
|
@@ -3,22 +3,22 @@
|
|
3
3
|
In order to develop on decidim, you will need:
|
4
4
|
|
5
5
|
* *Git* 2.34+
|
6
|
-
* *PostgreSQL*
|
6
|
+
* *PostgreSQL* 17.4+
|
7
7
|
* *Ruby* 3.1.1
|
8
8
|
* *NodeJS* 18.17.x
|
9
|
-
* *Npm* 9.
|
9
|
+
* *Npm* 10.9.x
|
10
10
|
* *ImageMagick*
|
11
|
-
* *Chrome* browser and https://sites.google.com/a/chromium.org/chromedriver/[chromedriver]
|
11
|
+
* *Chrome* browser and https://sites.google.com/a/chromium.org/chromedriver/[chromedriver] (if you need to run specs/tests)
|
12
12
|
|
13
13
|
The compatibility between the different versions of the components is the following:
|
14
14
|
|
15
15
|
include::install:partial$version_matrix.adoc[]
|
16
16
|
|
17
|
-
We are starting with an Ubuntu
|
17
|
+
We are starting with an Ubuntu 24.04.3 LTS. This is an opinionated guide, so you are free to use the technology that you are most comfortable. If you have any doubts and you are blocked you can go and ask on https://matrix.to/#/#decidimdevs:matrix.org[our Matrix.org chat room for developers].
|
18
18
|
|
19
19
|
We recommend to have at least some basic proficiency in GNU/Linux (i.e. how to use the command-line, packages, etc), networking knowledge, server administration, development in general, and some basic knowledge about software package managers. It would be great to have Ruby on Rails development basics (a good starting point is http://guides.rubyonrails.org/getting_started.html[Getting Started with Ruby on Rails]) and have some knowledge on how package libraries are working (we use `bundler` for handling ruby packages, and `npm`/`yarn` for handling javascript).
|
20
20
|
|
21
|
-
In this guide, we will see how to install rbenv, PostgreSQL, Node.js and, Decidim, and how to configure everything together for a development environment. Mind that if you want to make a production deployment with real users this guide is not enough, you should configure a web server (like nginx), backups, monitoring, etc. This is out of the scope of this guide, but you can follow
|
21
|
+
In this guide, we will see how to install rbenv, PostgreSQL, Node.js and, Decidim, and how to configure everything together for a development environment. Mind that if you want to make a production deployment with real users this guide is not enough, you should configure a web server (like nginx), backups, monitoring, etc. This is out of the scope of this guide, but you can follow any Ruby on Rails guide on how to configure it for production or use a service like Render, Fly.io, Heroku, etc.
|
22
22
|
|
23
23
|
== 1. Installing rbenv
|
24
24
|
|
@@ -27,7 +27,7 @@ First, we are going to install https://github.com/rbenv/rbenv[rbenv], for managi
|
|
27
27
|
[source,bash]
|
28
28
|
----
|
29
29
|
sudo apt update
|
30
|
-
sudo apt install -y build-essential curl git libssl-dev zlib1g-dev
|
30
|
+
sudo apt install -y build-essential curl git libssl-dev zlib1g-dev libffi-dev libyaml-dev
|
31
31
|
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
|
32
32
|
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
|
33
33
|
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
|
@@ -55,13 +55,10 @@ An important component for Decidim is Node.js and Yarn. With this commands you w
|
|
55
55
|
|
56
56
|
[source,bash]
|
57
57
|
----
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
|
63
|
-
echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
|
64
|
-
sudo apt-get update && sudo apt-get install -y yarn
|
58
|
+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
|
59
|
+
source "$HOME/.nvm/nvm.sh"
|
60
|
+
nvm install 18
|
61
|
+
npm install -g yarn
|
65
62
|
----
|
66
63
|
|
67
64
|
== 4. Installing Decidim
|
@@ -79,25 +76,18 @@ Then we can create an application with the `decidim` executable, where `decidim_
|
|
79
76
|
[source,bash]
|
80
77
|
----
|
81
78
|
decidim decidim_application
|
82
|
-
cd decidim_application
|
83
|
-
----
|
84
|
-
|
85
|
-
We recommend that you save it all on Git.
|
86
|
-
|
87
|
-
[source,bash]
|
88
|
-
----
|
89
|
-
git add .
|
90
|
-
git commit -m "Initial commit. Generated with Decidim https://decidim.org"
|
91
79
|
----
|
92
80
|
|
93
81
|
== 5. Configure the database
|
94
82
|
|
95
|
-
|
96
|
-
should always be careful of not uploading your plain secrets on git or your version control system. You can also upload the encrypted secrets, using the sekrets gem or if you are on Ruby on Rails greater than 5.1 you can do it natively.
|
83
|
+
For configuring the database and other parts of Decidim, we use xref:configure:environment_variables.adoc[Environment variables]. We recommend using https://github.com/rbenv/rbenv-vars[rbenv-vars].
|
97
84
|
|
98
|
-
|
85
|
+
[NOTE]
|
86
|
+
====
|
87
|
+
Be careful with your `.rbenv-vars` file, as if you put it in the same folder of your decidim generated application you could publish it without you noticing and there will be secrets there. We strongly recommend adding it to other directory
|
88
|
+
====
|
99
89
|
|
100
|
-
|
90
|
+
For installing `rbenv-vars`:
|
101
91
|
|
102
92
|
[source,bash]
|
103
93
|
----
|
@@ -115,15 +105,17 @@ DATABASE_PASSWORD=thepassword
|
|
115
105
|
EOF
|
116
106
|
----
|
117
107
|
|
118
|
-
|
108
|
+
== 6. Initializing your app for local development
|
109
|
+
|
110
|
+
At this point we recommend that you save it all on Git.
|
119
111
|
|
120
112
|
[source,bash]
|
121
113
|
----
|
122
|
-
|
114
|
+
cd decidim_application
|
115
|
+
git add .
|
116
|
+
git commit -m "Initial commit. Generated with Decidim https://decidim.org"
|
123
117
|
----
|
124
118
|
|
125
|
-
== 6. Initializing your app for local development
|
126
|
-
|
127
119
|
[NOTE]
|
128
120
|
====
|
129
121
|
Please refer to xref:install:empty-database.adoc[Empty database installation] section if you want to setup your instance with an empty database (without any seeds).
|
@@ -152,7 +144,7 @@ Visit http://localhost:3000 to see your app running. 🎉 🎉
|
|
152
144
|
|
153
145
|
[NOTE]
|
154
146
|
====
|
155
|
-
With these steps you would only have an initial installation for trying Decidim, but it still needs lots of things to take in account.
|
147
|
+
With these steps you would only have an initial installation for trying Decidim, but it still needs lots of things to take in account.
|
156
148
|
====
|
157
149
|
|
158
150
|
== Extra notes
|
@@ -1,7 +1,5 @@
|
|
1
1
|
= Updating Decidim
|
2
2
|
|
3
|
-
IMPORTANT: This section was initially copied from https://platoniq.github.io/decidim-install/decidim-update/[Platoniq's Guide]
|
4
|
-
|
5
3
|
Because Decidim is a gem in our system, to update it we will have to edit our `Gemfile` and specify the new version number.
|
6
4
|
|
7
5
|
To keep our system up to date, we can visit the page https://github.com/decidim/decidim/releases[Releases] and compare with our `Gemfile`. See if the lines specifying the gem called "decidim-something" are followed by the number corresponding to the latest release:
|
@@ -23,6 +23,7 @@ Locate the bucket, go into the "Permissions" tab and find the section titled "CO
|
|
23
23
|
"*"
|
24
24
|
],
|
25
25
|
"AllowedMethods": [
|
26
|
+
"GET"
|
26
27
|
"PUT"
|
27
28
|
],
|
28
29
|
"AllowedOrigins": [
|
@@ -57,7 +58,7 @@ Before running that command you need to have a `cors.json` file in the same dire
|
|
57
58
|
[
|
58
59
|
{
|
59
60
|
"origin": ["https://www.example.com"],
|
60
|
-
"method": ["PUT"],
|
61
|
+
"method": ["GET", "PUT"],
|
61
62
|
"responseHeader": ["Origin", "Content-Type", "Content-MD5", "Content-Disposition"],
|
62
63
|
"maxAgeSeconds": 3600
|
63
64
|
}
|
@@ -71,7 +72,7 @@ Read more at https://cloud.google.com/storage/docs/configuring-cors[Google Cloud
|
|
71
72
|
Locate the storage account from the Azure Portal and go to the "Resource sharing (CORS)" section under "Settings. Fill in the following configuration options in the "Blob service" tab of that section (replace `https://www.example.com` with the actual domain of your service):
|
72
73
|
|
73
74
|
- **Allowed origins**: https://www.example.com
|
74
|
-
- **Allowed methods**: PUT
|
75
|
+
- **Allowed methods**: GET,PUT
|
75
76
|
- **Allowed headers**: *
|
76
77
|
- **Exposed headers**: Origin, Content-Type, Content-MD5, x-ms-blob-content-disposition, x-ms-blob-type
|
77
78
|
- **Max age**: 3600
|
@@ -83,7 +84,7 @@ When using the Azure REST API, you can use the `Set Blob Service Properties` ope
|
|
83
84
|
<Cors>
|
84
85
|
<CorsRule>
|
85
86
|
<AllowedOrigins>https://www.example.com</AllowedOrigins>
|
86
|
-
<AllowedMethods>PUT</AllowedMethods>
|
87
|
+
<AllowedMethods>GET,PUT</AllowedMethods>
|
87
88
|
<AllowedHeaders>*</AllowedHeaders>
|
88
89
|
<ExposedHeaders>Origin, Content-Type, Content-MD5, x-ms-blob-content-disposition, x-ms-blob-type</ExposedHeaders>
|
89
90
|
<MaxAgeInSeconds>3600</MaxAgeInSeconds>
|
data/lib/decidim/version.rb
CHANGED
data/package-lock.json
CHANGED
@@ -21033,12 +21033,12 @@
|
|
21033
21033
|
},
|
21034
21034
|
"packages/browserslist-config": {
|
21035
21035
|
"name": "@decidim/browserslist-config",
|
21036
|
-
"version": "0.30.
|
21036
|
+
"version": "0.30.2",
|
21037
21037
|
"license": "AGPL-3.0-or-later"
|
21038
21038
|
},
|
21039
21039
|
"packages/core": {
|
21040
21040
|
"name": "@decidim/core",
|
21041
|
-
"version": "0.30.
|
21041
|
+
"version": "0.30.2",
|
21042
21042
|
"license": "AGPL-3.0-or-later",
|
21043
21043
|
"dependencies": {
|
21044
21044
|
"@emoji-mart/data": "^1.1.2",
|
@@ -21116,7 +21116,7 @@
|
|
21116
21116
|
},
|
21117
21117
|
"packages/dev": {
|
21118
21118
|
"name": "@decidim/dev",
|
21119
|
-
"version": "0.30.
|
21119
|
+
"version": "0.30.2",
|
21120
21120
|
"dev": true,
|
21121
21121
|
"license": "AGPL-3.0-or-later",
|
21122
21122
|
"dependencies": {
|
@@ -21127,7 +21127,7 @@
|
|
21127
21127
|
},
|
21128
21128
|
"packages/eslint-config": {
|
21129
21129
|
"name": "@decidim/eslint-config",
|
21130
|
-
"version": "0.30.
|
21130
|
+
"version": "0.30.2",
|
21131
21131
|
"dev": true,
|
21132
21132
|
"license": "AGPL-3.0-or-later",
|
21133
21133
|
"peerDependencies": {
|
@@ -21145,7 +21145,7 @@
|
|
21145
21145
|
},
|
21146
21146
|
"packages/prettier-config": {
|
21147
21147
|
"name": "@decidim/prettier-config",
|
21148
|
-
"version": "0.30.
|
21148
|
+
"version": "0.30.2",
|
21149
21149
|
"dev": true,
|
21150
21150
|
"license": "AGPL-3.0-or-later",
|
21151
21151
|
"peerDependencies": {
|
@@ -21154,7 +21154,7 @@
|
|
21154
21154
|
},
|
21155
21155
|
"packages/stylelint-config": {
|
21156
21156
|
"name": "@decidim/stylelint-config",
|
21157
|
-
"version": "0.30.
|
21157
|
+
"version": "0.30.2",
|
21158
21158
|
"dev": true,
|
21159
21159
|
"license": "AGPL-3.0-or-later",
|
21160
21160
|
"peerDependencies": {
|
@@ -21164,7 +21164,7 @@
|
|
21164
21164
|
},
|
21165
21165
|
"packages/webpacker": {
|
21166
21166
|
"name": "@decidim/webpacker",
|
21167
|
-
"version": "0.30.
|
21167
|
+
"version": "0.30.2",
|
21168
21168
|
"license": "AGPL-3.0-or-later",
|
21169
21169
|
"dependencies": {
|
21170
21170
|
"@rails/ujs": "^6.1.7",
|
data/packages/core/package.json
CHANGED
data/packages/dev/package.json
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.30.
|
4
|
+
version: 0.30.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2025-
|
13
|
+
date: 2025-09-23 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: decidim-accountability
|
@@ -18,266 +18,266 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.30.
|
21
|
+
version: 0.30.2
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 0.30.
|
28
|
+
version: 0.30.2
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: decidim-admin
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
33
|
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.30.
|
35
|
+
version: 0.30.2
|
36
36
|
type: :runtime
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - '='
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 0.30.
|
42
|
+
version: 0.30.2
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: decidim-api
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - '='
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.30.
|
49
|
+
version: 0.30.2
|
50
50
|
type: :runtime
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - '='
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: 0.30.
|
56
|
+
version: 0.30.2
|
57
57
|
- !ruby/object:Gem::Dependency
|
58
58
|
name: decidim-assemblies
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
61
|
- - '='
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: 0.30.
|
63
|
+
version: 0.30.2
|
64
64
|
type: :runtime
|
65
65
|
prerelease: false
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - '='
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version: 0.30.
|
70
|
+
version: 0.30.2
|
71
71
|
- !ruby/object:Gem::Dependency
|
72
72
|
name: decidim-blogs
|
73
73
|
requirement: !ruby/object:Gem::Requirement
|
74
74
|
requirements:
|
75
75
|
- - '='
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version: 0.30.
|
77
|
+
version: 0.30.2
|
78
78
|
type: :runtime
|
79
79
|
prerelease: false
|
80
80
|
version_requirements: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - '='
|
83
83
|
- !ruby/object:Gem::Version
|
84
|
-
version: 0.30.
|
84
|
+
version: 0.30.2
|
85
85
|
- !ruby/object:Gem::Dependency
|
86
86
|
name: decidim-budgets
|
87
87
|
requirement: !ruby/object:Gem::Requirement
|
88
88
|
requirements:
|
89
89
|
- - '='
|
90
90
|
- !ruby/object:Gem::Version
|
91
|
-
version: 0.30.
|
91
|
+
version: 0.30.2
|
92
92
|
type: :runtime
|
93
93
|
prerelease: false
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
95
95
|
requirements:
|
96
96
|
- - '='
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version: 0.30.
|
98
|
+
version: 0.30.2
|
99
99
|
- !ruby/object:Gem::Dependency
|
100
100
|
name: decidim-comments
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|
102
102
|
requirements:
|
103
103
|
- - '='
|
104
104
|
- !ruby/object:Gem::Version
|
105
|
-
version: 0.30.
|
105
|
+
version: 0.30.2
|
106
106
|
type: :runtime
|
107
107
|
prerelease: false
|
108
108
|
version_requirements: !ruby/object:Gem::Requirement
|
109
109
|
requirements:
|
110
110
|
- - '='
|
111
111
|
- !ruby/object:Gem::Version
|
112
|
-
version: 0.30.
|
112
|
+
version: 0.30.2
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: decidim-core
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
116
116
|
requirements:
|
117
117
|
- - '='
|
118
118
|
- !ruby/object:Gem::Version
|
119
|
-
version: 0.30.
|
119
|
+
version: 0.30.2
|
120
120
|
type: :runtime
|
121
121
|
prerelease: false
|
122
122
|
version_requirements: !ruby/object:Gem::Requirement
|
123
123
|
requirements:
|
124
124
|
- - '='
|
125
125
|
- !ruby/object:Gem::Version
|
126
|
-
version: 0.30.
|
126
|
+
version: 0.30.2
|
127
127
|
- !ruby/object:Gem::Dependency
|
128
128
|
name: decidim-debates
|
129
129
|
requirement: !ruby/object:Gem::Requirement
|
130
130
|
requirements:
|
131
131
|
- - '='
|
132
132
|
- !ruby/object:Gem::Version
|
133
|
-
version: 0.30.
|
133
|
+
version: 0.30.2
|
134
134
|
type: :runtime
|
135
135
|
prerelease: false
|
136
136
|
version_requirements: !ruby/object:Gem::Requirement
|
137
137
|
requirements:
|
138
138
|
- - '='
|
139
139
|
- !ruby/object:Gem::Version
|
140
|
-
version: 0.30.
|
140
|
+
version: 0.30.2
|
141
141
|
- !ruby/object:Gem::Dependency
|
142
142
|
name: decidim-forms
|
143
143
|
requirement: !ruby/object:Gem::Requirement
|
144
144
|
requirements:
|
145
145
|
- - '='
|
146
146
|
- !ruby/object:Gem::Version
|
147
|
-
version: 0.30.
|
147
|
+
version: 0.30.2
|
148
148
|
type: :runtime
|
149
149
|
prerelease: false
|
150
150
|
version_requirements: !ruby/object:Gem::Requirement
|
151
151
|
requirements:
|
152
152
|
- - '='
|
153
153
|
- !ruby/object:Gem::Version
|
154
|
-
version: 0.30.
|
154
|
+
version: 0.30.2
|
155
155
|
- !ruby/object:Gem::Dependency
|
156
156
|
name: decidim-generators
|
157
157
|
requirement: !ruby/object:Gem::Requirement
|
158
158
|
requirements:
|
159
159
|
- - '='
|
160
160
|
- !ruby/object:Gem::Version
|
161
|
-
version: 0.30.
|
161
|
+
version: 0.30.2
|
162
162
|
type: :runtime
|
163
163
|
prerelease: false
|
164
164
|
version_requirements: !ruby/object:Gem::Requirement
|
165
165
|
requirements:
|
166
166
|
- - '='
|
167
167
|
- !ruby/object:Gem::Version
|
168
|
-
version: 0.30.
|
168
|
+
version: 0.30.2
|
169
169
|
- !ruby/object:Gem::Dependency
|
170
170
|
name: decidim-meetings
|
171
171
|
requirement: !ruby/object:Gem::Requirement
|
172
172
|
requirements:
|
173
173
|
- - '='
|
174
174
|
- !ruby/object:Gem::Version
|
175
|
-
version: 0.30.
|
175
|
+
version: 0.30.2
|
176
176
|
type: :runtime
|
177
177
|
prerelease: false
|
178
178
|
version_requirements: !ruby/object:Gem::Requirement
|
179
179
|
requirements:
|
180
180
|
- - '='
|
181
181
|
- !ruby/object:Gem::Version
|
182
|
-
version: 0.30.
|
182
|
+
version: 0.30.2
|
183
183
|
- !ruby/object:Gem::Dependency
|
184
184
|
name: decidim-pages
|
185
185
|
requirement: !ruby/object:Gem::Requirement
|
186
186
|
requirements:
|
187
187
|
- - '='
|
188
188
|
- !ruby/object:Gem::Version
|
189
|
-
version: 0.30.
|
189
|
+
version: 0.30.2
|
190
190
|
type: :runtime
|
191
191
|
prerelease: false
|
192
192
|
version_requirements: !ruby/object:Gem::Requirement
|
193
193
|
requirements:
|
194
194
|
- - '='
|
195
195
|
- !ruby/object:Gem::Version
|
196
|
-
version: 0.30.
|
196
|
+
version: 0.30.2
|
197
197
|
- !ruby/object:Gem::Dependency
|
198
198
|
name: decidim-participatory_processes
|
199
199
|
requirement: !ruby/object:Gem::Requirement
|
200
200
|
requirements:
|
201
201
|
- - '='
|
202
202
|
- !ruby/object:Gem::Version
|
203
|
-
version: 0.30.
|
203
|
+
version: 0.30.2
|
204
204
|
type: :runtime
|
205
205
|
prerelease: false
|
206
206
|
version_requirements: !ruby/object:Gem::Requirement
|
207
207
|
requirements:
|
208
208
|
- - '='
|
209
209
|
- !ruby/object:Gem::Version
|
210
|
-
version: 0.30.
|
210
|
+
version: 0.30.2
|
211
211
|
- !ruby/object:Gem::Dependency
|
212
212
|
name: decidim-proposals
|
213
213
|
requirement: !ruby/object:Gem::Requirement
|
214
214
|
requirements:
|
215
215
|
- - '='
|
216
216
|
- !ruby/object:Gem::Version
|
217
|
-
version: 0.30.
|
217
|
+
version: 0.30.2
|
218
218
|
type: :runtime
|
219
219
|
prerelease: false
|
220
220
|
version_requirements: !ruby/object:Gem::Requirement
|
221
221
|
requirements:
|
222
222
|
- - '='
|
223
223
|
- !ruby/object:Gem::Version
|
224
|
-
version: 0.30.
|
224
|
+
version: 0.30.2
|
225
225
|
- !ruby/object:Gem::Dependency
|
226
226
|
name: decidim-sortitions
|
227
227
|
requirement: !ruby/object:Gem::Requirement
|
228
228
|
requirements:
|
229
229
|
- - '='
|
230
230
|
- !ruby/object:Gem::Version
|
231
|
-
version: 0.30.
|
231
|
+
version: 0.30.2
|
232
232
|
type: :runtime
|
233
233
|
prerelease: false
|
234
234
|
version_requirements: !ruby/object:Gem::Requirement
|
235
235
|
requirements:
|
236
236
|
- - '='
|
237
237
|
- !ruby/object:Gem::Version
|
238
|
-
version: 0.30.
|
238
|
+
version: 0.30.2
|
239
239
|
- !ruby/object:Gem::Dependency
|
240
240
|
name: decidim-surveys
|
241
241
|
requirement: !ruby/object:Gem::Requirement
|
242
242
|
requirements:
|
243
243
|
- - '='
|
244
244
|
- !ruby/object:Gem::Version
|
245
|
-
version: 0.30.
|
245
|
+
version: 0.30.2
|
246
246
|
type: :runtime
|
247
247
|
prerelease: false
|
248
248
|
version_requirements: !ruby/object:Gem::Requirement
|
249
249
|
requirements:
|
250
250
|
- - '='
|
251
251
|
- !ruby/object:Gem::Version
|
252
|
-
version: 0.30.
|
252
|
+
version: 0.30.2
|
253
253
|
- !ruby/object:Gem::Dependency
|
254
254
|
name: decidim-system
|
255
255
|
requirement: !ruby/object:Gem::Requirement
|
256
256
|
requirements:
|
257
257
|
- - '='
|
258
258
|
- !ruby/object:Gem::Version
|
259
|
-
version: 0.30.
|
259
|
+
version: 0.30.2
|
260
260
|
type: :runtime
|
261
261
|
prerelease: false
|
262
262
|
version_requirements: !ruby/object:Gem::Requirement
|
263
263
|
requirements:
|
264
264
|
- - '='
|
265
265
|
- !ruby/object:Gem::Version
|
266
|
-
version: 0.30.
|
266
|
+
version: 0.30.2
|
267
267
|
- !ruby/object:Gem::Dependency
|
268
268
|
name: decidim-verifications
|
269
269
|
requirement: !ruby/object:Gem::Requirement
|
270
270
|
requirements:
|
271
271
|
- - '='
|
272
272
|
- !ruby/object:Gem::Version
|
273
|
-
version: 0.30.
|
273
|
+
version: 0.30.2
|
274
274
|
type: :runtime
|
275
275
|
prerelease: false
|
276
276
|
version_requirements: !ruby/object:Gem::Requirement
|
277
277
|
requirements:
|
278
278
|
- - '='
|
279
279
|
- !ruby/object:Gem::Version
|
280
|
-
version: 0.30.
|
280
|
+
version: 0.30.2
|
281
281
|
- !ruby/object:Gem::Dependency
|
282
282
|
name: bundler
|
283
283
|
requirement: !ruby/object:Gem::Requirement
|