diff --git a/badge-maker_lib_index.js.html b/badge-maker_lib_index.js.html index cfb32d5f21..ae03e2fab2 100644 --- a/badge-maker_lib_index.js.html +++ b/badge-maker_lib_index.js.html @@ -123,7 +123,7 @@ module.exports = {
diff --git a/badge-maker_lib_xml.js.html b/badge-maker_lib_xml.js.html index ca689e9ad4..4ffa68b55a 100644 --- a/badge-maker_lib_xml.js.html +++ b/badge-maker_lib_xml.js.html @@ -138,7 +138,7 @@ module.exports = { escapeXml, stripXmlWhitespace, XmlElement, ElementList }
diff --git a/core_base-service_base-graphql.js.html b/core_base-service_base-graphql.js.html index 933490bac1..93382261f1 100644 --- a/core_base-service_base-graphql.js.html +++ b/core_base-service_base-graphql.js.html @@ -136,7 +136,7 @@ export default BaseGraphqlService
diff --git a/core_base-service_base-json.js.html b/core_base-service_base-json.js.html index 81c60510ad..79e35dfc59 100644 --- a/core_base-service_base-json.js.html +++ b/core_base-service_base-json.js.html @@ -97,7 +97,7 @@ export default BaseJsonService
diff --git a/core_base-service_base-svg-scraping.js.html b/core_base-service_base-svg-scraping.js.html index 4db8d07ae8..3a3e8d62ef 100644 --- a/core_base-service_base-svg-scraping.js.html +++ b/core_base-service_base-svg-scraping.js.html @@ -133,7 +133,7 @@ export default BaseSvgScrapingService
diff --git a/core_base-service_base-xml.js.html b/core_base-service_base-xml.js.html index 0b84a393ae..c8cdeba304 100644 --- a/core_base-service_base-xml.js.html +++ b/core_base-service_base-xml.js.html @@ -111,7 +111,7 @@ export default BaseXmlService
diff --git a/core_base-service_base-yaml.js.html b/core_base-service_base-yaml.js.html index d792e6c439..828ff1d92a 100644 --- a/core_base-service_base-yaml.js.html +++ b/core_base-service_base-yaml.js.html @@ -115,7 +115,7 @@ export default BaseYamlService
diff --git a/core_base-service_base.js.html b/core_base-service_base.js.html index 733fdec1aa..4db9cbd135 100644 --- a/core_base-service_base.js.html +++ b/core_base-service_base.js.html @@ -448,7 +448,13 @@ class BaseService { } static register( - { camp, handleRequest, githubApiProvider, metricInstance }, + { + camp, + handleRequest, + githubApiProvider, + librariesIoApiProvider, + metricInstance, + }, serviceConfig ) { const { cacheHeaders: cacheHeaderConfig, fetchLimitBytes } = serviceConfig @@ -475,6 +481,7 @@ class BaseService { sendAndCacheRequest: fetcher, sendAndCacheRequestWithCallbacks: request, githubApiProvider, + librariesIoApiProvider, metricHelper, }, serviceConfig, @@ -612,7 +619,7 @@ export default BaseService
diff --git a/core_base-service_errors.js.html b/core_base-service_errors.js.html index 7ae9e54511..95be005d6a 100644 --- a/core_base-service_errors.js.html +++ b/core_base-service_errors.js.html @@ -261,7 +261,7 @@ export {
diff --git a/core_base-service_graphql.js.html b/core_base-service_graphql.js.html index 28d34db7fa..2b271a969d 100644 --- a/core_base-service_graphql.js.html +++ b/core_base-service_graphql.js.html @@ -93,7 +93,7 @@ export { mergeQueries }
diff --git a/core_server_prometheus-metrics.js.html b/core_server_prometheus-metrics.js.html index f711ff853f..d2a3a6a22a 100644 --- a/core_server_prometheus-metrics.js.html +++ b/core_server_prometheus-metrics.js.html @@ -127,7 +127,7 @@ export default class PrometheusMetrics {
diff --git a/core_server_server.js.html b/core_server_server.js.html index 7ba2999111..e899856bfa 100644 --- a/core_server_server.js.html +++ b/core_server_server.js.html @@ -39,6 +39,7 @@ import Camp from '@shields_io/camp' import originalJoi from 'joi' import makeBadge from '../../badge-maker/lib/make-badge.js' import GithubConstellation from '../../services/github/github-constellation.js' +import LibrariesIoConstellation from '../../services/librariesio/librariesio-constellation.js' import { setRoutes } from '../../services/suggest.js' import { loadServiceClasses } from '../base-service/loader.js' import { makeSend } from '../base-service/legacy-result-sender.js' @@ -198,6 +199,7 @@ const privateConfigSchema = Joi.object({ jira_pass: Joi.string(), bitbucket_server_username: Joi.string(), bitbucket_server_password: Joi.string(), + librariesio_tokens: Joi.arrayFromString().items(Joi.string()), nexus_user: Joi.string(), nexus_pass: Joi.string(), npm_token: Joi.string(), @@ -269,6 +271,10 @@ class Server { private: privateConfig, }) + this.librariesioConstellation = new LibrariesIoConstellation({ + private: privateConfig, + }) + if (publicConfig.metrics.prometheus.enabled) { this.metricInstance = new PrometheusMetrics() if (publicConfig.metrics.influx.enabled) { @@ -441,10 +447,17 @@ class Server { async registerServices() { const { config, camp, metricInstance } = this const { apiProvider: githubApiProvider } = this.githubConstellation - + const { apiProvider: librariesIoApiProvider } = + this.librariesioConstellation ;(await loadServiceClasses()).forEach(serviceClass => serviceClass.register( - { camp, handleRequest, githubApiProvider, metricInstance }, + { + camp, + handleRequest, + githubApiProvider, + librariesIoApiProvider, + metricInstance, + }, { handleInternalErrors: config.public.handleInternalErrors, cacheHeaders: config.public.cacheHeaders, @@ -599,7 +612,7 @@ export default Server
diff --git a/core_service-test-runner_create-service-tester.js.html b/core_service-test-runner_create-service-tester.js.html index d687311796..35272e946f 100644 --- a/core_service-test-runner_create-service-tester.js.html +++ b/core_service-test-runner_create-service-tester.js.html @@ -74,7 +74,7 @@ export default createServiceTester
diff --git a/core_service-test-runner_icedfrisby-shields.js.html b/core_service-test-runner_icedfrisby-shields.js.html index e5e5b7bf5e..645fa268b4 100644 --- a/core_service-test-runner_icedfrisby-shields.js.html +++ b/core_service-test-runner_icedfrisby-shields.js.html @@ -131,7 +131,7 @@ export default factory
diff --git a/core_service-test-runner_infer-pull-request.js.html b/core_service-test-runner_infer-pull-request.js.html index ae3e0a3899..112f4205a5 100644 --- a/core_service-test-runner_infer-pull-request.js.html +++ b/core_service-test-runner_infer-pull-request.js.html @@ -142,7 +142,7 @@ export { parseGithubPullRequestUrl, parseGithubRepoSlug, inferPullRequest }
diff --git a/core_service-test-runner_runner.js.html b/core_service-test-runner_runner.js.html index 306a69a8ed..3c83bc7f4b 100644 --- a/core_service-test-runner_runner.js.html +++ b/core_service-test-runner_runner.js.html @@ -118,7 +118,7 @@ export default Runner
diff --git a/core_service-test-runner_service-tester.js.html b/core_service-test-runner_service-tester.js.html index 4e6ac4e18f..59f91ba72c 100644 --- a/core_service-test-runner_service-tester.js.html +++ b/core_service-test-runner_service-tester.js.html @@ -184,7 +184,7 @@ export default ServiceTester
diff --git a/core_service-test-runner_services-for-title.js.html b/core_service-test-runner_services-for-title.js.html index 0a3feb43fe..757059a933 100644 --- a/core_service-test-runner_services-for-title.js.html +++ b/core_service-test-runner_services-for-title.js.html @@ -75,7 +75,7 @@ export default servicesForTitle
diff --git a/core_token-pooling_token-pool.js.html b/core_token-pooling_token-pool.js.html index 843f6f8c98..ea9588037a 100644 --- a/core_token-pooling_token-pool.js.html +++ b/core_token-pooling_token-pool.js.html @@ -108,6 +108,10 @@ class Token { return this.usesRemaining <= 0 && !this.hasReset } + get decrementedUsesRemaining() { + return this._usesRemaining - 1 + } + /** * Update the uses remaining and next reset time for a token. * @@ -375,7 +379,7 @@ export { sanitizeToken, Token, TokenPool }
diff --git a/global.html b/global.html index 6d8c5f222a..58aa09c974 100644 --- a/global.html +++ b/global.html @@ -1074,7 +1074,7 @@ will have this value added to the download count, separated with a space

diff --git a/index.html b/index.html index 36c5df80aa..174ed749e1 100644 --- a/index.html +++ b/index.html @@ -223,7 +223,7 @@ under their terms and license.


diff --git a/module-badge-maker.html b/module-badge-maker.html index ddc1b6dddf..7285329ab4 100644 --- a/module-badge-maker.html +++ b/module-badge-maker.html @@ -387,7 +387,7 @@
diff --git a/module-badge-maker_lib_xml-ElementList.html b/module-badge-maker_lib_xml-ElementList.html index b5c3a9c817..72ace36b95 100644 --- a/module-badge-maker_lib_xml-ElementList.html +++ b/module-badge-maker_lib_xml-ElementList.html @@ -163,7 +163,7 @@ like an XmlElement but renders multiple XML tags (not wrapped in a ).

diff --git a/module-badge-maker_lib_xml-XmlElement.html b/module-badge-maker_lib_xml-XmlElement.html index b9b8ecc264..1b13058600 100644 --- a/module-badge-maker_lib_xml-XmlElement.html +++ b/module-badge-maker_lib_xml-XmlElement.html @@ -474,7 +474,7 @@ element will be rendered as a self-closing element.


diff --git a/module-badge-maker_lib_xml.html b/module-badge-maker_lib_xml.html index 4c354e1fd2..c2cf5c6b70 100644 --- a/module-badge-maker_lib_xml.html +++ b/module-badge-maker_lib_xml.html @@ -86,7 +86,7 @@
diff --git a/module-core_base-service_base-BaseService.html b/module-core_base-service_base-BaseService.html index 3de6b6e956..88cdb4e524 100644 --- a/module-core_base-service_base-BaseService.html +++ b/module-core_base-service_base-BaseService.html @@ -743,7 +743,7 @@ defined in this.route.pattern or this.route.capture


diff --git a/module-core_base-service_base-graphql-BaseGraphqlService.html b/module-core_base-service_base-graphql-BaseGraphqlService.html index b87d126592..721a552e94 100644 --- a/module-core_base-service_base-graphql-BaseGraphqlService.html +++ b/module-core_base-service_base-graphql-BaseGraphqlService.html @@ -829,7 +829,7 @@ an InvalidResponse.


diff --git a/module-core_base-service_base-graphql.html b/module-core_base-service_base-graphql.html index c69568620a..8cee9fee8d 100644 --- a/module-core_base-service_base-graphql.html +++ b/module-core_base-service_base-graphql.html @@ -83,7 +83,7 @@
diff --git a/module-core_base-service_base-json-BaseJsonService.html b/module-core_base-service_base-json-BaseJsonService.html index a6a658a996..0633e76465 100644 --- a/module-core_base-service_base-json-BaseJsonService.html +++ b/module-core_base-service_base-json-BaseJsonService.html @@ -674,7 +674,7 @@ This can be used to extend or override the
diff --git a/module-core_base-service_base-json.html b/module-core_base-service_base-json.html index a7c26858e0..c957950ff4 100644 --- a/module-core_base-service_base-json.html +++ b/module-core_base-service_base-json.html @@ -83,7 +83,7 @@
diff --git a/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html b/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html index b0678ac690..6b598aba13 100644 --- a/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html +++ b/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html @@ -765,7 +765,7 @@ This can be used to extend or override the
diff --git a/module-core_base-service_base-svg-scraping.html b/module-core_base-service_base-svg-scraping.html index dbf0a8528c..94741731c8 100644 --- a/module-core_base-service_base-svg-scraping.html +++ b/module-core_base-service_base-svg-scraping.html @@ -83,7 +83,7 @@
diff --git a/module-core_base-service_base-xml-BaseXmlService.html b/module-core_base-service_base-xml-BaseXmlService.html index 6cf119342a..ab85f78d23 100644 --- a/module-core_base-service_base-xml-BaseXmlService.html +++ b/module-core_base-service_base-xml-BaseXmlService.html @@ -557,7 +557,7 @@ This can be used to extend or override the
diff --git a/module-core_base-service_base-xml.html b/module-core_base-service_base-xml.html index 39b7283cd3..3cf43aea98 100644 --- a/module-core_base-service_base-xml.html +++ b/module-core_base-service_base-xml.html @@ -83,7 +83,7 @@
diff --git a/module-core_base-service_base-yaml-BaseYamlService.html b/module-core_base-service_base-yaml-BaseYamlService.html index 2db7c7c847..7e8cee176e 100644 --- a/module-core_base-service_base-yaml-BaseYamlService.html +++ b/module-core_base-service_base-yaml-BaseYamlService.html @@ -554,7 +554,7 @@ This can be used to extend or override the
diff --git a/module-core_base-service_base-yaml.html b/module-core_base-service_base-yaml.html index e695bd26d6..8b55e3deb3 100644 --- a/module-core_base-service_base-yaml.html +++ b/module-core_base-service_base-yaml.html @@ -83,7 +83,7 @@
diff --git a/module-core_base-service_base.html b/module-core_base-service_base.html index 7de83b975c..ce7d3b27cf 100644 --- a/module-core_base-service_base.html +++ b/module-core_base-service_base.html @@ -219,7 +219,7 @@ configured credentials are present.

Source:
@@ -438,7 +438,7 @@ configured credentials are present.

Source:
@@ -631,7 +631,7 @@ configured credentials are present.

Source:
@@ -897,7 +897,7 @@ users locate relevant badges.

Source:
@@ -1130,7 +1130,7 @@ when the parameter is absent. (Note that in,
Source:
@@ -1166,7 +1166,7 @@ when the parameter is absent. (Note that in,
diff --git a/module-core_base-service_errors-Deprecated.html b/module-core_base-service_errors-Deprecated.html index a2f4f07957..54a6ce8a9b 100644 --- a/module-core_base-service_errors-Deprecated.html +++ b/module-core_base-service_errors-Deprecated.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-ImproperlyConfigured.html b/module-core_base-service_errors-ImproperlyConfigured.html index f26497f1be..808da3bea0 100644 --- a/module-core_base-service_errors-ImproperlyConfigured.html +++ b/module-core_base-service_errors-ImproperlyConfigured.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-Inaccessible.html b/module-core_base-service_errors-Inaccessible.html index f61611936b..c7c71c1b74 100644 --- a/module-core_base-service_errors-Inaccessible.html +++ b/module-core_base-service_errors-Inaccessible.html @@ -212,7 +212,7 @@ or to wrap a 5XX response


diff --git a/module-core_base-service_errors-InvalidParameter.html b/module-core_base-service_errors-InvalidParameter.html index 66f1c5a5c0..2f9030c4a5 100644 --- a/module-core_base-service_errors-InvalidParameter.html +++ b/module-core_base-service_errors-InvalidParameter.html @@ -212,7 +212,7 @@ is invalid or unexpected


diff --git a/module-core_base-service_errors-InvalidResponse.html b/module-core_base-service_errors-InvalidResponse.html index 179997f00a..96a8dfdb69 100644 --- a/module-core_base-service_errors-InvalidResponse.html +++ b/module-core_base-service_errors-InvalidResponse.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-NotFound.html b/module-core_base-service_errors-NotFound.html index 1a300db35d..b7468f8195 100644 --- a/module-core_base-service_errors-NotFound.html +++ b/module-core_base-service_errors-NotFound.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-ShieldsRuntimeError.html b/module-core_base-service_errors-ShieldsRuntimeError.html index 6d03c9d87c..8c42a37035 100644 --- a/module-core_base-service_errors-ShieldsRuntimeError.html +++ b/module-core_base-service_errors-ShieldsRuntimeError.html @@ -384,7 +384,7 @@ should override this method.


diff --git a/module-core_base-service_errors.html b/module-core_base-service_errors.html index bb27dd69a1..7682f0f070 100644 --- a/module-core_base-service_errors.html +++ b/module-core_base-service_errors.html @@ -354,7 +354,7 @@ badge when we catch and render the exception (Optional)


diff --git a/module-core_base-service_graphql.html b/module-core_base-service_graphql.html index 96ef829118..e3b5644dbd 100644 --- a/module-core_base-service_graphql.html +++ b/module-core_base-service_graphql.html @@ -254,7 +254,7 @@ but can't use that due to incorrect packaging.


diff --git a/module-core_server_server-Server.html b/module-core_server_server-Server.html index 6da07ae912..f6e0e57319 100644 --- a/module-core_server_server-Server.html +++ b/module-core_server_server-Server.html @@ -152,7 +152,7 @@ publicConfigSchema and privateConfigSchema

Source:
@@ -269,7 +269,7 @@ publicConfigSchema and privateConfigSchema

Source:
@@ -361,7 +361,7 @@ to https://shields.io/ )

Source:
@@ -450,7 +450,7 @@ load each service and register a Scoutcamp route for each service.

Source:
@@ -541,7 +541,7 @@ Start listening for requests on this.baseUrl()

Source:
@@ -629,7 +629,7 @@ Start listening for requests on this.baseUrl()

Source:
@@ -681,7 +681,7 @@ Start listening for requests on this.baseUrl()


diff --git a/module-core_server_server.html b/module-core_server_server.html index 1d193e0f4d..11e501b672 100644 --- a/module-core_server_server.html +++ b/module-core_server_server.html @@ -83,7 +83,7 @@
diff --git a/module-core_service-test-runner_create-service-tester.html b/module-core_service-test-runner_create-service-tester.html index bd1ec0bf68..b2ba6f9574 100644 --- a/module-core_service-test-runner_create-service-tester.html +++ b/module-core_service-test-runner_create-service-tester.html @@ -194,7 +194,7 @@ service.


diff --git a/module-core_service-test-runner_icedfrisby-shields.html b/module-core_service-test-runner_icedfrisby-shields.html index 43413eb96b..eca99c502f 100644 --- a/module-core_service-test-runner_icedfrisby-shields.html +++ b/module-core_service-test-runner_icedfrisby-shields.html @@ -250,7 +250,7 @@
diff --git a/module-core_service-test-runner_infer-pull-request.html b/module-core_service-test-runner_infer-pull-request.html index 68648448c9..762def8596 100644 --- a/module-core_service-test-runner_infer-pull-request.html +++ b/module-core_service-test-runner_infer-pull-request.html @@ -470,7 +470,7 @@ of a pull request from the environment variables.


diff --git a/module-core_service-test-runner_runner-Runner.html b/module-core_service-test-runner_runner-Runner.html index f6d114f6da..2e3c148c15 100644 --- a/module-core_service-test-runner_runner-Runner.html +++ b/module-core_service-test-runner_runner-Runner.html @@ -568,7 +568,7 @@ overridden on instances.


diff --git a/module-core_service-test-runner_runner.html b/module-core_service-test-runner_runner.html index 5a1be47b7b..e20102cb50 100644 --- a/module-core_service-test-runner_runner.html +++ b/module-core_service-test-runner_runner.html @@ -83,7 +83,7 @@
diff --git a/module-core_service-test-runner_service-tester-ServiceTester.html b/module-core_service-test-runner_service-tester-ServiceTester.html index 3f4c76bfb3..6c6d71be08 100644 --- a/module-core_service-test-runner_service-tester-ServiceTester.html +++ b/module-core_service-test-runner_service-tester-ServiceTester.html @@ -1126,7 +1126,7 @@ the CLI, or directly on the tester.


diff --git a/module-core_service-test-runner_service-tester.html b/module-core_service-test-runner_service-tester.html index 338dbf4765..cd9ac98b3b 100644 --- a/module-core_service-test-runner_service-tester.html +++ b/module-core_service-test-runner_service-tester.html @@ -83,7 +83,7 @@
diff --git a/module-core_service-test-runner_services-for-title.html b/module-core_service-test-runner_services-for-title.html index 33ae4822a5..93f1df52cd 100644 --- a/module-core_service-test-runner_services-for-title.html +++ b/module-core_service-test-runner_services-for-title.html @@ -242,7 +242,7 @@ as an array of strings.


diff --git a/module-core_token-pooling_token-pool-Token.html b/module-core_token-pooling_token-pool-Token.html index e0f91baa1d..fc76ff1af6 100644 --- a/module-core_token-pooling_token-pool-Token.html +++ b/module-core_token-pooling_token-pool-Token.html @@ -327,7 +327,7 @@ stable ordering for a valid priority queue.

Source:
@@ -415,7 +415,7 @@ stable ordering for a valid priority queue.

Source:
@@ -503,7 +503,7 @@ stable ordering for a valid priority queue.

Source:
@@ -663,7 +663,7 @@ stable ordering for a valid priority queue.

Source:
@@ -715,7 +715,7 @@ stable ordering for a valid priority queue.


diff --git a/module-core_token-pooling_token-pool-TokenPool.html b/module-core_token-pooling_token-pool-TokenPool.html index b850595136..31de7b1c0b 100644 --- a/module-core_token-pooling_token-pool-TokenPool.html +++ b/module-core_token-pooling_token-pool-TokenPool.html @@ -151,7 +151,7 @@ on to the next one.

Source:
@@ -331,7 +331,7 @@ on to the next one.

Source:
@@ -559,7 +559,7 @@ on to the next one.

Source:
@@ -718,7 +718,7 @@ on to the next one.

Source:
@@ -825,7 +825,7 @@ indicate it should not be reused.

Source:
@@ -899,7 +899,7 @@ indicate it should not be reused.


diff --git a/module-core_token-pooling_token-pool.html b/module-core_token-pooling_token-pool.html index 7a28ef9083..a8e5c05d75 100644 --- a/module-core_token-pooling_token-pool.html +++ b/module-core_token-pooling_token-pool.html @@ -249,7 +249,7 @@
diff --git a/module-services_dynamic_json-path.html b/module-services_dynamic_json-path.html index 54f73576bf..c09915bb92 100644 --- a/module-services_dynamic_json-path.html +++ b/module-services_dynamic_json-path.html @@ -542,7 +542,7 @@ This can be used to extend or override the
diff --git a/module-services_steam_steam-base-BaseSteamAPI.html b/module-services_steam_steam-base-BaseSteamAPI.html index e0d97d5b87..dcd3899cc4 100644 --- a/module-services_steam_steam-base-BaseSteamAPI.html +++ b/module-services_steam_steam-base-BaseSteamAPI.html @@ -380,7 +380,7 @@
diff --git a/module-services_steam_steam-base.html b/module-services_steam_steam-base.html index 6f4355e47c..4689e08dee 100644 --- a/module-services_steam_steam-base.html +++ b/module-services_steam_steam-base.html @@ -83,7 +83,7 @@
diff --git a/services_downloads.js.html b/services_downloads.js.html index 85bc762d56..27b73b1f4a 100644 --- a/services_downloads.js.html +++ b/services_downloads.js.html @@ -94,7 +94,7 @@ export { renderDownloadsBadge }
diff --git a/services_dynamic_json-path.js.html b/services_dynamic_json-path.js.html index 41dbdfa78e..49009cf4c1 100644 --- a/services_dynamic_json-path.js.html +++ b/services_dynamic_json-path.js.html @@ -120,7 +120,7 @@ export default superclass =>
diff --git a/services_packagist_packagist-base.js.html b/services_packagist_packagist-base.js.html index 998f8ddea0..a861be827f 100644 --- a/services_packagist_packagist-base.js.html +++ b/services_packagist_packagist-base.js.html @@ -150,7 +150,7 @@ export {
diff --git a/services_steam_steam-base.js.html b/services_steam_steam-base.js.html index 11e1d565fa..78d93079f8 100644 --- a/services_steam_steam-base.js.html +++ b/services_steam_steam-base.js.html @@ -98,7 +98,7 @@ export default BaseSteamAPI
diff --git a/services_test-validators.js.html b/services_test-validators.js.html index c84f3f3143..4c4b2ff05e 100644 --- a/services_test-validators.js.html +++ b/services_test-validators.js.html @@ -223,7 +223,7 @@ export {
diff --git a/tutorial-TUTORIAL.html b/tutorial-TUTORIAL.html index 1bc15f3639..0b9c475778 100644 --- a/tutorial-TUTORIAL.html +++ b/tutorial-TUTORIAL.html @@ -377,7 +377,7 @@ will review your contribution.
diff --git a/tutorial-adding-new-config-values.html b/tutorial-adding-new-config-values.html index 30376387e0..1aff99f0cd 100644 --- a/tutorial-adding-new-config-values.html +++ b/tutorial-adding-new-config-values.html @@ -60,7 +60,7 @@
diff --git a/tutorial-badge-urls.html b/tutorial-badge-urls.html index fdbbc3eb32..bc2460e98f 100644 --- a/tutorial-badge-urls.html +++ b/tutorial-badge-urls.html @@ -77,7 +77,7 @@ badge is for issues, and the parameters are :user/:repo.
diff --git a/tutorial-code-walkthrough.html b/tutorial-code-walkthrough.html index 12bbca0c4f..4039b9a2a2 100644 --- a/tutorial-code-walkthrough.html +++ b/tutorial-code-walkthrough.html @@ -240,7 +240,7 @@ result over the HTTPS connection.
diff --git a/tutorial-deprecating-badges.html b/tutorial-deprecating-badges.html index de1f230c77..4c756d7ff0 100644 --- a/tutorial-deprecating-badges.html +++ b/tutorial-deprecating-badges.html @@ -140,7 +140,7 @@ t.create('no longer available (previously number of layers)')
diff --git a/tutorial-input-validation.html b/tutorial-input-validation.html index 3cac97ed5b..e68ee78611 100644 --- a/tutorial-input-validation.html +++ b/tutorial-input-validation.html @@ -103,7 +103,7 @@
diff --git a/tutorial-json-format.html b/tutorial-json-format.html index cb631a573c..54788deb7d 100644 --- a/tutorial-json-format.html +++ b/tutorial-json-format.html @@ -60,7 +60,7 @@ if you have any queries regarding the JSON format.


diff --git a/tutorial-logos.html b/tutorial-logos.html index fea417ab8f..339060c9f8 100644 --- a/tutorial-logos.html +++ b/tutorial-logos.html @@ -96,7 +96,7 @@
diff --git a/tutorial-performance-testing.html b/tutorial-performance-testing.html index b3b73f925f..6f0dbca71a 100644 --- a/tutorial-performance-testing.html +++ b/tutorial-performance-testing.html @@ -76,7 +76,7 @@ node --prof-process --preprocess -j isolate-00000244AB6ED3B0-11920-v8.log | flam
diff --git a/tutorial-production-hosting.html b/tutorial-production-hosting.html index 8411882ba6..a1a793098d 100644 --- a/tutorial-production-hosting.html +++ b/tutorial-production-hosting.html @@ -253,7 +253,7 @@ the server. It's generously donated by Sent
diff --git a/tutorial-releases.html b/tutorial-releases.html index b945a3af40..76d7ebea14 100644 --- a/tutorial-releases.html +++ b/tutorial-releases.html @@ -79,7 +79,7 @@
diff --git a/tutorial-self-hosting.html b/tutorial-self-hosting.html index 606d9551e5..ec28c3ca2a 100644 --- a/tutorial-self-hosting.html +++ b/tutorial-self-hosting.html @@ -176,7 +176,7 @@ Set public.requireCloudflare: true.


diff --git a/tutorial-server-secrets.html b/tutorial-server-secrets.html index 91fa58240b..45abffdc11 100644 --- a/tutorial-server-secrets.html +++ b/tutorial-server-secrets.html @@ -164,6 +164,19 @@ access to a private Jenkins CI instance.

Provide a username and password to give your self-hosted Shields installation access to a private JIRA instance.

+

Libraries.io/Bower

+ +

Note that the Bower badges utilize the Libraries.io API, so use this secret for both Libraries.io badges and/or Bower badges.

+

Just like the *_ORIGINS type secrets, this value can accept a single token as a string, or a group of tokens provided as an array of strings. For example:

+
private:
+  librariesio_tokens: my-token
+## Or
+private:
+  librariesio_tokens: [my-token some-other-token]
+
+

When using the environment variable with multiple tokens, be sure to use a space to separate the tokens, e.g. LIBRARIESIO_TOKENS="my-token some-other-token"

Nexus