gitlab-markup 1.9.0 → 1.10.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c52ae95d2514cc219cc5919e4583fc00b6c8dbc6027f0e380cae3f558015476
4
- data.tar.gz: 000ba88ab9db05ab50553bf7f7402852fb211f3a6348eae8adc08e79a8aa4e5c
3
+ metadata.gz: d4c5dfecda0095c230c6bd7a19d8859b40a185b0e58578db260bd24eaf93b1c4
4
+ data.tar.gz: ba4906edf650eaf4b854c4b4cc6808341ec44454f0d019083cb12538e26e8412
5
5
  SHA512:
6
- metadata.gz: f6a065ecd8fa42bb85e7cc2fdef4f267f016b3653acba151fc13a6b17962d556360c966f68764ebebece92ed6ba8b65d52a7c9d91506c381ef75e475f37b69f2
7
- data.tar.gz: a59b2b12227465cd94eb3d7996536b75d9e48c02a68563ae3eb7d826981ae068bc8cc954d976d054b0a29c4c0e1fd1060965df70d6b893abe706012e88e287cb
6
+ metadata.gz: d09f65db1881e29b7c2c7949255d67a689a560d01af36f3e4a46faa67a0d9aeb3ffdba0e27f2b5fa70bfac0438f6c043df095dd4ab0ad5785d5d306433d591ff
7
+ data.tar.gz: c7e7d72ff283c2fbd689b0b77257f43eb9f50bfa89e1923e9681662ce7d05f46f52db6f6736f221ffb2fe34f769f7f2212733c3a633918ce1ecc7de6de724e28
data/.gitlab-ci.yml CHANGED
@@ -26,9 +26,11 @@ workflow:
26
26
  - vendor/ruby
27
27
  before_script:
28
28
  - apt update
29
- - apt install python3 python3-pip git build-essential -y
29
+ - apt install python3 python3-pip python3-venv git build-essential -y
30
30
  - apt remove python -y
31
- - pip3 install "docutils==$DOCUTILS_VERSION"
31
+ - python3 -m venv /tmp/venv
32
+ - source /tmp/venv/bin/activate
33
+ - pip3 install docutils==$DOCUTILS_VERSION
32
34
  - bundle install --jobs $(nproc)
33
35
  script:
34
36
  - echo "Testing without posix-spawn..."
@@ -41,37 +43,13 @@ workflow:
41
43
  - bundle install
42
44
  - bundle exec rake test
43
45
 
44
- .docutils-016:
45
- variables:
46
- DOCUTILS_VERSION: "0.16"
47
-
48
- .docutils-019:
49
- variables:
50
- DOCUTILS_VERSION: "0.19"
51
-
52
- ruby-27-du16:
53
- image: ruby:2.7
54
- extends:
55
- - .docutils-016
56
- - .specs
57
-
58
- ruby-30-du16:
59
- image: ruby:3.0
60
- extends:
61
- - .docutils-016
62
- - .specs
63
-
64
- ruby-27-du19:
65
- image: ruby:2.7
66
- extends:
67
- - .docutils-019
68
- - .specs
69
-
70
- ruby-30-du19:
71
- image: ruby:3.0
72
- extends:
73
- - .docutils-019
74
- - .specs
46
+ ruby-docutils-spec:
47
+ image: ruby:$RUBY_VERSION
48
+ extends: .specs
49
+ parallel:
50
+ matrix:
51
+ - RUBY_VERSION: ['3.0', '3.1', '3.2', '3.3', '3.4']
52
+ DOCUTILS_VERSION: ['0.16', '0.19']
75
53
 
76
54
  # Dependency Scanning
77
55
  gemnasium-dependency_scanning:
data/CODEOWNERS ADDED
@@ -0,0 +1,2 @@
1
+ [Maintainers]
2
+ * @brodock @digitalmoksha @cwoolley-gitlab @smcgivern @rymai @marin @stanhu
data/CONTRIBUTING.md CHANGED
@@ -8,10 +8,10 @@ This library's only job is to decide which markup format to use and call out to
8
8
 
9
9
  ## Developer Certificate of Origin + License
10
10
 
11
- By contributing to GitLab B.V., You accept and agree to the following terms and
12
- conditions for Your present and future Contributions submitted to GitLab B.V.
13
- Except for the license granted herein to GitLab B.V. and recipients of software
14
- distributed by GitLab B.V., You reserve all right, title, and interest in and to
11
+ By contributing to GitLab Inc., You accept and agree to the following terms and
12
+ conditions for Your present and future Contributions submitted to GitLab Inc.
13
+ Except for the license granted herein to GitLab Inc. and recipients of software
14
+ distributed by GitLab Inc., You reserve all right, title, and interest in and to
15
15
  Your Contributions. All Contributions are subject to the following DCO + License
16
16
  terms.
17
17
 
data/Gemfile CHANGED
@@ -4,9 +4,9 @@ gemspec
4
4
  gem "redcarpet", :platforms => :ruby
5
5
  gem "kramdown", :platforms => :jruby
6
6
  gem "RedCloth"
7
- gem "rdoc", "~>3.6"
7
+ gem "rdoc", "~> 6.12"
8
8
  gem "org-ruby", "~> 0.9"
9
9
  gem "creole", "~>0.5.0"
10
10
  gem "wikicloth", "=0.8.1", :platforms => :ruby
