You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by sv...@apache.org on 2023/07/21 18:07:51 UTC

svn commit: r1083697 [22/43] - in /sites/solr/guide: ./ solr/9_0/ solr/9_0/configuration-guide/ solr/9_0/deployment-guide/ solr/9_0/getting-started/ solr/9_0/indexing-guide/ solr/9_0/query-guide/ solr/9_0/upgrade-notes/ solr/9_1/ solr/9_1/configuration...

Modified: sites/solr/guide/solr/9_2/query-guide/suggester.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/query-guide/suggester.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/query-guide/suggester.html (original)
+++ sites/solr/guide/solr/9_2/query-guide/suggester.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1067,10 +1070,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="suggester.html">9.2-beta</a>
-    <a class="version" href="../../latest/query-guide/suggester.html">9.1</a>
+    <a class="version" href="../../latest/query-guide/suggester.html">9.3</a>
+    <a class="version is-current" href="suggester.html">9.2</a>
+    <a class="version" href="../../9_1/query-guide/suggester.html">9.1</a>
     <a class="version" href="../../9_0/query-guide/suggester.html">9.0</a>
   </div>
 </div>
@@ -1096,7 +1100,7 @@
 <p>You can use this to implement a powerful auto-suggest feature in your search application.</p>
 </div>
 <div class="paragraph">
-<p>Although it is possible to use the <a href="spell-checking.html" class="xref page">Spell Checking</a> functionality to power autosuggest behavior, Solr has a dedicated <a href="https://solr.apache.org/docs/9_2_0/core/org/apache/solr/handler/component/SuggestComponent.html">SuggestComponent</a> designed for this functionality.</p>
+<p>Although it is possible to use the <a href="spell-checking.html" class="xref page">Spell Checking</a> functionality to power autosuggest behavior, Solr has a dedicated <a href="https://solr.apache.org/docs/9_2_1/core/org/apache/solr/handler/component/SuggestComponent.html">SuggestComponent</a> designed for this functionality.</p>
 </div>
 <div class="paragraph">
 <p>This approach utilizes Lucene&#8217;s Suggester implementation and supports all of the lookup implementations available in Lucene.</p>

Modified: sites/solr/guide/solr/9_2/query-guide/tagger-handler.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/query-guide/tagger-handler.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/query-guide/tagger-handler.html (original)
+++ sites/solr/guide/solr/9_2/query-guide/tagger-handler.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1067,10 +1070,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="tagger-handler.html">9.2-beta</a>
-    <a class="version" href="../../latest/query-guide/tagger-handler.html">9.1</a>
+    <a class="version" href="../../latest/query-guide/tagger-handler.html">9.3</a>
+    <a class="version is-current" href="tagger-handler.html">9.2</a>
+    <a class="version" href="../../9_1/query-guide/tagger-handler.html">9.1</a>
     <a class="version" href="../../9_0/query-guide/tagger-handler.html">9.0</a>
   </div>
 </div>

Modified: sites/solr/guide/solr/9_2/query-guide/term-vector-component.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/query-guide/term-vector-component.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/query-guide/term-vector-component.html (original)
+++ sites/solr/guide/solr/9_2/query-guide/term-vector-component.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1067,10 +1070,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="term-vector-component.html">9.2-beta</a>
-    <a class="version" href="../../latest/query-guide/term-vector-component.html">9.1</a>
+    <a class="version" href="../../latest/query-guide/term-vector-component.html">9.3</a>
+    <a class="version is-current" href="term-vector-component.html">9.2</a>
+    <a class="version" href="../../9_1/query-guide/term-vector-component.html">9.1</a>
     <a class="version" href="../../9_0/query-guide/term-vector-component.html">9.0</a>
   </div>
 </div>

Modified: sites/solr/guide/solr/9_2/query-guide/term-vectors.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/query-guide/term-vectors.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/query-guide/term-vectors.html (original)
+++ sites/solr/guide/solr/9_2/query-guide/term-vectors.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1068,10 +1071,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="term-vectors.html">9.2-beta</a>
-    <a class="version" href="../../latest/query-guide/term-vectors.html">9.1</a>
+    <a class="version" href="../../latest/query-guide/term-vectors.html">9.3</a>
+    <a class="version is-current" href="term-vectors.html">9.2</a>
+    <a class="version" href="../../9_1/query-guide/term-vectors.html">9.1</a>
     <a class="version" href="../../9_0/query-guide/term-vectors.html">9.0</a>
   </div>
 </div>

Modified: sites/solr/guide/solr/9_2/query-guide/terms-component.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/query-guide/terms-component.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/query-guide/terms-component.html (original)
+++ sites/solr/guide/solr/9_2/query-guide/terms-component.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1067,10 +1070,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="terms-component.html">9.2-beta</a>
-    <a class="version" href="../../latest/query-guide/terms-component.html">9.1</a>
+    <a class="version" href="../../latest/query-guide/terms-component.html">9.3</a>
+    <a class="version is-current" href="terms-component.html">9.2</a>
+    <a class="version" href="../../9_1/query-guide/terms-component.html">9.1</a>
     <a class="version" href="../../9_0/query-guide/terms-component.html">9.0</a>
   </div>
 </div>
@@ -1612,7 +1616,7 @@ Although this parameter is not required,
 <p>The response to a terms request is a list of the terms and their document frequency values.</p>
 </div>
 <div class="paragraph">
-<p>You may also be interested in the <a href="https://solr.apache.org/docs/9_2_0/core/org/apache/solr/handler/component/TermsComponent.html">TermsComponent javadoc</a>.</p>
+<p>You may also be interested in the <a href="https://solr.apache.org/docs/9_2_1/core/org/apache/solr/handler/component/TermsComponent.html">TermsComponent javadoc</a>.</p>
 </div>
 </div>
 </div>

