Skip to content

Commit a629a6e

Browse files
authored
v2.13.0 (#1159)
1 parent 89c507a commit a629a6e

File tree

3 files changed

+29
-19
lines changed

3 files changed

+29
-19
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Spina CMS Changelog
22

3+
## 2.13
4+
5+
### 2.13.0 (December 11th, 2022)
6+
* Added support for `layout:` to view templates
7+
* Added StandardRB to SpinaCMS development
8+
* Added item_name to repeater part
9+
* Added inline file upload to attachment parts
10+
* Refactored the install generator
11+
* Fixed page redirect after deleting page in a resource
12+
* Fixed logout button icon
13+
* Deprecated the use of app/decorators in favor of app/overrides
14+
* Updated gem dependencies
15+
316
## 2.12
417

518
### 2.12.0 (August 26th, 2022)

Gemfile.lock

+15-18
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
spina (2.12.0)
4+
spina (2.13.0)
55
ancestry
66
attr_json
77
babosa
@@ -119,7 +119,7 @@ GEM
119119
coderay (1.1.3)
120120
concurrent-ruby (1.1.10)
121121
crass (1.0.6)
122-
digest (3.1.0)
122+
date (3.3.1)
123123
docile (1.1.5)
124124
erubi (1.11.0)
125125
factory_bot (6.2.1)
@@ -158,12 +158,15 @@ GEM
158158
loofah (2.19.0)
159159
crass (~> 1.0.2)
160160
nokogiri (>= 1.5.9)
161-
mail (2.7.1)
161+
mail (2.8.0)
162162
mini_mime (>= 0.1.1)
163+
net-imap
164+
net-pop
165+
net-smtp
163166
marcel (1.0.2)
164167
matrix (0.4.2)
165168
method_source (1.0.0)
166-
mini_magick (4.11.0)
169+
mini_magick (4.12.0)
167170
mini_mime (1.1.2)
168171
mini_portile2 (2.8.0)
169172
minitest (5.16.3)
@@ -177,22 +180,17 @@ GEM
177180
request_store (~> 1.0)
178181
mocha (2.0.2)
179182
ruby2_keywords (>= 0.0.5)
180-
net-imap (0.2.3)
181-
digest
183+
net-imap (0.3.2)
184+
date
182185
net-protocol
183-
strscan
184-
net-pop (0.1.1)
185-
digest
186+
net-pop (0.1.2)
186187
net-protocol
188+
net-protocol (0.2.1)
187189
timeout
188-
net-protocol (0.1.3)
189-
timeout
190-
net-smtp (0.3.1)
191-
digest
190+
net-smtp (0.3.3)
192191
net-protocol
193-
timeout
194192
nio4r (2.5.8)
195-
nokogiri (1.13.9)
193+
nokogiri (1.13.10)
196194
mini_portile2 (~> 2.8.0)
197195
racc (~> 1.4)
198196
parallel (1.22.1)
@@ -207,7 +205,7 @@ GEM
207205
public_suffix (5.0.0)
208206
puma (6.0.0)
209207
nio4r (~> 2.0)
210-
racc (1.6.0)
208+
racc (1.6.1)
211209
rack (2.2.4)
212210
rack-rewrite (1.5.1)
213211
rack-test (2.0.2)
@@ -290,11 +288,10 @@ GEM
290288
rubocop-performance (= 1.15.1)
291289
stimulus-rails (1.2.1)
292290
railties (>= 6.0.0)
293-
strscan (3.0.4)
294291
tailwindcss-rails (2.0.21)
295292
railties (>= 6.0.0)
296293
thor (1.2.1)
297-
timeout (0.3.0)
294+
timeout (0.3.1)
298295
turbo-rails (1.3.2)
299296
actionpack (>= 6.0.0)
300297
activejob (>= 6.0.0)

lib/spina/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Spina
2-
VERSION = "2.12.0"
2+
VERSION = "2.13.0"
33
end

0 commit comments

Comments
 (0)