Skip to content

Commit

Permalink
Bump rails-html-sanitizer to 1.6.1 (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwilken authored Dec 5, 2024
1 parent acc5ff8 commit c2da029
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 18 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## [Unreleased]

## [0.9.11] - 2024-09-19

- Bump rails-html-sanitizer to 1.6.1 for CVE
- Raise minimum version of ActionText to >= 7.0

## [0.9.9] - 2024-09-19

- Added ordered_list to Document
Expand Down
45 changes: 29 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,57 +1,70 @@
PATH
remote: .
specs:
tiptap-ruby (0.9.10)
actionview (>= 6.0)
tiptap-ruby (0.9.11)
actionview (>= 7.0)
activesupport (>= 6.0)

GEM
remote: https://rubygems.org/
specs:
actionview (6.1.7.6)
activesupport (= 6.1.7.6)
actionview (7.1.5)
activesupport (= 7.1.5)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
activesupport (6.1.7.6)
erubi (~> 1.11)
rails-dom-testing (~> 2.2)
rails-html-sanitizer (~> 1.6)
activesupport (7.1.5)
base64
benchmark (>= 0.3)
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
logger (>= 1.4.2)
minitest (>= 5.1)
mutex_m
securerandom (>= 0.3)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
ast (2.4.2)
base64 (0.1.1)
benchmark (0.4.0)
bigdecimal (3.1.8)
builder (3.2.4)
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
crass (1.0.6)
diff-lcs (1.5.0)
drb (2.2.1)
erubi (1.12.0)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
json (2.6.3)
language_server-protocol (3.17.0.3)
lint_roller (1.1.0)
loofah (2.21.4)
logger (1.6.2)
loofah (2.23.1)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
minitest (5.20.0)
nokogiri (1.16.5-arm64-darwin)
mutex_m (0.3.0)
nokogiri (1.16.8-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.5-x86_64-linux)
nokogiri (1.16.8-x86_64-linux)
racc (~> 1.4)
parallel (1.23.0)
parser (3.2.2.4)
ast (~> 2.4.1)
racc
racc (1.8.0)
racc (1.8.1)
rails-dom-testing (2.2.0)
activesupport (>= 5.0.0)
minitest
nokogiri (>= 1.6)
rails-html-sanitizer (1.6.0)
rails-html-sanitizer (1.6.1)
loofah (~> 2.21)
nokogiri (~> 1.14)
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
rainbow (3.1.1)
rake (13.1.0)
regexp_parser (2.8.2)
Expand Down Expand Up @@ -87,6 +100,7 @@ GEM
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
ruby-progressbar (1.13.0)
securerandom (0.4.0)
standard (1.31.2)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
Expand All @@ -102,7 +116,6 @@ GEM
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)
zeitwerk (2.6.12)

PLATFORMS
arm64-darwin-21
Expand Down
2 changes: 1 addition & 1 deletion lib/tip_tap/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module TipTap
VERSION = "0.9.10"
VERSION = "0.9.11"
end
2 changes: 1 addition & 1 deletion tiptap.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ Gem::Specification.new do |spec|
spec.files = Dir["*.{md,txt}", "{lib}/**/*"]
spec.require_paths = ["lib"]

spec.add_dependency "actionview", ">= 6.0"
spec.add_dependency "actionview", ">= 7.0"
spec.add_dependency "activesupport", ">= 6.0"
end

0 comments on commit c2da029

Please sign in to comment.