Modified: sites/solr/guide/solr/9_2/query-guide/time-series.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/query-guide/time-series.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/query-guide/time-series.html (original)
+++ sites/solr/guide/solr/9_2/query-guide/time-series.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1068,10 +1071,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="time-series.html">9.2-beta</a>
-    <a class="version" href="../../latest/query-guide/time-series.html">9.1</a>
+    <a class="version" href="../../latest/query-guide/time-series.html">9.3</a>
+    <a class="version is-current" href="time-series.html">9.2</a>
+    <a class="version" href="../../9_1/query-guide/time-series.html">9.1</a>
     <a class="version" href="../../9_0/query-guide/time-series.html">9.0</a>
   </div>
 </div>

Modified: sites/solr/guide/solr/9_2/query-guide/transform.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/query-guide/transform.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/query-guide/transform.html (original)
+++ sites/solr/guide/solr/9_2/query-guide/transform.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1068,10 +1071,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="transform.html">9.2-beta</a>
-    <a class="version" href="../../latest/query-guide/transform.html">9.1</a>
+    <a class="version" href="../../latest/query-guide/transform.html">9.3</a>
+    <a class="version is-current" href="transform.html">9.2</a>
+    <a class="version" href="../../9_1/query-guide/transform.html">9.1</a>
     <a class="version" href="../../9_0/query-guide/transform.html">9.0</a>
   </div>
 </div>

Modified: sites/solr/guide/solr/9_2/query-guide/variables.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/query-guide/variables.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/query-guide/variables.html (original)
+++ sites/solr/guide/solr/9_2/query-guide/variables.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1068,10 +1071,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="variables.html">9.2-beta</a>
-    <a class="version" href="../../latest/query-guide/variables.html">9.1</a>
+    <a class="version" href="../../latest/query-guide/variables.html">9.3</a>
+    <a class="version is-current" href="variables.html">9.2</a>
+    <a class="version" href="../../9_1/query-guide/variables.html">9.1</a>
     <a class="version" href="../../9_0/query-guide/variables.html">9.0</a>
   </div>
 </div>

Modified: sites/solr/guide/solr/9_2/query-guide/vector-math.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/query-guide/vector-math.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/query-guide/vector-math.html (original)
+++ sites/solr/guide/solr/9_2/query-guide/vector-math.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1068,10 +1071,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="vector-math.html">9.2-beta</a>
-    <a class="version" href="../../latest/query-guide/vector-math.html">9.1</a>
+    <a class="version" href="../../latest/query-guide/vector-math.html">9.3</a>
+    <a class="version is-current" href="vector-math.html">9.2</a>
+    <a class="version" href="../../9_1/query-guide/vector-math.html">9.1</a>
     <a class="version" href="../../9_0/query-guide/vector-math.html">9.0</a>
   </div>
 </div>

Modified: sites/solr/guide/solr/9_2/query-guide/visualization.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/query-guide/visualization.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/query-guide/visualization.html (original)
+++ sites/solr/guide/solr/9_2/query-guide/visualization.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1068,10 +1071,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="visualization.html">9.2-beta</a>
-    <a class="version" href="../../latest/query-guide/visualization.html">9.1</a>
+    <a class="version" href="../../latest/query-guide/visualization.html">9.3</a>
+    <a class="version is-current" href="visualization.html">9.2</a>
+    <a class="version" href="../../9_1/query-guide/visualization.html">9.1</a>
     <a class="version" href="../../9_0/query-guide/visualization.html">9.0</a>
   </div>
 </div>

Modified: sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-6.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-6.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-6.html (original)
+++ sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-6.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1066,10 +1069,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="major-changes-in-solr-6.html">9.2-beta</a>
-    <a class="version" href="../../latest/upgrade-notes/major-changes-in-solr-6.html">9.1</a>
+    <a class="version" href="../../latest/upgrade-notes/major-changes-in-solr-6.html">9.3</a>
+    <a class="version is-current" href="major-changes-in-solr-6.html">9.2</a>
+    <a class="version" href="../../9_1/upgrade-notes/major-changes-in-solr-6.html">9.1</a>
     <a class="version" href="../../9_0/upgrade-notes/major-changes-in-solr-6.html">9.0</a>
   </div>
 </div>
@@ -1092,7 +1096,7 @@
 <p>There are some major changes in Solr 6 to consider before starting to migrate your configurations and indexes.</p>
 </div>
 <div class="paragraph">
-<p>There are many hundreds of changes, so a thorough review of the <a href="solr-upgrade-notes.html" class="xref page">Solr Upgrade Notes</a> section as well as the <a href="https://solr.apache.org/docs/9_2_0/changes//Changes.html">CHANGES.txt</a> file in your Solr instance will help you plan your migration to Solr 6.
+<p>There are many hundreds of changes, so a thorough review of the <a href="solr-upgrade-notes.html" class="xref page">Solr Upgrade Notes</a> section as well as the <a href="https://solr.apache.org/docs/9_2_1/changes//Changes.html">CHANGES.txt</a> file in your Solr instance will help you plan your migration to Solr 6.
 This section attempts to highlight some of the major changes you should be aware of.</p>
 </div>
 </div>

Modified: sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-7.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-7.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-7.html (original)
+++ sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-7.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1066,10 +1069,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="major-changes-in-solr-7.html">9.2-beta</a>
-    <a class="version" href="../../latest/upgrade-notes/major-changes-in-solr-7.html">9.1</a>
+    <a class="version" href="../../latest/upgrade-notes/major-changes-in-solr-7.html">9.3</a>
+    <a class="version is-current" href="major-changes-in-solr-7.html">9.2</a>
+    <a class="version" href="../../9_1/upgrade-notes/major-changes-in-solr-7.html">9.1</a>
     <a class="version" href="../../9_0/upgrade-notes/major-changes-in-solr-7.html">9.0</a>
   </div>
 </div>
