From e6112122ab389ec06f361ee9927466dac5806db3 Mon Sep 17 00:00:00 2001 From: Julien Duchesne Date: Tue, 1 Nov 2022 09:28:33 -0400 Subject: [PATCH] Pull stdlib content from v0.19.0 (#82) This should add the `splitLimitR`, `all` and `any` functions to autocomplete + hover --- pkg/stdlib/stdlib-content.jsonnet | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/stdlib/stdlib-content.jsonnet b/pkg/stdlib/stdlib-content.jsonnet index 369aaa4..56eb282 100644 --- a/pkg/stdlib/stdlib-content.jsonnet +++ b/pkg/stdlib/stdlib-content.jsonnet @@ -385,7 +385,7 @@ local html = import 'html.libsonnet'; { name: 'splitLimitR', params: ['str', 'c', 'maxsplits'], - availableSince: 'upcoming', + availableSince: 'v0.19.0', description: 'As std.splitLimit(str, c, maxsplits) but will split from right to left.', examples: [ { @@ -1286,7 +1286,7 @@ local html = import 'html.libsonnet'; { name: 'all', params: ['arr'], - availableSince: 'upcoming', + availableSince: 'v0.19.0', description: html.paragraphs([ ||| Return true if all elements of arr is true, false otherwise. all([]) evaluates to true. @@ -1299,7 +1299,7 @@ local html = import 'html.libsonnet'; { name: 'any', params: ['arr'], - availableSince: 'upcoming', + availableSince: 'v0.19.0', description: html.paragraphs([ ||| Return true if any element of arr is true, false otherwise. any([]) evaluates to false.