actiontext 8.1.0.rc1 → 8.1.1
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/CHANGELOG.md +6 -3
- data/lib/action_text/engine.rb +3 -1
- data/lib/action_text/gem_version.rb +2 -2
- data/package.json +1 -1
- metadata +12 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d49c9e1a5c74c608d67f646c89e56fc7143a69e2548227fa6ab2b446b1cb4ed0
|
|
4
|
+
data.tar.gz: 3654300012a9d72a86e9a785aaa85c5c806fc39474c936cc58b59a8695e1ccda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71cf720be1900ef4e8c7655469f1b80386362ffe9b8157a74a75a034cd844f1e355c056aeea867da4204561e579d1ff913075eef4f8ce872555cf59d690aac8b
|
|
7
|
+
data.tar.gz: abe2e4900cc1f4112a865cd79cba0f9937ed4f3f80d8f6c80a7d08fe749e868d70ea74b5a9890e9c5a949d4c85e648e17f18826c1f14775dcd29cd3b9b6153c4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
## Rails 8.1.
|
|
1
|
+
## Rails 8.1.1 (October 28, 2025) ##
|
|
2
|
+
|
|
3
|
+
* No changes.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## Rails 8.1.0 (October 22, 2025) ##
|
|
2
7
|
|
|
3
8
|
* De-couple `@rails/actiontext/attachment_upload.js` from `Trix.Attachment`
|
|
4
9
|
|
|
@@ -38,8 +43,6 @@
|
|
|
38
43
|
|
|
39
44
|
*Sean Doyle*
|
|
40
45
|
|
|
41
|
-
## Rails 8.1.0.beta1 (September 04, 2025) ##
|
|
42
|
-
|
|
43
46
|
* Forward `fill_in_rich_text_area` options to Capybara
|
|
44
47
|
|
|
45
48
|
```ruby
|
data/lib/action_text/engine.rb
CHANGED
|
@@ -88,7 +88,9 @@ module ActionText
|
|
|
88
88
|
|
|
89
89
|
config.after_initialize do |app|
|
|
90
90
|
if klass = app.config.action_text.sanitizer_vendor
|
|
91
|
-
|
|
91
|
+
ActiveSupport.on_load(:action_view) do
|
|
92
|
+
ActionText::ContentHelper.sanitizer = klass.safe_list_sanitizer.new
|
|
93
|
+
end
|
|
92
94
|
end
|
|
93
95
|
end
|
|
94
96
|
end
|
data/package.json
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: actiontext
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.1.
|
|
4
|
+
version: 8.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Javan Makhmali
|
|
@@ -17,56 +17,56 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - '='
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 8.1.
|
|
20
|
+
version: 8.1.1
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - '='
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 8.1.
|
|
27
|
+
version: 8.1.1
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: activerecord
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
31
31
|
requirements:
|
|
32
32
|
- - '='
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: 8.1.
|
|
34
|
+
version: 8.1.1
|
|
35
35
|
type: :runtime
|
|
36
36
|
prerelease: false
|
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
39
|
- - '='
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 8.1.
|
|
41
|
+
version: 8.1.1
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
43
43
|
name: activestorage
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
45
45
|
requirements:
|
|
46
46
|
- - '='
|
|
47
47
|
- !ruby/object:Gem::Version
|
|
48
|
-
version: 8.1.
|
|
48
|
+
version: 8.1.1
|
|
49
49
|
type: :runtime
|
|
50
50
|
prerelease: false
|
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
52
|
requirements:
|
|
53
53
|
- - '='
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
|
-
version: 8.1.
|
|
55
|
+
version: 8.1.1
|
|
56
56
|
- !ruby/object:Gem::Dependency
|
|
57
57
|
name: actionpack
|
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
|
59
59
|
requirements:
|
|
60
60
|
- - '='
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
|
-
version: 8.1.
|
|
62
|
+
version: 8.1.1
|
|
63
63
|
type: :runtime
|
|
64
64
|
prerelease: false
|
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
67
|
- - '='
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: 8.1.
|
|
69
|
+
version: 8.1.1
|
|
70
70
|
- !ruby/object:Gem::Dependency
|
|
71
71
|
name: nokogiri
|
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -174,10 +174,10 @@ licenses:
|
|
|
174
174
|
- MIT
|
|
175
175
|
metadata:
|
|
176
176
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
|
177
|
-
changelog_uri: https://github.com/rails/rails/blob/v8.1.
|
|
178
|
-
documentation_uri: https://api.rubyonrails.org/v8.1.
|
|
177
|
+
changelog_uri: https://github.com/rails/rails/blob/v8.1.1/actiontext/CHANGELOG.md
|
|
178
|
+
documentation_uri: https://api.rubyonrails.org/v8.1.1/
|
|
179
179
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
|
180
|
-
source_code_uri: https://github.com/rails/rails/tree/v8.1.
|
|
180
|
+
source_code_uri: https://github.com/rails/rails/tree/v8.1.1/actiontext
|
|
181
181
|
rubygems_mfa_required: 'true'
|
|
182
182
|
rdoc_options: []
|
|
183
183
|
require_paths:
|