@@ -1101,7 +1105,7 @@
 This page is designed to highlight the biggest changes - new features you may want to be aware of, but also changes in default behavior and deprecated features that have been removed.</p>
 </div>
 <div class="paragraph">
-<p>There are many hundreds of changes in Solr 7, however, so a thorough review of the <a href="solr-upgrade-notes.html" class="xref page">Solr Upgrade Notes</a> as well as the <a href="https://solr.apache.org/docs/9_2_0/changes//Changes.html">CHANGES.txt</a> file in your Solr instance will help you plan your migration to Solr 7.
+<p>There are many hundreds of changes in Solr 7, however, so a thorough review of the <a href="solr-upgrade-notes.html" class="xref page">Solr Upgrade Notes</a> as well as the <a href="https://solr.apache.org/docs/9_2_1/changes//Changes.html">CHANGES.txt</a> file in your Solr instance will help you plan your migration to Solr 7.
 This section attempts to highlight some of the major changes you should be aware of.</p>
 </div>
 <div class="paragraph">

Modified: sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-8.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-8.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-8.html (original)
+++ sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-8.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1066,10 +1069,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="major-changes-in-solr-8.html">9.2-beta</a>
-    <a class="version" href="../../latest/upgrade-notes/major-changes-in-solr-8.html">9.1</a>
+    <a class="version" href="../../latest/upgrade-notes/major-changes-in-solr-8.html">9.3</a>
+    <a class="version is-current" href="major-changes-in-solr-8.html">9.2</a>
+    <a class="version" href="../../9_1/upgrade-notes/major-changes-in-solr-8.html">9.1</a>
     <a class="version" href="../../9_0/upgrade-notes/major-changes-in-solr-8.html">9.0</a>
   </div>
 </div>
@@ -1106,7 +1110,7 @@
 <p>You should also consider all changes that have been made to Solr in any version you have not upgraded to already. For example, if you are currently using Solr 7.4, you should review changes made in all subsequent 7.x releases in addition to changes for 8.0.</p>
 </div>
 <div class="paragraph">
-<p>A thorough review of the list in <a href="#major-changes-in-earlier-7-x-versions">Major Changes in Earlier 7.x Versions</a>, below, as well as the <a href="https://solr.apache.org/docs/9_2_0/changes//Changes.html">CHANGES.txt</a> in your Solr instance will help you plan your migration to Solr 8.</p>
+<p>A thorough review of the list in <a href="#major-changes-in-earlier-7-x-versions">Major Changes in Earlier 7.x Versions</a>, below, as well as the <a href="https://solr.apache.org/docs/9_2_1/changes//Changes.html">CHANGES.txt</a> in your Solr instance will help you plan your migration to Solr 8.</p>
 </div>
 <div class="sect2">
 <h3 id="upgrade-prerequisites"><a class="anchor" href="#upgrade-prerequisites"></a>Upgrade Prerequisites</h3>
@@ -1188,7 +1192,7 @@ established. This leads to a waste of re
 <div class="sect3">
 <h4 id="client-changes-for-http2"><a class="anchor" href="#client-changes-for-http2"></a>Client Changes for HTTP/2</h4>
 <div class="paragraph">
-<p><a href="https://solr.apache.org/docs/9_2_0/solrj/org/apache/solr/client/solrj/impl/Http2SolrClient.html"><code>Http2SolrClient</code></a>
+<p><a href="https://solr.apache.org/docs/9_2_1/solrj/org/apache/solr/client/solrj/impl/Http2SolrClient.html"><code>Http2SolrClient</code></a>
 with HTTP/2 and async capabilities based on Jetty Client is introduced. This client replaced
 <code>HttpSolrClient</code> and <code>ConcurrentUpdateSolrClient</code> for sending most internal requests (sent by
 <code>UpdateShardHandler</code> and <code>HttpShardHandler</code>).</p>
@@ -1205,9 +1209,9 @@ with HTTP/2 and async capabilities based
 <p>The <code>HttpShardHandler</code> parameter <code>maxConnections</code> parameter is no longer being used and has been removed.</p>
 </li>
 <li>
-<p>Custom <a href="https://solr.apache.org/docs/9_2_0/core/org/apache/solr/security/AuthenticationPlugin.html"><code>AuthenticationPlugin</code></a>
+<p>Custom <a href="https://solr.apache.org/docs/9_2_1/core/org/apache/solr/security/AuthenticationPlugin.html"><code>AuthenticationPlugin</code></a>
 implementations must provide their own setup for <code>Http2SolrClient</code> through implementing
-<a href="https://solr.apache.org/docs/9_2_0/core/org/apache/solr/security/HttpClientBuilderPlugin.html"><code>HttpClientBuilderPlugin.setup</code></a>, or
+<a href="https://solr.apache.org/docs/9_2_1/core/org/apache/solr/security/HttpClientBuilderPlugin.html"><code>HttpClientBuilderPlugin.setup</code></a>, or
 internal requests will not be able to be authenticated.</p>
 </li>
 </ul>

Modified: sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-9.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-9.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-9.html (original)
+++ sites/solr/guide/solr/9_2/upgrade-notes/major-changes-in-solr-9.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1066,10 +1069,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="major-changes-in-solr-9.html">9.2-beta</a>
-    <a class="version" href="../../latest/upgrade-notes/major-changes-in-solr-9.html">9.1</a>
+    <a class="version" href="../../latest/upgrade-notes/major-changes-in-solr-9.html">9.3</a>
+    <a class="version is-current" href="major-changes-in-solr-9.html">9.2</a>
+    <a class="version" href="../../9_1/upgrade-notes/major-changes-in-solr-9.html">9.1</a>
     <a class="version" href="../../9_0/upgrade-notes/major-changes-in-solr-9.html">9.0</a>
   </div>
 </div>
