meta-openembedded/meta-webserver/recipes-devtools/swagger-ui/swagger-ui_5.30.3.bb
Wang Mingyu fad70abdb3
swagger-ui: upgrade 5.30.2 -> 5.30.3
Changelog:
==========
- deps: update vulnerable @release-it/conventional-changelog to 10.0.2
- deps: update vulnerable dependencies (js-yaml & glob)
- utils: handle sanitizing multi-level relative paths

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2025-12-02 09:22:52 -08:00

24 lines
1.0 KiB
BlitzBasic
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

SUMMARY = "Visually render documentation for an API defined with the OpenAPI"
DESCRIPTION = "\
Swagger UI allows anyone — be it your development team or your end consumers — to visualize and \
interact with the APIs resources without having any of the implementation logic in place. \
Its automatically generated from your OpenAPI (formerly known as Swagger) Specification, \
with the visual documentation making it easy for back end implementation and client side consumption. \
"
HOMEPAGE = "https://github.com/swagger-api/swagger-ui"
SECTION = "net"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
SRC_URI = "git://github.com/swagger-api/swagger-ui;branch=master;protocol=https;tag=v${PV}"
SRCREV = "199761a94d03753ec62c23bb4ba162bb73c3cfc7"
CVE_STATUS[CVE-2016-1000229] = "fixed-version: fixed since 2.2.1"
do_install() {
install -d ${D}${localstatedir}/www/openapi/static
cp -r ${S}/dist/* ${D}${localstatedir}/www/openapi/static
}