Skip to content

Commit b6b49ea

Browse files
authored
Release 0.14.3 and update gems (#1320)
1 parent db170a6 commit b6b49ea

File tree

75 files changed

+189
-105
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+189
-105
lines changed

.rubocop.yml

+30-2
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,24 @@ AllCops:
77
SuggestExtensions: false
88
TargetRubyVersion: 2.6
99

10-
#- Pending Cops as of 1.26.0 ---------------------------------------------#
10+
#- Pending Cops as of 1.36.0 ---------------------------------------------#
1111

12-
Gemspec/DateAssignment: # (new in 1.10)
12+
Gemspec/DeprecatedAttributeAssignment: # new in 1.30
1313
Enabled: true
1414
Gemspec/RequireMFA: # new in 1.23
1515
Enabled: true
16+
Layout/LineContinuationLeadingSpace: # new in 1.31
17+
Enabled: false
18+
Layout/LineContinuationSpacing: # new in 1.31
19+
Enabled: true
1620
Layout/SpaceBeforeBrackets: # (new in 1.7)
1721
Enabled: true
1822
Lint/AmbiguousAssignment: # (new in 1.7)
1923
Enabled: true
2024
Lint/AmbiguousRange: # (new in 1.19)
2125
Enabled: true
26+
Lint/ConstantOverwrittenInRescue: # new in 1.31
27+
Enabled: true
2228
Lint/DeprecatedConstants: # (new in 1.8)
2329
Enabled: true
2430
Lint/DuplicateBranch: # (new in 1.3)
@@ -35,6 +41,8 @@ Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
3541
Enabled: true
3642
Lint/LambdaWithoutLiteralBlock: # (new in 1.8)
3743
Enabled: true
44+
Lint/NonAtomicFileOperation: # new in 1.31
45+
Enabled: true
3846
Lint/NoReturnInBeginEndBlocks: # (new in 1.2)
3947
Enabled: true
4048
Lint/NumberedParameterAssignment: # (new in 1.9)
@@ -43,6 +51,10 @@ Lint/OrAssignmentToConstant: # (new in 1.9)
4351
Enabled: true
4452
Lint/RedundantDirGlobSort: # (new in 1.8)
4553
Enabled: true
54+
Lint/RefinementImportMethods: # new in 1.27
55+
Enabled: true
56+
Lint/RequireRangeParentheses: # new in 1.32
57+
Enabled: true
4658
Lint/RequireRelativeSelfPath: # new in 1.22
4759
Enabled: true
4860
Lint/SymbolConversion: # (new in 1.9)
@@ -61,6 +73,8 @@ Naming/BlockForwarding: # new in 1.24
6173
Enabled: true
6274
Naming/InclusiveLanguage: # (new in 1.18)
6375
Enabled: true
76+
Security/CompoundHash: # new in 1.28
77+
Enabled: true
6478
Security/IoMethods: # new in 1.22
6579
Enabled: true
6680
Style/ArgumentsForwarding: # (new in 1.1)
@@ -69,8 +83,14 @@ Style/CollectionCompact: # (new in 1.2)
6983
Enabled: true
7084
Style/DocumentDynamicEvalDefinition: # (new in 1.1)
7185
Enabled: true
86+
Style/EmptyHeredoc: # new in 1.32
87+
Enabled: true
7288
Style/EndlessMethod: # (new in 1.8)
7389
Enabled: true
90+
Style/EnvHome: # new in 1.29
91+
Enabled: true
92+
Style/FetchEnvVar: # new in 1.28
93+
Enabled: true
7494
Style/FileRead: # new in 1.24
7595
Enabled: true
7696
Style/FileWrite: # new in 1.24
@@ -83,6 +103,10 @@ Style/IfWithBooleanLiteralBranches: # (new in 1.9)
83103
Enabled: true
84104
Style/InPatternThen: # (new in 1.16)
85105
Enabled: true
106+
Style/MagicCommentFormat: # new in 1.35
107+
Enabled: true
108+
Style/MapCompactWithConditionalBlock: # new in 1.30
109+
Enabled: true
86110
Style/MapToHash: # new in 1.24
87111
Enabled: true
88112
Style/MultilineInPatternThen: # (new in 1.16)
@@ -97,12 +121,16 @@ Style/NumberedParameters: # new in 1.22
97121
Enabled: true
98122
Style/NumberedParametersLimit: # new in 1.22
99123
Enabled: true
124+
Style/ObjectThen: # new in 1.28
125+
Enabled: true
100126
Style/OpenStructUse: # new in 1.23
101127
Enabled: true
102128
Style/QuotedSymbols: # (new in 1.16)
103129
Enabled: true
104130
Style/RedundantArgument: # (new in 1.4)
105131
Enabled: true
132+
Style/RedundantInitialize: # new in 1.27
133+
Enabled: true
106134
Style/RedundantSelfAssignmentBranch: # (new in 1.19)
107135
Enabled: true
108136
Style/SelectByRegexp: # new in 1.22

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Master
1+
## 0.14.3
22

33
##### Breaking
44

@@ -9,6 +9,9 @@
99
* Support Swift 5.7 and Xcode 14.
1010
[John Fairhurst](https://github.com/johnfairh)
1111

12+
* Update Javascript: jQuery 3.6.1, KaTeX 0.13.5
13+
[John Fairhurst](https://github.com/johnfairh)
14+
1215
##### Bug Fixes
1316

1417
* None.

Gemfile.lock

+42-38
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
jazzy (0.14.2)
4+
jazzy (0.14.3)
55
cocoapods (~> 1.5)
66
mustache (~> 1.1)
77
open4 (~> 1.3)
@@ -17,14 +17,14 @@ GEM
1717
specs:
1818
CFPropertyList (3.0.5)
1919
rexml
20-
activesupport (6.1.5)
20+
activesupport (6.1.7)
2121
concurrent-ruby (~> 1.0, >= 1.0.2)
2222
i18n (>= 1.6, < 2)
2323
minitest (>= 5.1)
2424
tzinfo (~> 2.0)
2525
zeitwerk (~> 2.3)
26-
addressable (2.8.0)
27-
public_suffix (>= 2.0.2, < 5.0)
26+
addressable (2.8.1)
27+
public_suffix (>= 2.0.2, < 6.0)
2828
algoliasearch (1.27.5)
2929
httpclient (~> 2.8, >= 2.8.3)
3030
json (>= 1.5.1)
@@ -78,12 +78,12 @@ GEM
7878
cocoapods-try (1.2.0)
7979
colored (1.2)
8080
colored2 (3.1.2)
81-
concurrent-ruby (1.1.9)
81+
concurrent-ruby (1.1.10)
8282
cork (0.3.0)
8383
colored2 (~> 3.1)
8484
crack (0.4.5)
8585
rexml
86-
danger (8.4.5)
86+
danger (8.6.1)
8787
claide (~> 1.0)
8888
claide-plugins (>= 0.9.2)
8989
colored2 (~> 3.1)
@@ -100,7 +100,7 @@ GEM
100100
escape (0.0.4)
101101
ethon (0.15.0)
102102
ffi (>= 1.15.0)
103-
faraday (1.10.0)
103+
faraday (1.10.2)
104104
faraday-em_http (~> 1.0)
105105
faraday-em_synchrony (~> 1.0)
106106
faraday-excon (~> 1.1)
@@ -115,11 +115,11 @@ GEM
115115
faraday-em_http (1.0.0)
116116
faraday-em_synchrony (1.0.0)
117117
faraday-excon (1.1.0)
118-
faraday-http-cache (2.2.0)
118+
faraday-http-cache (2.4.1)
119119
faraday (>= 0.8)
120120
faraday-httpclient (1.0.1)
121-
faraday-multipart (1.0.3)
122-
multipart-post (>= 1.2, < 3)
121+
faraday-multipart (1.0.4)
122+
multipart-post (~> 2)
123123
faraday-net_http (1.0.1)
124124
faraday-net_http_persistent (1.2.0)
125125
faraday-patron (1.0.0)
@@ -129,87 +129,91 @@ GEM
129129
fourflusher (2.3.1)
130130
fuzzy_match (2.0.4)
131131
gh_inspector (1.1.3)
132-
git (1.11.0)
132+
git (1.12.0)
133+
addressable (~> 2.8)
133134
rchardet (~> 1.8)
134135
hashdiff (1.0.1)
135136
httpclient (2.8.3)
136-
i18n (1.10.0)
137+
i18n (1.12.0)
137138
concurrent-ruby (~> 1.0)
138-
json (2.6.1)
139-
kramdown (2.3.1)
139+
json (2.6.2)
140+
kramdown (2.4.0)
140141
rexml
141142
kramdown-parser-gfm (1.1.0)
142143
kramdown (~> 2.0)
143144
liferaft (0.0.6)
144-
minitest (5.15.0)
145-
mocha (1.13.0)
145+
mini_portile2 (2.8.0)
146+
minitest (5.16.3)
147+
mocha (1.14.0)
146148
mocha-on-bacon (0.2.3)
147149
mocha (>= 0.13.0)
148150
molinillo (0.8.0)
149-
multipart-post (2.1.1)
151+
multipart-post (2.2.3)
150152
mustache (1.1.1)
151153
nanaimo (0.3.0)
152154
nap (1.1.0)
153155
netrc (0.11.0)
154156
no_proxy_fix (0.1.2)
155-
octokit (4.22.0)
156-
faraday (>= 0.9)
157-
sawyer (~> 0.8.0, >= 0.5.3)
157+
octokit (4.25.1)
158+
faraday (>= 1, < 3)
159+
sawyer (~> 0.9)
158160
open4 (1.3.4)
159-
parallel (1.21.0)
160-
parser (3.1.1.0)
161+
parallel (1.22.1)
162+
parser (3.1.2.1)
161163
ast (~> 2.4.1)
162164
prettybacon (0.0.2)
163165
bacon (~> 1.2)
164-
public_suffix (4.0.6)
166+
public_suffix (4.0.7)
165167
rainbow (3.1.1)
166168
rake (13.0.6)
167169
rchardet (1.8.0)
168170
redcarpet (3.5.1)
169-
regexp_parser (2.2.1)
171+
regexp_parser (2.5.0)
170172
rexml (3.2.5)
171-
rouge (3.28.0)
172-
rubocop (1.26.0)
173+
rouge (3.30.0)
174+
rubocop (1.36.0)
175+
json (~> 2.3)
173176
parallel (~> 1.10)
174-
parser (>= 3.1.0.0)
177+
parser (>= 3.1.2.1)
175178
rainbow (>= 2.2.2, < 4.0)
176179
regexp_parser (>= 1.8, < 3.0)
177-
rexml
178-
rubocop-ast (>= 1.16.0, < 2.0)
180+
rexml (>= 3.2.5, < 4.0)
181+
rubocop-ast (>= 1.20.1, < 2.0)
179182
ruby-progressbar (~> 1.7)
180183
unicode-display_width (>= 1.4.0, < 3.0)
181-
rubocop-ast (1.16.0)
184+
rubocop-ast (1.21.0)
182185
parser (>= 3.1.1.0)
183186
ruby-macho (2.5.1)
184187
ruby-progressbar (1.11.0)
185188
ruby2_keywords (0.0.5)
186189
sassc (2.4.0)
187190
ffi (~> 1.9)
188-
sawyer (0.8.2)
191+
sawyer (0.9.2)
189192
addressable (>= 2.3.5)
190-
faraday (> 0.8, < 2.0)
191-
sqlite3 (1.4.2)
193+
faraday (>= 0.17.3, < 3)
194+
sqlite3 (1.5.0)
195+
mini_portile2 (~> 2.8.0)
192196
terminal-table (3.0.2)
193197
unicode-display_width (>= 1.1.1, < 3)
194198
typhoeus (1.4.0)
195199
ethon (>= 0.9.0)
196-
tzinfo (2.0.4)
200+
tzinfo (2.0.5)
197201
concurrent-ruby (~> 1.0)
198-
unicode-display_width (2.1.0)
199-
webmock (3.14.0)
202+
unicode-display_width (2.2.0)
203+
webmock (3.18.1)
200204
addressable (>= 2.8.0)
201205
crack (>= 0.3.2)
202206
hashdiff (>= 0.4.0, < 2.0.0)
203207
xcinvoke (0.3.0)
204208
liferaft (~> 0.0.6)
205-
xcodeproj (1.21.0)
209+
xcodeproj (1.22.0)
206210
CFPropertyList (>= 2.3.3, < 4.0)
207211
atomos (~> 0.1.3)
208212
claide (>= 1.0.2, < 2.0)
209213
colored2 (~> 3.1)
210214
nanaimo (~> 0.3.0)
211215
rexml (~> 3.2.4)
212-
zeitwerk (2.5.4)
216+
zeitwerk (2.6.0)
213217

214218
PLATFORMS
215219
ruby

js/package-lock.json

+61-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)