@@ -1106,7 +1110,7 @@
 <p>You should also consider all changes that have been made to Solr in any version you have not upgraded to already. For example, if you are currently using Solr 8.1, you should review changes made in all subsequent 8.x releases in addition to changes for 9.0.</p>
 </div>
 <div class="paragraph">
-<p>A thorough review of the list in <a href="#major-changes-in-earlier-8-x-versions">Major Changes in Earlier 8.x Versions</a> as well as the <a href="https://solr.apache.org/docs/9_2_0/changes/Changes.html">CHANGES.txt</a> in your Solr instance will help you plan your migration to Solr 9.</p>
+<p>A thorough review of the list in <a href="#major-changes-in-earlier-8-x-versions">Major Changes in Earlier 8.x Versions</a> as well as the <a href="https://solr.apache.org/docs/9_2_1/changes/Changes.html">CHANGES.txt</a> in your Solr instance will help you plan your migration to Solr 9.</p>
 </div>
 <div class="sect2">
 <h3 id="upgrade-prerequisites"><a class="anchor" href="#upgrade-prerequisites"></a>Upgrade Prerequisites</h3>
@@ -1224,10 +1228,22 @@ This is what has been documented in <a h
 <div class="ulist">
 <ul>
 <li>
-<p>The OS version of the official Docker image and provided Dockerfile has been upgraded to Ubuntu 22 (jammy) from Ubuntu 20 (focal).</p>
+<p>The OS version of the official Docker image and provided Dockerfile has been upgraded to Ubuntu 22 (jammy) from Ubuntu 20 (focal). Solr&#8217;s Docker image now requires Docker engine version 20.10.10 or newer.</p>
 </li>
 </ul>
 </div>
+<div class="admonitionblock tip">
+<table>
+<tr>
+<td class="icon">
+<i class="fa icon-tip" title="Tip"></i>
+</td>
+<td class="content">
+Users who cannot upgrade their Docker engine will need to specify the docker commandline option <code>--security-opt seccomp=unconfined</code> when starting the container.
+</td>
+</tr>
+</table>
+</div>
 </div>
 <div class="sect2">
 <h3 id="streaming-expressions"><a class="anchor" href="#streaming-expressions"></a>Streaming Expressions</h3>
@@ -1402,7 +1418,7 @@ If you rely upon the previous behavior,
 This may require some more disk space for logs than was the case in version 8.x. See <a href="../deployment-guide/configuring-logging.html" class="xref page">Configuring Logging</a> for how to change this.</p>
 </li>
 <li>
-<p>Hadoop authentication support has been moved to the new <code>hadoop-auth</code> module. Existing Solr configurations do not need any Hadoop authentication related changes, however the module needs to be installed - see the section <a href="../deployment-guide/hadoop-authentication-plugin.html" class="xref page">Hadoop Authentication Plugin</a>.</p>
+<p>Hadoop authentication support has been moved to the new <code>hadoop-auth</code> module. Users need to add the module <code>hadoop-auth</code> to classpath. The plugins has also changed package name to <code>org.apache.solr.security.hadoop</code>, but can still be loaded as shortform <code>class="solr.HadoopAuthPlugin"</code>, <code>class="solr.ConfigurableInternodeAuthHadoopPlugin"</code> or <code>class="solr.KerberosPlugin"</code>  - see the section <a href="../deployment-guide/hadoop-authentication-plugin.html" class="xref page">Hadoop Authentication Plugin</a>.</p>
 </li>
 <li>
 <p><a href="../deployment-guide/jwt-authentication-plugin.html" class="xref page">JWTAuthPlugin</a> has been moved to a module. Users need to add the module <code>jwt-auth</code> to classpath. The plugin has also

Modified: sites/solr/guide/solr/9_2/upgrade-notes/solr-upgrade-notes.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_2/upgrade-notes/solr-upgrade-notes.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/9_2/upgrade-notes/solr-upgrade-notes.html (original)
+++ sites/solr/guide/solr/9_2/upgrade-notes/solr-upgrade-notes.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -63,18 +63,21 @@
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2-beta</span>
+    <span class="version">9.2</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../../latest/index.html">Solr Reference Guide</a>
       <ul class="versions">
+        <li class="version is-latest">
+          <a href="../../latest/index.html">9.3</a>
+        </li>
         <li class="version is-current">
-          <a href="../index.html">9.2-beta</a>
+          <a href="../index.html">9.2</a>
         </li>
-        <li class="version is-latest">
-          <a href="../../latest/index.html">9.1</a>
+        <li class="version">
+          <a href="../../9_1/index.html">9.1</a>
         </li>
         <li class="version">
           <a href="../../9_0/index.html">9.0</a>
@@ -1065,10 +1068,11 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2-beta</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
   <div class="version-menu">
-    <a class="version is-current" href="solr-upgrade-notes.html">9.2-beta</a>
-    <a class="version" href="../../latest/upgrade-notes/solr-upgrade-notes.html">9.1</a>
+    <a class="version" href="../../latest/upgrade-notes/solr-upgrade-notes.html">9.3</a>
+    <a class="version is-current" href="solr-upgrade-notes.html">9.2</a>
+    <a class="version" href="../../9_1/upgrade-notes/solr-upgrade-notes.html">9.1</a>
     <a class="version" href="../../9_0/upgrade-notes/solr-upgrade-notes.html">9.0</a>
   </div>
 </div>