11
- gem "asciidoctor", "= 1.5.2"
11
+ gem "asciidoctor", "~> 2.0"
12
12
  gem "rake"
data/HISTORY.md CHANGED
@@ -1,8 +1,11 @@
1
+ ## 1.10.0 (2025-02-25)
2
+
3
+ * [Add testing for Ruby 3.3 and 3.4 to CI](https://gitlab.com/gitlab-org/gitlab-markup/-/merge_requests/49)
4
+
1
5
  ## 1.9.0 (2023-01-11)
2
6
 
3
7
  * [Add support for docutils 0.19, remove support for 0.14/0.15](https://gitlab.com/gitlab-org/gitlab-markup/-/merge_requests/42)
4
8
 
5
-
6
9
  ## 1.8.1 (2022-09-16)
7
10
 
8
11
  * [Fix compatibility with Busybox timeout](https://gitlab.com/gitlab-org/gitlab-markup/-/merge_requests/37)
@@ -23,8 +23,11 @@ Gem::Specification.new do |s|
23
23
 
24
24
  s.add_development_dependency 'activesupport', '~> 4.0'
25
25
  s.add_development_dependency 'html-pipeline', '~> 1.0'
26
+ s.add_development_dependency 'logger', '~> 1.6.6'
26
27
  s.add_development_dependency 'minitest', '~> 5.4.3'
28
+ s.add_development_dependency 'mutex_m', '~> 0.3.0'
27
29
  s.add_development_dependency 'nokogiri', '~> 1.13.8'
28
30
  s.add_development_dependency 'nokogiri-diff', '~> 0.2.0'
29
- s.add_development_dependency 'sanitize', '~> 5.1.0'
31
+ s.add_development_dependency 'rdoc', '~> 6.12'
32
+ s.add_development_dependency 'sanitize', '~> 6.0.0'
30
33
  end
data/lib/github-markup.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module GitHub
2
2
  module Markup
3
- VERSION = '1.9.0'
3
+ VERSION = '1.10.0'
4
4
  Version = VERSION
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-markup
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Wanstrath
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-01-16 00:00:00.000000000 Z
10
+ date: 2025-02-26 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: activesupport
@@ -38,6 +37,20 @@ dependencies:
38
37
  - - "~>"
39
38
  - !ruby/object:Gem::Version
40
39
  version: '1.0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: logger
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: 1.6.6
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: 1.6.6
41
54
  - !ruby/object:Gem::Dependency
42
55
  name: minitest
43
56
  requirement: !ruby/object:Gem::Requirement
@@ -52,6 +65,20 @@ dependencies:
52
65
  - - "~>"
53
66
  - !ruby/object:Gem::Version
54
67
  version: 5.4.3
68
+ - !ruby/object:Gem::Dependency
69
+ name: mutex_m
70
+ requirement: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: 0.3.0
75
+ type: :development
76
+ prerelease: false
77
+ version_requirements: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: 0.3.0
55
82
  - !ruby/object:Gem::Dependency
56
83
  name: nokogiri
57
84
  requirement: !ruby/object:Gem::Requirement
@@ -80,20 +107,34 @@ dependencies:
80
107
  - - "~>"
81
108
  - !ruby/object:Gem::Version
82
109
  version: 0.2.0
110
+ - !ruby/object:Gem::Dependency
111
+ name: rdoc
112
+ requirement: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: '6.12'
117
+ type: :development
118
+ prerelease: false
119
+ version_requirements: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: '6.12'
83
124
  - !ruby/object:Gem::Dependency
84
125
  name: sanitize
85
126
  requirement: !ruby/object:Gem::Requirement
86
127
  requirements:
87
128
  - - "~>"
88
129
  - !ruby/object:Gem::Version
89
- version: 5.1.0
130
+ version: 6.0.0
90
131
  type: :development
91
132
  prerelease: false
92
133
  version_requirements: !ruby/object:Gem::Requirement
93
134
  requirements:
94
135
  - - "~>"
95
136
  - !ruby/object:Gem::Version
96
- version: 5.1.0
137
+ version: 6.0.0
97
138
  description: This gem is used by GitLab to render any non Markdown markup
98
139
  email: chris@ozmm.org
99
140
  executables:
@@ -105,6 +146,7 @@ files:
105
146
  - ".gitlab-ci.yml"
106
147
  - ".kick"
107
148
  - ".travis.yml"
149
+ - CODEOWNERS
108
150
  - CONTRIBUTING.md
109
151
  - Gemfile
110
152
  - HISTORY.md
@@ -165,7 +207,6 @@ metadata:
165
207
  bug_tracker_uri: https://gitlab.com/gitlab-org/gitlab-markup/issues
166
208
  changelog_uri: https://gitlab.com/gitlab-org/gitlab-markup/blob/master/HISTORY.md
167
209
  source_code_uri: https://gitlab.com/gitlab-org/gitlab-markup
168
- post_install_message:
169
210
  rdoc_options: []
170
211
  require_paths:
171
212
  - lib
@@ -180,8 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
180
221
  - !ruby/object:Gem::Version
181
222
  version: '0'
182
223
  requirements: []
183
- rubygems_version: 3.1.6
184
- signing_key:
224
+ rubygems_version: 3.6.2
185
225
  specification_version: 4
186
226
  summary: Fork from github-markup GitLab uses to render non markdown content
187
227
  test_files: