Skip to content

Commit 4d0a4e5

Browse files
committed
update to version 1.6.9
1 parent 1279e3b commit 4d0a4e5

16 files changed

+350
-32
lines changed

docs/core-properties.html

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
<!--
2+
~ /*
3+
~ *
4+
~ * *
5+
~ * * * Copyright 2019-2022 the original author or authors.
6+
~ * * *
7+
~ * * * Licensed under the Apache License, Version 2.0 (the "License");
8+
~ * * * you may not use this file except in compliance with the License.
9+
~ * * * You may obtain a copy of the License at
10+
~ * * *
11+
~ * * * https://www.apache.org/licenses/LICENSE-2.0
12+
~ * * *
13+
~ * * * Unless required by applicable law or agreed to in writing, software
14+
~ * * * distributed under the License is distributed on an "AS IS" BASIS,
15+
~ * * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
~ * * * See the License for the specific language governing permissions and
17+
~ * * * limitations under the License.
18+
~ * *
19+
~ *
20+
~ */
21+
-->
22+
123
<!DOCTYPE html>
224
<html lang="en">
325
<head>
@@ -243,12 +265,17 @@
243265
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code></p></td>
244266
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>Boolean</code>. To display the spring-cloud-function web endpoints.</p></td>
245267
</tr>
268+
<tr>
269+
<td class="tableblock halign-left valign-top"><p class="tableblock">springdoc.api-docs.version</p></td>
270+
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>openapi_3_0</code></p></td>
271+
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>String</code>. To Choose <code>OpenAPI 3.0</code> or <code>OpenAPI 3.1</code> (using the value <code>OPENAPI_3_1</code>).</p></td>
272+
</tr>
246273
</tbody>
247274
</table>
248275
</div>
249276
<div id="footer">
250277
<div id="footer-text">
251-
Last updated 2022-04-07 20:08:36 +0200
278+
Last updated 2022-05-27 20:22:33 +0200
252279
</div>
253280
</div>
254281
</div>

docs/faq.html

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
<!--
2+
~ /*
3+
~ *
4+
~ * *
5+
~ * * * Copyright 2019-2022 the original author or authors.
6+
~ * * *
7+
~ * * * Licensed under the Apache License, Version 2.0 (the "License");
8+
~ * * * you may not use this file except in compliance with the License.
9+
~ * * * You may obtain a copy of the License at
10+
~ * * *
11+
~ * * * https://www.apache.org/licenses/LICENSE-2.0
12+
~ * * *
13+
~ * * * Unless required by applicable law or agreed to in writing, software
14+
~ * * * distributed under the License is distributed on an "AS IS" BASIS,
15+
~ * * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
~ * * * See the License for the specific language governing permissions and
17+
~ * * * limitations under the License.
18+
~ * *
19+
~ *
20+
~ */
21+
-->
22+
123
<!DOCTYPE html>
224
<html lang="en">
325
<head>
@@ -1898,7 +1920,7 @@ <h3 id="_what_is_the_compatibility_matrix_of_springdoc_openapi_with_spring_boot"
18981920
<p><code>springdoc-openapi</code> is compatible with <code>spring-boot 1</code> and <code>spring-boot 2</code>.</p>
18991921
</div>
19001922
<div class="paragraph">
1901-
<p>In general, <strong>you should only pick the last stable version as per today 1.6.8.</strong></p>
1923+
<p>In general, <strong>you should only pick the last stable version as per today 1.6.9.</strong></p>
19021924
</div>
19031925
<div class="paragraph">
19041926
<p>More precisely, this the exhaustive list of spring-boot versions against which <code>springdoc-openapi</code> has been built:</p>

docs/getting-started.html

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
<!--
2+
~ /*
3+
~ *
4+
~ * *
5+
~ * * * Copyright 2019-2022 the original author or authors.
6+
~ * * *
7+
~ * * * Licensed under the Apache License, Version 2.0 (the "License");
8+
~ * * * you may not use this file except in compliance with the License.
9+
~ * * * You may obtain a copy of the License at
10+
~ * * *
11+
~ * * * https://www.apache.org/licenses/LICENSE-2.0
12+
~ * * *
13+
~ * * * Unless required by applicable law or agreed to in writing, software
14+
~ * * * distributed under the License is distributed on an "AS IS" BASIS,
15+
~ * * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
~ * * * See the License for the specific language governing permissions and
17+
~ * * * limitations under the License.
18+
~ * *
19+
~ *
20+
~ */
21+
-->
22+
123
<!DOCTYPE html>
224
<html lang="en">
325
<head>
@@ -40,7 +62,7 @@ <h2 id="getting-started"><a class="anchor" href="#getting-started"></a>Getting S
4062
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
4163
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
4264
&lt;artifactId&gt;springdoc-openapi-ui&lt;/artifactId&gt;
43-
&lt;version&gt;1.6.8&lt;/version&gt;
65+
&lt;version&gt;1.6.9&lt;/version&gt;
4466
&lt;/dependency&gt;</code></pre>
4567
</div>
4668
</div>

docs/index.html

Lines changed: 40 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
<!--
2+
~ /*
3+
~ *
4+
~ * *
5+
~ * * * Copyright 2019-2022 the original author or authors.
6+
~ * * *
7+
~ * * * Licensed under the Apache License, Version 2.0 (the "License");
8+
~ * * * you may not use this file except in compliance with the License.
9+
~ * * * You may obtain a copy of the License at
10+
~ * * *
11+
~ * * * https://www.apache.org/licenses/LICENSE-2.0
12+
~ * * *
13+
~ * * * Unless required by applicable law or agreed to in writing, software
14+
~ * * * distributed under the License is distributed on an "AS IS" BASIS,
15+
~ * * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
~ * * * See the License for the specific language governing permissions and
17+
~ * * * limitations under the License.
18+
~ * *
19+
~ *
20+
~ */
21+
-->
22+
123
<!DOCTYPE html>
224
<html lang="en">
325
<head>
@@ -45,7 +67,7 @@
4567
<div id="main" class="contained">
4668
<div id="doc" class="doc">
4769
<div id="header">
48-
<h1>springdoc-openapi v1.6.8</h1>
70+
<h1>springdoc-openapi v1.6.9</h1>
4971
<div class="details">
5072
<span id="author" class="author">The library for OpenAPI 3 with spring-boot By Badr NASS LAHSEN</span><br>
5173
</div>
@@ -278,7 +300,7 @@ <h2 id="getting-started"><a class="anchor" href="#getting-started"></a>2. Gettin
278300
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
279301
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
280302
&lt;artifactId&gt;springdoc-openapi-ui&lt;/artifactId&gt;
281-
&lt;version&gt;1.6.8&lt;/version&gt;
303+
&lt;version&gt;1.6.9&lt;/version&gt;
282304
&lt;/dependency&gt;</code></pre>
283305
</div>
284306
</div>
@@ -375,7 +397,7 @@ <h3 id="spring-webmvc-support"><a class="anchor" href="#spring-webmvc-support"><
375397
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
376398
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
377399
&lt;artifactId&gt;springdoc-openapi-webmvc-core&lt;/artifactId&gt;
378-
&lt;version&gt;1.6.8&lt;/version&gt;
400+
&lt;version&gt;1.6.9&lt;/version&gt;
379401
&lt;/dependency&gt;</code></pre>
380402
</div>
381403
</div>
@@ -427,7 +449,7 @@ <h3 id="spring-webflux-support"><a class="anchor" href="#spring-webflux-support"
427449
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
428450
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
429451
&lt;artifactId&gt;springdoc-openapi-webflux-ui&lt;/artifactId&gt;
430-
&lt;version&gt;1.6.8&lt;/version&gt;
452+
&lt;version&gt;1.6.9&lt;/version&gt;
431453
&lt;/dependency&gt;</code></pre>
432454
</div>
433455
</div>
@@ -444,7 +466,7 @@ <h3 id="spring-hateoas-support"><a class="anchor" href="#spring-hateoas-support"
444466
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
445467
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
446468
&lt;artifactId&gt;springdoc-openapi-hateoas&lt;/artifactId&gt;
447-
&lt;version&gt;1.6.8&lt;/version&gt;
469+
&lt;version&gt;1.6.9&lt;/version&gt;
448470
&lt;/dependency&gt;</code></pre>
449471
</div>
450472
</div>
@@ -460,7 +482,7 @@ <h3 id="spring-data-rest-support"><a class="anchor" href="#spring-data-rest-supp
460482
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
461483
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
462484
&lt;artifactId&gt;springdoc-openapi-data-rest&lt;/artifactId&gt;
463-
&lt;version&gt;1.6.8&lt;/version&gt;
485+
&lt;version&gt;1.6.9&lt;/version&gt;
464486
&lt;/dependency&gt;</code></pre>
465487
</div>
466488
</div>
@@ -476,7 +498,7 @@ <h3 id="spring-security-support"><a class="anchor" href="#spring-security-suppor
476498
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
477499
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
478500
&lt;artifactId&gt;springdoc-openapi-security&lt;/artifactId&gt;
479-
&lt;version&gt;1.6.8&lt;/version&gt;
501+
&lt;version&gt;1.6.9&lt;/version&gt;
480502
&lt;/dependency&gt;</code></pre>
481503
</div>
482504
</div>
@@ -493,7 +515,7 @@ <h3 id="spring-native-support"><a class="anchor" href="#spring-native-support"><
493515
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
494516
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
495517
&lt;artifactId&gt;springdoc-openapi-native&lt;/artifactId&gt;
496-
&lt;version&gt;1.6.8&lt;/version&gt;
518+
&lt;version&gt;1.6.9&lt;/version&gt;
497519
&lt;/dependency&gt;</code></pre>
498520
</div>
499521
</div>
@@ -827,7 +849,7 @@ <h3 id="kotlin-support"><a class="anchor" href="#kotlin-support"></a>3.10. Kotli
827849
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
828850
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
829851
&lt;artifactId&gt;springdoc-openapi-kotlin&lt;/artifactId&gt;
830-
&lt;version&gt;1.6.8&lt;/version&gt;
852+
&lt;version&gt;1.6.9&lt;/version&gt;
831853
&lt;/dependency&gt;</code></pre>
832854
</div>
833855
</div>
@@ -853,7 +875,7 @@ <h3 id="groovy-support"><a class="anchor" href="#groovy-support"></a>3.11. Groov
853875
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
854876
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
855877
&lt;artifactId&gt;springdoc-openapi-groovy&lt;/artifactId&gt;
856-
&lt;version&gt;1.6.8&lt;/version&gt;
878+
&lt;version&gt;1.6.9&lt;/version&gt;
857879
&lt;/dependency&gt;</code></pre>
858880
</div>
859881
</div>
@@ -868,7 +890,7 @@ <h3 id="javadoc-support"><a class="anchor" href="#javadoc-support"></a>3.12. Jav
868890
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
869891
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
870892
&lt;artifactId&gt;springdoc-openapi-javadoc&lt;/artifactId&gt;
871-
&lt;version&gt;1.6.8&lt;/version&gt;
893+
&lt;version&gt;1.6.9&lt;/version&gt;
872894
&lt;/dependency&gt;</code></pre>
873895
</div>
874896
</div>
@@ -1470,6 +1492,11 @@ <h3 id="springdoc-openapi-core-properties"><a class="anchor" href="#springdoc-op
14701492
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code></p></td>
14711493
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>Boolean</code>. To display the spring-cloud-function web endpoints.</p></td>
14721494
</tr>
1495+
<tr>
1496+
<td class="tableblock halign-left valign-top"><p class="tableblock">springdoc.api-docs.version</p></td>
1497+
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>openapi_3_0</code></p></td>
1498+
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>String</code>. To Choose <code>OpenAPI 3.0</code> or <code>OpenAPI 3.1</code> (using the value <code>OPENAPI_3_1</code>).</p></td>
1499+
</tr>
14731500
</tbody>
14741501
</table>
14751502
</div>
@@ -1912,7 +1939,7 @@ <h2 id="migrating-from-springfox"><a class="anchor" href="#migrating-from-spring
19121939
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
19131940
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
19141941
&lt;artifactId&gt;springdoc-openapi-ui&lt;/artifactId&gt;
1915-
&lt;version&gt;1.6.8&lt;/version&gt;
1942+
&lt;version&gt;1.6.9&lt;/version&gt;
19161943
&lt;/dependency&gt;</code></pre>
19171944
</div>
19181945
</div>
@@ -4113,7 +4140,7 @@ <h3 id="what-is-the-compatibility-matrix-of-springdoc-openapi-with-spring-boot">
41134140
<p><code>springdoc-openapi</code> is compatible with <code>spring-boot 1</code> and <code>spring-boot 2</code>.</p>
41144141
</div>
41154142
<div class="paragraph">
4116-
<p>In general, <strong>you should only pick the last stable version as per today 1.6.8.</strong></p>
4143+
<p>In general, <strong>you should only pick the last stable version as per today 1.6.9.</strong></p>
41174144
</div>
41184145
<div class="paragraph">
41194146
<p>More precisely, this the exhaustive list of spring-boot versions against which <code>springdoc-openapi</code> has been built:</p>