@@ -1094,7 +1098,7 @@ It is not a comprehensive list of all ch
 </div>
 <div class="paragraph">
 <p>When planning your Solr upgrade, consider the customizations to
-your system and review the <a href="https://solr.apache.org/docs/9_2_0/changes/Changes.html"><code>CHANGES.txt</code></a>
+your system and review the <a href="https://solr.apache.org/docs/9_2_1/changes/Changes.html"><code>CHANGES.txt</code></a>
 file found in your Solr package.
 That file includes all the changes and updates
 that may affect your existing implementation.</p>
@@ -1173,7 +1177,7 @@ Rolling upgrades from Solr 8 to Solr 9 r
 <h2 id="upgrading-from-pre-8-x-versions"><a class="anchor" href="#upgrading-from-pre-8-x-versions"></a>Upgrading from Pre-8.x Versions</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>Users upgrading from versions prior to 8.x are strongly encouraged to consult <a href="https://solr.apache.org/docs/9_2_0/changes/Changes.html"><code>CHANGES.txt</code></a> for the details of <em>all</em> changes since the version they are upgrading from.</p>
+<p>Users upgrading from versions prior to 8.x are strongly encouraged to consult <a href="https://solr.apache.org/docs/9_2_1/changes/Changes.html"><code>CHANGES.txt</code></a> for the details of <em>all</em> changes since the version they are upgrading from.</p>
 </div>
 <div class="paragraph">
 <p>The upgrade from 7.x to 8.0 introduced several <strong>major</strong> changes that you should be aware of before upgrading.

Modified: sites/solr/guide/solr/latest/configuration-guide/caches-warming.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/configuration-guide/caches-warming.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/latest/configuration-guide/caches-warming.html (original)
+++ sites/solr/guide/solr/latest/configuration-guide/caches-warming.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_3_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -56,25 +56,25 @@
   </nav>
 </header>
 <div class="body">
-<div class="nav-container" data-component="solr" data-version="9_2">
+<div class="nav-container" data-component="solr" data-version="9_3">
   <aside class="nav">
     <div class="panels">
 <!-- Solr Changes - Start -->
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2</span>
+    <span class="version">9.3</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../index.html">Solr Reference Guide</a>
       <ul class="versions">
-        <li class="version">
-          <a href="../../9_3/index.html">9.3-beta</a>
-        </li>
         <li class="version is-current is-latest">
-          <a href="../index.html">9.2</a>
+          <a href="../index.html">9.3</a>
+        </li>
+        <li class="version">
+          <a href="../../9_2/index.html">9.2</a>
         </li>
         <li class="version">
           <a href="../../9_1/index.html">9.1</a>
@@ -211,7 +211,7 @@
     <a class="nav-link" href="../getting-started/tutorial-films.html">Exercise 2: Index Films Data</a>
   </li>
   <li class="nav-item" data-depth="2">
-    <a class="nav-link" href="../getting-started/tutorial-diy.html">Exercise 3 Index Your Own Data</a>
+    <a class="nav-link" href="../getting-started/tutorial-diy.html">Exercise 3: Index Your Own Data</a>
   </li>
   <li class="nav-item" data-depth="2">
     <a class="nav-link" href="../getting-started/tutorial-solrcloud.html">Getting Started with SolrCloud</a>
@@ -718,6 +718,9 @@
 </ul>
   </li>
   <li class="nav-item" data-depth="2">
+    <a class="nav-link" href="../indexing-guide/indexing-with-cbor.html">Indexing with Update CBOR data format</a>
+  </li>
+  <li class="nav-item" data-depth="2">
     <a class="nav-link" href="../indexing-guide/indexing-with-tika.html">Indexing with Solr Cell and Apache Tika</a>
   </li>
   <li class="nav-item" data-depth="2">
@@ -1070,17 +1073,17 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.3</button>
   <div class="version-menu">
-    <a class="version" href="../../9_3/configuration-guide/caches-warming.html">9.3-beta</a>
-    <a class="version is-current" href="caches-warming.html">9.2</a>
+    <a class="version is-current" href="caches-warming.html">9.3</a>
+    <a class="version" href="../../9_2/configuration-guide/caches-warming.html">9.2</a>
     <a class="version" href="../../9_1/configuration-guide/caches-warming.html">9.1</a>
     <a class="version" href="../../9_0/configuration-guide/caches-warming.html">9.0</a>
   </div>
 </div>
 <!-- Solr Additions - Start -->
 <!-- Solr New File -->
-<span class="perma-link-copy" version="9_2">
+<span class="perma-link-copy" version="9_3">
 </span><!-- Solr Additions - End -->
   <div class="edit-this-page"><a href="https://github.com/apache/solr/tree/main/solr/solr-ref-guide/modules/configuration-guide/pages/caches-warming.adoc">Edit this Page</a></div>
   </div>
@@ -1301,7 +1304,7 @@ You can locate and use your cache object
 </div>
 </div>
 <div class="paragraph">
-<p>If you want auto-warming of your cache, include a <code>regenerator</code> attribute with the fully qualified name of a class that implements <a href="https://solr.apache.org/docs/9_2_1/core/org/apache/solr/search/CacheRegenerator.html"><code>solr.search.CacheRegenerator</code></a>.
+<p>If you want auto-warming of your cache, include a <code>regenerator</code> attribute with the fully qualified name of a class that implements <a href="https://solr.apache.org/docs/9_3_0/core/org/apache/solr/search/CacheRegenerator.html"><code>solr.search.CacheRegenerator</code></a>.
 You can also use the <code>NoOpRegenerator</code>, which simply repopulates the cache with old items.
 Define it with the <code>regenerator</code> parameter as <code>regenerator="solr.NoOpRegenerator"</code>.</p>
 </div>

