Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Missing autogenerated boundary for "Should be at least 250" description #27

Closed
Masara opened this issue Jul 1, 2022 · 0 comments · Fixed by #111
Closed

Missing autogenerated boundary for "Should be at least 250" description #27

Masara opened this issue Jul 1, 2022 · 0 comments · Fixed by #111
Labels
@boundary Related to the @boundary annotation bug 🪲 Something isn't working missing annotation An annotation should have been generated automatically but wasn't

Comments

@Masara
Copy link
Contributor

Masara commented Jul 1, 2022

URL Hash

#/sklearn/sklearn.manifold._t_sne/TSNE/__init__/n_iter

Expected Annotation Type

@boundary

Expected Annotation Inputs

image

Minimal API Data (optional)

Minimal API Data for `sklearn/sklearn.manifold._t_sne/TSNE/__init__/n_iter`
{
    "schemaVersion": 1,
    "distribution": "scikit-learn",
    "package": "sklearn",
    "version": "1.1.1",
    "modules": [
        {
            "id": "sklearn/sklearn.manifold",
            "name": "sklearn.manifold",
            "imports": [],
            "from_imports": [
                {
                    "module": "sklearn.manifold._isomap",
                    "declaration": "Isomap",
                    "alias": null
                },
                {
                    "module": "sklearn.manifold._locally_linear",
                    "declaration": "locally_linear_embedding",
                    "alias": null
                },
                {
                    "module": "sklearn.manifold._locally_linear",
                    "declaration": "LocallyLinearEmbedding",
                    "alias": null
                },
                {
                    "module": "sklearn.manifold._mds",
                    "declaration": "MDS",
                    "alias": null
                },
                {
                    "module": "sklearn.manifold._mds",
                    "declaration": "smacof",
                    "alias": null
                },
                {
                    "module": "sklearn.manifold._spectral_embedding",
                    "declaration": "spectral_embedding",
                    "alias": null
                },
                {
                    "module": "sklearn.manifold._spectral_embedding",
                    "declaration": "SpectralEmbedding",
                    "alias": null
                },
                {
                    "module": "sklearn.manifold._t_sne",
                    "declaration": "trustworthiness",
                    "alias": null
                },
                {
                    "module": "sklearn.manifold._t_sne",
                    "declaration": "TSNE",
                    "alias": null
                }
            ],
            "classes": [
                "sklearn/sklearn.manifold._t_sne/TSNE"
            ],
            "functions": []
        }
    ],
    "classes": [
        {
            "id": "sklearn/sklearn.manifold._t_sne/TSNE",
            "name": "TSNE",
            "qname": "sklearn.manifold._t_sne.TSNE",
            "decorators": [],
            "superclasses": [
                "BaseEstimator"
            ],
            "methods": [
                "sklearn/sklearn.manifold._t_sne/TSNE/__init__"
            ],
            "is_public": true,
            "reexported_by": [
                "sklearn/sklearn.manifold"
            ],
            "description": "T-distributed Stochastic Neighbor Embedding.\n\nt-SNE [1] is a tool to visualize high-dimensional data. It converts\nsimilarities between data points to joint probabilities and tries\nto minimize the Kullback-Leibler divergence between the joint\nprobabilities of the low-dimensional embedding and the\nhigh-dimensional data. t-SNE has a cost function that is not convex,\ni.e. with different initializations we can get different results.\n\nIt is highly recommended to use another dimensionality reduction\nmethod (e.g. PCA for dense data or TruncatedSVD for sparse data)\nto reduce the number of dimensions to a reasonable amount (e.g. 50)\nif the number of features is very high. This will suppress some\nnoise and speed up the computation of pairwise distances between\nsamples. For more tips see Laurens van der Maaten's FAQ [2].\n\nRead more in the :ref:`User Guide <t_sne>`.",
            "docstring": "T-distributed Stochastic Neighbor Embedding.\n\nt-SNE [1] is a tool to visualize high-dimensional data. It converts\nsimilarities between data points to joint probabilities and tries\nto minimize the Kullback-Leibler divergence between the joint\nprobabilities of the low-dimensional embedding and the\nhigh-dimensional data. t-SNE has a cost function that is not convex,\ni.e. with different initializations we can get different results.\n\nIt is highly recommended to use another dimensionality reduction\nmethod (e.g. PCA for dense data or TruncatedSVD for sparse data)\nto reduce the number of dimensions to a reasonable amount (e.g. 50)\nif the number of features is very high. This will suppress some\nnoise and speed up the computation of pairwise distances between\nsamples. For more tips see Laurens van der Maaten's FAQ [2].\n\nRead more in the :ref:`User Guide <t_sne>`.\n\nParameters\n----------\nn_components : int, default=2\n    Dimension of the embedded space.\n\nperplexity : float, default=30.0\n    The perplexity is related to the number of nearest neighbors that\n    is used in other manifold learning algorithms. Larger datasets\n    usually require a larger perplexity. Consider selecting a value\n    between 5 and 50. Different values can result in significantly\n    different results.\n\nearly_exaggeration : float, default=12.0\n    Controls how tight natural clusters in the original space are in\n    the embedded space and how much space will be between them. For\n    larger values, the space between natural clusters will be larger\n    in the embedded space. Again, the choice of this parameter is not\n    very critical. If the cost function increases during initial\n    optimization, the early exaggeration factor or the learning rate\n    might be too high.\n\nlearning_rate : float or 'auto', default=200.0\n    The learning rate for t-SNE is usually in the range [10.0, 1000.0]. If\n    the learning rate is too high, the data may look like a 'ball' with any\n    point approximately equidistant from its nearest neighbours. If the\n    learning rate is too low, most points may look compressed in a dense\n    cloud with few outliers. If the cost function gets stuck in a bad local\n    minimum increasing the learning rate may help.\n    Note that many other t-SNE implementations (bhtsne, FIt-SNE, openTSNE,\n    etc.) use a definition of learning_rate that is 4 times smaller than\n    ours. So our learning_rate=200 corresponds to learning_rate=800 in\n    those other implementations. The 'auto' option sets the learning_rate\n    to `max(N / early_exaggeration / 4, 50)` where N is the sample size,\n    following [4] and [5]. This will become default in 1.2.\n\nn_iter : int, default=1000\n    Maximum number of iterations for the optimization. Should be at\n    least 250.\n\nn_iter_without_progress : int, default=300\n    Maximum number of iterations without progress before we abort the\n    optimization, used after 250 initial iterations with early\n    exaggeration. Note that progress is only checked every 50 iterations so\n    this value is rounded to the next multiple of 50.\n\n    .. versionadded:: 0.17\n       parameter *n_iter_without_progress* to control stopping criteria.\n\nmin_grad_norm : float, default=1e-7\n    If the gradient norm is below this threshold, the optimization will\n    be stopped.\n\nmetric : str or callable, default='euclidean'\n    The metric to use when calculating distance between instances in a\n    feature array. If metric is a string, it must be one of the options\n    allowed by scipy.spatial.distance.pdist for its metric parameter, or\n    a metric listed in pairwise.PAIRWISE_DISTANCE_FUNCTIONS.\n    If metric is \"precomputed\", X is assumed to be a distance matrix.\n    Alternatively, if metric is a callable function, it is called on each\n    pair of instances (rows) and the resulting value recorded. The callable\n    should take two arrays from X as input and return a value indicating\n    the distance between them. The default is \"euclidean\" which is\n    interpreted as squared euclidean distance.\n\nmetric_params : dict, default=None\n    Additional keyword arguments for the metric function.\n\n    .. versionadded:: 1.1\n\ninit : {'random', 'pca'} or ndarray of shape (n_samples, n_components),             default='random'\n    Initialization of embedding. Possible options are 'random', 'pca',\n    and a numpy array of shape (n_samples, n_components).\n    PCA initialization cannot be used with precomputed distances and is\n    usually more globally stable than random initialization. `init='pca'`\n    will become default in 1.2.\n\nverbose : int, default=0\n    Verbosity level.\n\nrandom_state : int, RandomState instance or None, default=None\n    Determines the random number generator. Pass an int for reproducible\n    results across multiple function calls. Note that different\n    initializations might result in different local minima of the cost\n    function. See :term:`Glossary <random_state>`.\n\nmethod : str, default='barnes_hut'\n    By default the gradient calculation algorithm uses Barnes-Hut\n    approximation running in O(NlogN) time. method='exact'\n    will run on the slower, but exact, algorithm in O(N^2) time. The\n    exact algorithm should be used when nearest-neighbor errors need\n    to be better than 3%. However, the exact method cannot scale to\n    millions of examples.\n\n    .. versionadded:: 0.17\n       Approximate optimization *method* via the Barnes-Hut.\n\nangle : float, default=0.5\n    Only used if method='barnes_hut'\n    This is the trade-off between speed and accuracy for Barnes-Hut T-SNE.\n    'angle' is the angular size (referred to as theta in [3]) of a distant\n    node as measured from a point. If this size is below 'angle' then it is\n    used as a summary node of all points contained within it.\n    This method is not very sensitive to changes in this parameter\n    in the range of 0.2 - 0.8. Angle less than 0.2 has quickly increasing\n    computation time and angle greater 0.8 has quickly increasing error.\n\nn_jobs : int, default=None\n    The number of parallel jobs to run for neighbors search. This parameter\n    has no impact when ``metric=\"precomputed\"`` or\n    (``metric=\"euclidean\"`` and ``method=\"exact\"``).\n    ``None`` means 1 unless in a :obj:`joblib.parallel_backend` context.\n    ``-1`` means using all processors. See :term:`Glossary <n_jobs>`\n    for more details.\n\n    .. versionadded:: 0.22\n\nsquare_distances : True, default='deprecated'\n    This parameter has no effect since distance values are always squared\n    since 1.1.\n\n    .. deprecated:: 1.1\n         `square_distances` has no effect from 1.1 and will be removed in\n         1.3.\n\nAttributes\n----------\nembedding_ : array-like of shape (n_samples, n_components)\n    Stores the embedding vectors.\n\nkl_divergence_ : float\n    Kullback-Leibler divergence after optimization.\n\nn_features_in_ : int\n    Number of features seen during :term:`fit`.\n\n    .. versionadded:: 0.24\n\nfeature_names_in_ : ndarray of shape (`n_features_in_`,)\n    Names of features seen during :term:`fit`. Defined only when `X`\n    has feature names that are all strings.\n\n    .. versionadded:: 1.0\n\nn_iter_ : int\n    Number of iterations run.\n\nSee Also\n--------\nsklearn.decomposition.PCA : Principal component analysis that is a linear\n    dimensionality reduction method.\nsklearn.decomposition.KernelPCA : Non-linear dimensionality reduction using\n    kernels and PCA.\nMDS : Manifold learning using multidimensional scaling.\nIsomap : Manifold learning based on Isometric Mapping.\nLocallyLinearEmbedding : Manifold learning using Locally Linear Embedding.\nSpectralEmbedding : Spectral embedding for non-linear dimensionality.\n\nReferences\n----------\n\n[1] van der Maaten, L.J.P.; Hinton, G.E. Visualizing High-Dimensional Data\n    Using t-SNE. Journal of Machine Learning Research 9:2579-2605, 2008.\n\n[2] van der Maaten, L.J.P. t-Distributed Stochastic Neighbor Embedding\n    https://lvdmaaten.github.io/tsne/\n\n[3] L.J.P. van der Maaten. Accelerating t-SNE using Tree-Based Algorithms.\n    Journal of Machine Learning Research 15(Oct):3221-3245, 2014.\n    https://lvdmaaten.github.io/publications/papers/JMLR_2014.pdf\n\n[4] Belkina, A. C., Ciccolella, C. O., Anno, R., Halpert, R., Spidlen, J.,\n    & Snyder-Cappione, J. E. (2019). Automated optimized parameters for\n    T-distributed stochastic neighbor embedding improve visualization\n    and analysis of large datasets. Nature Communications, 10(1), 1-12.\n\n[5] Kobak, D., & Berens, P. (2019). The art of using t-SNE for single-cell\n    transcriptomics. Nature Communications, 10(1), 1-14.\n\nExamples\n--------\n>>> import numpy as np\n>>> from sklearn.manifold import TSNE\n>>> X = np.array([[0, 0, 0], [0, 1, 1], [1, 0, 1], [1, 1, 1]])\n>>> X_embedded = TSNE(n_components=2, learning_rate='auto',\n...                   init='random').fit_transform(X)\n>>> X_embedded.shape\n(4, 2)"
        }
    ],
    "functions": [
        {
            "id": "sklearn/sklearn.manifold._t_sne/TSNE/__init__",
            "name": "__init__",
            "qname": "sklearn.manifold._t_sne.TSNE.__init__",
            "decorators": [],
            "parameters": [
                {
                    "id": "sklearn/sklearn.manifold._t_sne/TSNE/__init__/n_iter",
                    "name": "n_iter",
                    "qname": "sklearn.manifold._t_sne.TSNE.__init__.n_iter",
                    "default_value": "1000",
                    "assigned_by": "NAME_ONLY",
                    "is_public": true,
                    "docstring": {
                        "type": "int",
                        "description": "Maximum number of iterations for the optimization. Should be at\nleast 250."
                    },
                    "type": {}
                }
            ],
            "results": [],
            "is_public": true,
            "reexported_by": [],
            "description": "T-distributed Stochastic Neighbor Embedding.\n\nt-SNE [1] is a tool to visualize high-dimensional data. It converts\nsimilarities between data points to joint probabilities and tries\nto minimize the Kullback-Leibler divergence between the joint\nprobabilities of the low-dimensional embedding and the\nhigh-dimensional data. t-SNE has a cost function that is not convex,\ni.e. with different initializations we can get different results.\n\nIt is highly recommended to use another dimensionality reduction\nmethod (e.g. PCA for dense data or TruncatedSVD for sparse data)\nto reduce the number of dimensions to a reasonable amount (e.g. 50)\nif the number of features is very high. This will suppress some\nnoise and speed up the computation of pairwise distances between\nsamples. For more tips see Laurens van der Maaten's FAQ [2].\n\nRead more in the :ref:`User Guide <t_sne>`.",
            "docstring": ""
        }
    ]
}