docs/migrating-from-springfox.html

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
<!--
2+
~ /*
3+
~ *
4+
~ * *
5+
~ * * * Copyright 2019-2022 the original author or authors.
6+
~ * * *
7+
~ * * * Licensed under the Apache License, Version 2.0 (the "License");
8+
~ * * * you may not use this file except in compliance with the License.
9+
~ * * * You may obtain a copy of the License at
10+
~ * * *
11+
~ * * * https://www.apache.org/licenses/LICENSE-2.0
12+
~ * * *
13+
~ * * * Unless required by applicable law or agreed to in writing, software
14+
~ * * * distributed under the License is distributed on an "AS IS" BASIS,
15+
~ * * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
~ * * * See the License for the specific language governing permissions and
17+
~ * * * limitations under the License.
18+
~ * *
19+
~ *
20+
~ */
21+
-->
22+
123
<!DOCTYPE html>
224
<html lang="en">
325
<head>
@@ -44,7 +66,7 @@ <h2 id="migrating-from-springfox"><a class="anchor" href="#migrating-from-spring
4466
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
4567
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
4668
&lt;artifactId&gt;springdoc-openapi-ui&lt;/artifactId&gt;
47-
&lt;version&gt;1.6.8&lt;/version&gt;
69+
&lt;version&gt;1.6.9&lt;/version&gt;
4870
&lt;/dependency&gt;</code></pre>
4971
</div>
5072
</div>

0 commit comments

Comments
 (0)