Modified: sites/solr/guide/solr/latest/configuration-guide/cluster-plugins.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/configuration-guide/cluster-plugins.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/latest/configuration-guide/cluster-plugins.html (original)
+++ sites/solr/guide/solr/latest/configuration-guide/cluster-plugins.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_3_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -56,25 +56,25 @@
   </nav>
 </header>
 <div class="body">
-<div class="nav-container" data-component="solr" data-version="9_2">
+<div class="nav-container" data-component="solr" data-version="9_3">
   <aside class="nav">
     <div class="panels">
 <!-- Solr Changes - Start -->
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2</span>
+    <span class="version">9.3</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../index.html">Solr Reference Guide</a>
       <ul class="versions">
-        <li class="version">
-          <a href="../../9_3/index.html">9.3-beta</a>
-        </li>
         <li class="version is-current is-latest">
-          <a href="../index.html">9.2</a>
+          <a href="../index.html">9.3</a>
+        </li>
+        <li class="version">
+          <a href="../../9_2/index.html">9.2</a>
         </li>
         <li class="version">
           <a href="../../9_1/index.html">9.1</a>
@@ -211,7 +211,7 @@
     <a class="nav-link" href="../getting-started/tutorial-films.html">Exercise 2: Index Films Data</a>
   </li>
   <li class="nav-item" data-depth="2">
-    <a class="nav-link" href="../getting-started/tutorial-diy.html">Exercise 3 Index Your Own Data</a>
+    <a class="nav-link" href="../getting-started/tutorial-diy.html">Exercise 3: Index Your Own Data</a>
   </li>
   <li class="nav-item" data-depth="2">
     <a class="nav-link" href="../getting-started/tutorial-solrcloud.html">Getting Started with SolrCloud</a>
@@ -718,6 +718,9 @@
 </ul>
   </li>
   <li class="nav-item" data-depth="2">
+    <a class="nav-link" href="../indexing-guide/indexing-with-cbor.html">Indexing with Update CBOR data format</a>
+  </li>
+  <li class="nav-item" data-depth="2">
     <a class="nav-link" href="../indexing-guide/indexing-with-tika.html">Indexing with Solr Cell and Apache Tika</a>
   </li>
   <li class="nav-item" data-depth="2">
@@ -1070,17 +1073,17 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.3</button>
   <div class="version-menu">
-    <a class="version" href="../../9_3/configuration-guide/cluster-plugins.html">9.3-beta</a>
-    <a class="version is-current" href="cluster-plugins.html">9.2</a>
+    <a class="version is-current" href="cluster-plugins.html">9.3</a>
+    <a class="version" href="../../9_2/configuration-guide/cluster-plugins.html">9.2</a>
     <a class="version" href="../../9_1/configuration-guide/cluster-plugins.html">9.1</a>
     <a class="version" href="../../9_0/configuration-guide/cluster-plugins.html">9.0</a>
   </div>
 </div>
 <!-- Solr Additions - Start -->
 <!-- Solr New File -->
-<span class="perma-link-copy" version="9_2">
+<span class="perma-link-copy" version="9_3">
 </span><!-- Solr Additions - End -->
   <div class="edit-this-page"><a href="https://github.com/apache/solr/tree/main/solr/solr-ref-guide/modules/configuration-guide/pages/cluster-plugins.adoc">Edit this Page</a></div>
   </div>

Modified: sites/solr/guide/solr/latest/configuration-guide/codec-factory.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/configuration-guide/codec-factory.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/latest/configuration-guide/codec-factory.html (original)
+++ sites/solr/guide/solr/latest/configuration-guide/codec-factory.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_3_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -56,25 +56,25 @@
   </nav>
 </header>
 <div class="body">
-<div class="nav-container" data-component="solr" data-version="9_2">
+<div class="nav-container" data-component="solr" data-version="9_3">
   <aside class="nav">
     <div class="panels">
 <!-- Solr Changes - Start -->
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2</span>
+    <span class="version">9.3</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../index.html">Solr Reference Guide</a>
       <ul class="versions">
-        <li class="version">
-          <a href="../../9_3/index.html">9.3-beta</a>
-        </li>
         <li class="version is-current is-latest">
-          <a href="../index.html">9.2</a>
+          <a href="../index.html">9.3</a>
+        </li>
+        <li class="version">
+          <a href="../../9_2/index.html">9.2</a>
         </li>
         <li class="version">
           <a href="../../9_1/index.html">9.1</a>
@@ -211,7 +211,7 @@
     <a class="nav-link" href="../getting-started/tutorial-films.html">Exercise 2: Index Films Data</a>
   </li>
   <li class="nav-item" data-depth="2">
-    <a class="nav-link" href="../getting-started/tutorial-diy.html">Exercise 3 Index Your Own Data</a>
+    <a class="nav-link" href="../getting-started/tutorial-diy.html">Exercise 3: Index Your Own Data</a>
   </li>
   <li class="nav-item" data-depth="2">
     <a class="nav-link" href="../getting-started/tutorial-solrcloud.html">Getting Started with SolrCloud</a>
@@ -718,6 +718,9 @@
 </ul>
   </li>
   <li class="nav-item" data-depth="2">
+    <a class="nav-link" href="../indexing-guide/indexing-with-cbor.html">Indexing with Update CBOR data format</a>
+  </li>
+  <li class="nav-item" data-depth="2">
     <a class="nav-link" href="../indexing-guide/indexing-with-tika.html">Indexing with Solr Cell and Apache Tika</a>
   </li>
   <li class="nav-item" data-depth="2">
@@ -1070,17 +1073,17 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.3</button>
   <div class="version-menu">