Minimal Usage Store (optional)

Minimal Usage Store for `sklearn/sklearn.manifold._t_sne/TSNE/__init__/n_iter`
{
    "schemaVersion": 1,
    "module_counts": {
        "sklearn/sklearn.manifold": 1146
    },
    "class_counts": {
        "sklearn/sklearn.manifold._t_sne/TSNE": 1064
    },
    "function_counts": {
        "sklearn/sklearn.manifold._t_sne/TSNE/__init__": 536
    },
    "parameter_counts": {
        "sklearn/sklearn.manifold._t_sne/TSNE/__init__/n_iter": 179
    },
    "value_counts": {
        "sklearn/sklearn.manifold._t_sne/TSNE/__init__/n_iter": {
            "200": 19,
            "250": 3,
            "251": 1,
            "300": 16,
            "400": 2,
            "500": 45,
            "900": 2,
            "1000": 395,
            "1500": 1,
            "1600": 1,
            "2000": 14,
            "2500": 18,
            "3000": 2,
            "4000": 1,
            "5000": 9,
            "12000": 3,
            "100000": 1,
            "n_iter": 2,
            "N_ITER": 1
        }
    }
}

Suggested Solution (optional)

No response

Additional Context (optional)

No response

@Masara Masara added bug 🪲 Something isn't working missing annotation An annotation should have been generated automatically but wasn't @enum Related to the @enum annotation labels Jul 1, 2022
@lars-reimann lars-reimann changed the title Missing autogenerated enum for "Should be at least 250" description Missing autogenerated boundary for "Should be at least 250" description Jul 1, 2022
@lukarade lukarade added @boundary Related to the @boundary annotation and removed @enum Related to the @enum annotation labels Jul 1, 2022
@lars-reimann lars-reimann transferred this issue from Safe-DS/API-Editor Mar 19, 2023
@github-project-automation github-project-automation bot moved this from Backlog to ✔️ Done in Library Analysis May 5, 2023
lars-reimann pushed a commit that referenced this issue Feb 1, 2024
Bumps [mkdocs-glightbox](https://github.com/Blueswen/mkdocs-glightbox)
from 0.3.6 to 0.3.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Blueswen/mkdocs-glightbox/releases">mkdocs-glightbox's
releases</a>.</em></p>
<blockquote>
<h2>mkdocs-glightbox-0.3.7</h2>
<ul>
<li>Supported custom background and shadow (<a
href="https://redirect.github.com/Blueswen/mkdocs-glightbox/issues/27">#27</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/blueswen/mkdocs-glightbox/blob/main/CHANGELOG">mkdocs-glightbox's
changelog</a>.</em></p>
<blockquote>
<p>mkdocs-glightbox-0.3.7 (2023-01-24)</p>
<pre><code>* Supported custom background and shadow
([#27](blueswen/mkdocs-glightbox#27))
</code></pre>
<p>mkdocs-glightbox-0.3.6 (2023-12-30)</p>
<pre><code>* Modified width default to auto prevent zooming large image
bug ([#21](blueswen/mkdocs-glightbox#21))
* Supported only enable glightbox with on-glb class in given page
([#28](blueswen/mkdocs-glightbox#28))
</code></pre>
<p>mkdocs-glightbox-0.3.5 (2023-11-18)</p>
<pre><code>* Supported compatibility with the privacy plugin of Material
for MkDocs insiders
([#25](blueswen/mkdocs-glightbox#25))
</code></pre>
<p>mkdocs-glightbox-0.3.4 (2023-04-25)</p>
<pre><code>* Fixed regex bug: quote issue and empty alt issue
([#14](blueswen/mkdocs-glightbox#14)
[#19](blueswen/mkdocs-glightbox#19))
</code></pre>
<p>mkdocs-glightbox-0.3.3 (2023-04-20)</p>
<pre><code>* Refactored processing logic with regex
([#14](blueswen/mkdocs-glightbox#14))
</code></pre>
<p>mkdocs-glightbox-0.3.2 (2023-03-19)</p>
<pre><code>* Supported image without extension
([#13](blueswen/mkdocs-glightbox#13))
</code></pre>
<p>mkdocs-glightbox-0.3.1 (2022-11-22)</p>
<pre><code>* Supported lightbox slide effect customization
([#8](blueswen/mkdocs-glightbox#8))
* Supported synchronized lightbox caption dark mode with Material for
MkDocs ([#7](blueswen/mkdocs-glightbox#7))
* Supported glightbox built-in gallery feature
([#11](blueswen/mkdocs-glightbox#11))
* Supported skip image in the anchor tag
</code></pre>
<p>mkdocs-glightbox-0.3.0 (2022-09-29)</p>
<pre><code>* Fixed width and height setting in config not working bug
* Supported specific skip class
([#5](blueswen/mkdocs-glightbox#5))
* Supported glightbox built-in caption with title and description
([#4](blueswen/mkdocs-glightbox#4))
* Fixed page jitter when lightbox closing issue using Material for
MkDocs
* Add white background for lightbox images to prevent the displaying
issue of the transparent image on black background
</code></pre>
<p>mkdocs-glightbox-0.2.1 (2022-08-10)</p>
<pre><code>* Updated readme
</code></pre>
<p>mkdocs-glightbox-0.2.0 (2022-08-10)</p>
<pre><code>* Added support for disabling glightbox with image class or
page meta ([#2](blueswen/mkdocs-glightbox#2))
</code></pre>
<p>mkdocs-glightbox-0.1.7 (2022-07-26)</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/1f086123bdda7214961e4df4494edd253b8ee9e2"><code>1f08612</code></a>
Support custom background and shadow (<a
href="https://redirect.github.com/Blueswen/mkdocs-glightbox/issues/27">#27</a>)</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/bbe99498a936ba6292854b0886a48a608aacf5d6"><code>bbe9949</code></a>
Update docs</li>
<li>See full diff in <a
href="https://github.com/Blueswen/mkdocs-glightbox/compare/v0.3.6...v0.3.7">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mkdocs-glightbox&package-manager=pip&previous-version=0.3.6&new-version=0.3.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
lars-reimann pushed a commit that referenced this issue Jun 1, 2024
Bumps [mkdocs-glightbox](https://github.com/Blueswen/mkdocs-glightbox)
from 0.3.7 to 0.4.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Blueswen/mkdocs-glightbox/releases">mkdocs-glightbox's
releases</a>.</em></p>
<blockquote>
<h2>mkdocs-glightbox-0.4.0</h2>
<ul>
<li>Supported manual mode (<a
href="https://redirect.github.com/Blueswen/mkdocs-glightbox/issues/29">#29</a>)</li>
<li>Allow calling lightbox methods from other places (<a
href="https://redirect.github.com/Blueswen/mkdocs-glightbox/issues/34">#34</a>)</li>
<li>Added id to appended script tag (<a
href="https://redirect.github.com/Blueswen/mkdocs-glightbox/issues/38">#38</a>)</li>
<li>Access theme attribute directly (<a
href="https://redirect.github.com/Blueswen/mkdocs-glightbox/issues/40">#40</a>)</li>
<li>Better JavaScript Error Handling (<a
href="https://redirect.github.com/Blueswen/mkdocs-glightbox/issues/36">#36</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/blueswen/mkdocs-glightbox/blob/main/CHANGELOG">mkdocs-glightbox's
changelog</a>.</em></p>
<blockquote>
<p>mkdocs-glightbox-0.4.0 (2023-05-06)</p>
<pre><code>* Supported manual mode
([#29](blueswen/mkdocs-glightbox#29))
* Allow calling lightbox methods from other places
([#34](blueswen/mkdocs-glightbox#34))
* Added id to appended script tag
([#38](blueswen/mkdocs-glightbox#38))
* Access theme attribute directly
([#40](blueswen/mkdocs-glightbox#40))
* Better JavaScript Error Handling
([#36](blueswen/mkdocs-glightbox#36))
</code></pre>
<p>mkdocs-glightbox-0.3.7 (2023-01-24)</p>
<pre><code>* Supported custom background and shadow
([#27](blueswen/mkdocs-glightbox#27))
</code></pre>
<p>mkdocs-glightbox-0.3.6 (2023-12-30)</p>
<pre><code>* Modified width default to auto prevent zooming large image
bug ([#21](blueswen/mkdocs-glightbox#21))
* Supported only enable glightbox with on-glb class in given page
([#28](blueswen/mkdocs-glightbox#28))
</code></pre>
<p>mkdocs-glightbox-0.3.5 (2023-11-18)</p>
<pre><code>* Supported compatibility with the privacy plugin of Material
for MkDocs insiders
([#25](blueswen/mkdocs-glightbox#25))
</code></pre>
<p>mkdocs-glightbox-0.3.4 (2023-04-25)</p>
<pre><code>* Fixed regex bug: quote issue and empty alt issue
([#14](blueswen/mkdocs-glightbox#14)
[#19](blueswen/mkdocs-glightbox#19))
</code></pre>
<p>mkdocs-glightbox-0.3.3 (2023-04-20)</p>
<pre><code>* Refactored processing logic with regex
([#14](blueswen/mkdocs-glightbox#14))
</code></pre>
<p>mkdocs-glightbox-0.3.2 (2023-03-19)</p>
<pre><code>* Supported image without extension
([#13](blueswen/mkdocs-glightbox#13))
</code></pre>
<p>mkdocs-glightbox-0.3.1 (2022-11-22)</p>
<pre><code>* Supported lightbox slide effect customization
([#8](blueswen/mkdocs-glightbox#8))
* Supported synchronized lightbox caption dark mode with Material for
MkDocs ([#7](blueswen/mkdocs-glightbox#7))
* Supported glightbox built-in gallery feature
([#11](blueswen/mkdocs-glightbox#11))
* Supported skip image in the anchor tag
</code></pre>
<p>mkdocs-glightbox-0.3.0 (2022-09-29)</p>
<pre><code>* Fixed width and height setting in config not working bug
* Supported specific skip class
([#5](blueswen/mkdocs-glightbox#5))
* Supported glightbox built-in caption with title and description
([#4](blueswen/mkdocs-glightbox#4))
* Fixed page jitter when lightbox closing issue using Material for
MkDocs
* Add white background for lightbox images to prevent the displaying
issue of the transparent image on black background
</code></pre>
<p>mkdocs-glightbox-0.2.1 (2022-08-10)</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/7f68f19556c8d91eb45bed2f5e3b93f9d0b4e591"><code>7f68f19</code></a>
v0.4.0</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/1409b0de89bd0aa930bbee0c2aa801c8b3391137"><code>1409b0d</code></a>
Add manual mode</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/e5ce7c9214f2de3647cbb1c9a1ec67bd82b387f9"><code>e5ce7c9</code></a>
Add search plugin note</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/d7747e7e1e58e8fe5868f38292bbb6a65f5ac902"><code>d7747e7</code></a>
Merge pull request <a
href="https://redirect.github.com/Blueswen/mkdocs-glightbox/issues/29">#29</a>
from michalfapso/main</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/6895d4eb60ef383530f8a807bec19404342a74c3"><code>6895d4e</code></a>
Add test case</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/dc38a6c042da9dcf949a594940f312cfbf5cc1ae"><code>dc38a6c</code></a>
try catch prevent Uncaught TypeError (<a
href="https://redirect.github.com/Blueswen/mkdocs-glightbox/issues/36">#36</a>)</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/7d2c0ab4b214759f7ab22ab9e775c609718ad061"><code>7d2c0ab</code></a>
access theme attribute directly (<a
href="https://redirect.github.com/Blueswen/mkdocs-glightbox/issues/40">#40</a>)</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/b0b63f8fa2bfbd14812c95b466af180e34db2cc4"><code>b0b63f8</code></a>
Merge pull request <a
href="https://redirect.github.com/Blueswen/mkdocs-glightbox/issues/34">#34</a>
from AndBondStyle/main</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/8e652652429851d18a0c920ca1ddcbf12ab71fdf"><code>8e65265</code></a>
update validation condition</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/4963fdb93c4f483827bcab10c5289452068e1fb5"><code>4963fdb</code></a>
Merge branch 'main' into main</li>
<li>Additional commits viewable in <a
href="https://github.com/Blueswen/mkdocs-glightbox/compare/v0.3.7...v0.4.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mkdocs-glightbox&package-manager=pip&previous-version=0.3.7&new-version=0.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
@boundary Related to the @boundary annotation bug 🪲 Something isn't working missing annotation An annotation should have been generated automatically but wasn't
Projects
Status: ✔️ Done
Development

Successfully merging a pull request may close this issue.

2 participants