-    <a class="version" href="../../9_3/configuration-guide/codec-factory.html">9.3-beta</a>
-    <a class="version is-current" href="codec-factory.html">9.2</a>
+    <a class="version is-current" href="codec-factory.html">9.3</a>
+    <a class="version" href="../../9_2/configuration-guide/codec-factory.html">9.2</a>
     <a class="version" href="../../9_1/configuration-guide/codec-factory.html">9.1</a>
     <a class="version" href="../../9_0/configuration-guide/codec-factory.html">9.0</a>
   </div>
 </div>
 <!-- Solr Additions - Start -->
 <!-- Solr New File -->
-<span class="perma-link-copy" version="9_2">
+<span class="perma-link-copy" version="9_3">
 </span><!-- Solr Additions - End -->
   <div class="edit-this-page"><a href="https://github.com/apache/solr/tree/main/solr/solr-ref-guide/modules/configuration-guide/pages/codec-factory.adoc">Edit this Page</a></div>
   </div>
@@ -1094,7 +1097,7 @@
 <div id="preamble">
 <div class="sectionbody">
 <div class="paragraph">
-<p>A <code>codecFactory</code> can be specified in <code>solrconfig.xml</code> to determine which Lucene <a href="https://lucene.apache.org/core/9_4_2/core/org/apache/lucene/codecs/Codec.html"><code>Codec</code></a> is used when writing the index to disk.</p>
+<p>A <code>codecFactory</code> can be specified in <code>solrconfig.xml</code> to determine which Lucene <a href="https://lucene.apache.org/core/9_7_0/core/org/apache/lucene/codecs/Codec.html"><code>Codec</code></a> is used when writing the index to disk.</p>
 </div>
 <div class="paragraph">
 <p>If not specified, Lucene&#8217;s default codec is implicitly used.</p>
@@ -1110,7 +1113,7 @@
 <div class="sect2">
 <h3 id="solr-schemacodecfactory"><a class="anchor" href="#solr-schemacodecfactory"></a>solr.SchemaCodecFactory</h3>
 <div class="paragraph">
-<p>The <a href="https://solr.apache.org/docs/9_2_1/core/org/apache/solr/core/SchemaCodecFactory.html"><code>solr.SchemaCodecFactory</code></a> supports 2 key features:</p>
+<p>The <a href="https://solr.apache.org/docs/9_3_0/core/org/apache/solr/core/SchemaCodecFactory.html"><code>solr.SchemaCodecFactory</code></a> supports 2 key features:</p>
 </div>
 <div class="ulist">
 <ul>
@@ -1146,7 +1149,7 @@
 <div class="sect2">
 <h3 id="solr-simpletextcodecfactory"><a class="anchor" href="#solr-simpletextcodecfactory"></a>solr.SimpleTextCodecFactory</h3>
 <div class="paragraph">
-<p>This factory for Lucene&#8217;s <a href="https://solr.apache.org/docs/9_2_1/core/org/apache/solr/core/SimpleTextCodecFactory.html"><code>SimpleTextCodecFactory</code></a> produces a plain text human-readable index format.</p>
+<p>This factory for Lucene&#8217;s <a href="https://solr.apache.org/docs/9_3_0/core/org/apache/solr/core/SimpleTextCodecFactory.html"><code>SimpleTextCodecFactory</code></a> produces a plain text human-readable index format.</p>
 </div>
 <div class="admonitionblock caution">
 <table>

Modified: sites/solr/guide/solr/latest/configuration-guide/collections-api.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/configuration-guide/collections-api.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/latest/configuration-guide/collections-api.html (original)
+++ sites/solr/guide/solr/latest/configuration-guide/collections-api.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_3_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -56,25 +56,25 @@
   </nav>
 </header>
 <div class="body">
-<div class="nav-container" data-component="solr" data-version="9_2">
+<div class="nav-container" data-component="solr" data-version="9_3">
   <aside class="nav">
     <div class="panels">
 <!-- Solr Changes - Start -->
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2</span>
+    <span class="version">9.3</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../index.html">Solr Reference Guide</a>
       <ul class="versions">
-        <li class="version">
-          <a href="../../9_3/index.html">9.3-beta</a>
-        </li>
         <li class="version is-current is-latest">
-          <a href="../index.html">9.2</a>
+          <a href="../index.html">9.3</a>
+        </li>
+        <li class="version">
+          <a href="../../9_2/index.html">9.2</a>
         </li>
         <li class="version">
           <a href="../../9_1/index.html">9.1</a>
@@ -211,7 +211,7 @@
     <a class="nav-link" href="../getting-started/tutorial-films.html">Exercise 2: Index Films Data</a>
   </li>
   <li class="nav-item" data-depth="2">
-    <a class="nav-link" href="../getting-started/tutorial-diy.html">Exercise 3 Index Your Own Data</a>
+    <a class="nav-link" href="../getting-started/tutorial-diy.html">Exercise 3: Index Your Own Data</a>
   </li>
   <li class="nav-item" data-depth="2">
     <a class="nav-link" href="../getting-started/tutorial-solrcloud.html">Getting Started with SolrCloud</a>
@@ -718,6 +718,9 @@
 </ul>
   </li>
   <li class="nav-item" data-depth="2">
+    <a class="nav-link" href="../indexing-guide/indexing-with-cbor.html">Indexing with Update CBOR data format</a>
+  </li>
+  <li class="nav-item" data-depth="2">
     <a class="nav-link" href="../indexing-guide/indexing-with-tika.html">Indexing with Solr Cell and Apache Tika</a>
   </li>
   <li class="nav-item" data-depth="2">
@@ -1070,17 +1073,17 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.3</button>
   <div class="version-menu">
-    <a class="version" href="../../9_3/configuration-guide/collections-api.html">9.3-beta</a>
-    <a class="version is-current" href="collections-api.html">9.2</a>
+    <a class="version is-current" href="collections-api.html">9.3</a>
+    <a class="version" href="../../9_2/configuration-guide/collections-api.html">9.2</a>
     <a class="version" href="../../9_1/configuration-guide/collections-api.html">9.1</a>
     <a class="version" href="../../9_0/configuration-guide/collections-api.html">9.0</a>
   </div>
 </div>
 <!-- Solr Additions - Start -->
 <!-- Solr New File -->
-<span class="perma-link-copy" version="9_2">
+<span class="perma-link-copy" version="9_3">
 </span><!-- Solr Additions - End -->
   <div class="edit-this-page"><a href="https://github.com/apache/solr/tree/main/solr/solr-ref-guide/modules/configuration-guide/pages/collections-api.adoc">Edit this Page</a></div>
   </div>

Modified: sites/solr/guide/solr/latest/configuration-guide/commits-transaction-logs.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/configuration-guide/commits-transaction-logs.html?rev=1083697&r1=1083696&r2=1083697&view=diff
==============================================================================
--- sites/solr/guide/solr/latest/configuration-guide/commits-transaction-logs.html (original)
+++ sites/solr/guide/solr/latest/configuration-guide/commits-transaction-logs.html Fri Jul 21 18:07:42 2023
@@ -39,7 +39,7 @@
         <div class="navbar-item has-dropdown is-hoverable">
           <a class="navbar-link" href="#">Resources</a>
           <div class="navbar-dropdown">
-            <a class="navbar-item" href="https://solr.apache.org/docs/9_2_1/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
+            <a class="navbar-item" href="https://solr.apache.org/docs/9_3_0/index.html" target="_blank" rel="noreferrer nopener">Solr Javadocs</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html#version-control" target="_blank" rel="noreferrer nopener">Source Code</a>
             <a class="navbar-item" href="https://solr.apache.org/community.html" target="_blank" rel="noreferrer nopener">Community Links</a>
             <a class="navbar-item" href="https://github.com/apache/solr/tree/main/dev-docs/ref-guide" target="_blank" rel="noreferrer nopener">Contribute</a>
@@ -56,25 +56,25 @@
   </nav>
 </header>
 <div class="body">
-<div class="nav-container" data-component="solr" data-version="9_2">
+<div class="nav-container" data-component="solr" data-version="9_3">
   <aside class="nav">
     <div class="panels">
 <!-- Solr Changes - Start -->
 <div class="nav-panel-explore" data-panel="explore">
   <div class="context">
     <span class="title">Solr Reference Guide</span>
-    <span class="version">9.2</span>
+    <span class="version">9.3</span>
   </div>
 <!-- Programmatically creates the component and version list -->
   <ul class="components">
     <li class="component is-current">
       <a class="title" href="../index.html">Solr Reference Guide</a>
       <ul class="versions">
-        <li class="version">
-          <a href="../../9_3/index.html">9.3-beta</a>
-        </li>
         <li class="version is-current is-latest">
-          <a href="../index.html">9.2</a>
+          <a href="../index.html">9.3</a>
+        </li>
+        <li class="version">
+          <a href="../../9_2/index.html">9.2</a>
         </li>
         <li class="version">
           <a href="../../9_1/index.html">9.1</a>
@@ -211,7 +211,7 @@
     <a class="nav-link" href="../getting-started/tutorial-films.html">Exercise 2: Index Films Data</a>
   </li>
   <li class="nav-item" data-depth="2">
-    <a class="nav-link" href="../getting-started/tutorial-diy.html">Exercise 3 Index Your Own Data</a>
+    <a class="nav-link" href="../getting-started/tutorial-diy.html">Exercise 3: Index Your Own Data</a>
   </li>
   <li class="nav-item" data-depth="2">
     <a class="nav-link" href="../getting-started/tutorial-solrcloud.html">Getting Started with SolrCloud</a>
@@ -718,6 +718,9 @@
 </ul>
   </li>
   <li class="nav-item" data-depth="2">
+    <a class="nav-link" href="../indexing-guide/indexing-with-cbor.html">Indexing with Update CBOR data format</a>
+  </li>
+  <li class="nav-item" data-depth="2">
     <a class="nav-link" href="../indexing-guide/indexing-with-tika.html">Indexing with Solr Cell and Apache Tika</a>
   </li>
   <li class="nav-item" data-depth="2">
@@ -1070,17 +1073,17 @@
   </ul>
 </nav>
 <div class="page-versions">
-  <button class="version-menu-toggle" title="Show other versions of page">9.2</button>
+  <button class="version-menu-toggle" title="Show other versions of page">9.3</button>
   <div class="version-menu">
-    <a class="version" href="../../9_3/configuration-guide/commits-transaction-logs.html">9.3-beta</a>
-    <a class="version is-current" href="commits-transaction-logs.html">9.2</a>
+    <a class="version is-current" href="commits-transaction-logs.html">9.3</a>
+    <a class="version" href="../../9_2/configuration-guide/commits-transaction-logs.html">9.2</a>
     <a class="version" href="../../9_1/configuration-guide/commits-transaction-logs.html">9.1</a>
     <a class="version" href="../../9_0/configuration-guide/commits-transaction-logs.html">9.0</a>
   </div>
 </div>
 <!-- Solr Additions - Start -->
 <!-- Solr New File -->
-<span class="perma-link-copy" version="9_2">
+<span class="perma-link-copy" version="9_3">
 </span><!-- Solr Additions - End -->
   <div class="edit-this-page"><a href="https://github.com/apache/solr/tree/main/solr/solr-ref-guide/modules/configuration-guide/pages/commits-transaction-logs.adoc">Edit this Page</a></div>
   </div>