Skip to content

Commit e7c60cd

Browse files
chore(deps): update dependency io_bazel_stardoc to v0.5.3 (#147)
* chore(deps): update dependency io_bazel_stardoc to v0.5.3 * Update sources Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Chuck Grindel <[email protected]>
1 parent c4845e3 commit e7c60cd

16 files changed

+53
-53
lines changed

deps.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ def _bazeldoc_dependencies():
88
maybe(
99
http_archive,
1010
name = "io_bazel_stardoc",
11-
sha256 = "c9794dcc8026a30ff67cf7cf91ebe245ca294b20b071845d12c192afe243ad72",
11+
sha256 = "3fd8fec4ddec3c670bd810904e2e33170bedfe12f90adf943508184be458c8bb",
1212
urls = [
13-
"https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.0/stardoc-0.5.0.tar.gz",
14-
"https://github.com/bazelbuild/stardoc/releases/download/0.5.0/stardoc-0.5.0.tar.gz",
13+
"https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz",
14+
"https://github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz",
1515
],
1616
)
1717

doc/bazeldoc/build_rules_overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ On this page:
1414
* [write_header](#write_header)
1515

1616

17-
<a id="#doc_for_provs"></a>
17+
<a id="doc_for_provs"></a>
1818

1919
## doc_for_provs
2020

@@ -32,7 +32,7 @@ Defines targets for generating documentation, testing that the generated doc mat
3232
| <a id="doc_for_provs-doc_provs"></a>doc_provs | A <code>list</code> of document provider <code>struct</code> values as returned from <code>providers.create()</code>. | none |
3333

3434

35-
<a id="#write_file_list"></a>
35+
<a id="write_file_list"></a>
3636

3737
## write_file_list
3838

@@ -58,7 +58,7 @@ Defines a target that writes a documentation file that contains a header and a l
5858
None.
5959

6060

61-
<a id="#write_header"></a>
61+
<a id="write_header"></a>
6262

6363
## write_header
6464

doc/bazeldoc/providers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# `providers` API
33

44

5-
<a id="#providers.create"></a>
5+
<a id="providers.create"></a>
66

77
## providers.create
88

doc/bzlformat/rules_and_macros_overview.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ On this page:
1212
* [bzlformat_lint_test](#bzlformat_lint_test)
1313

1414

15-
<a id="#bzlformat_format"></a>
15+
<a id="bzlformat_format"></a>
1616

1717
## bzlformat_format
1818

@@ -27,14 +27,14 @@ Formats Starlark source files using Buildifier.
2727

2828
| Name | Description | Type | Mandatory | Default |
2929
| :------------- | :------------- | :------------- | :------------- | :------------- |
30-
| <a id="bzlformat_format-name"></a>name | A unique name for this target. | <a href="https://bazel.build/docs/build-ref.html#name">Name</a> | required | |
31-
| <a id="bzlformat_format-fix_lint_warnings"></a>fix_lint_warnings | Should lint warnings be fixed, if possible. | Boolean | optional | True |
32-
| <a id="bzlformat_format-output_suffix"></a>output_suffix | The suffix added to the formatted output filename. | String | optional | ".formatted" |
33-
| <a id="bzlformat_format-srcs"></a>srcs | The Starlark source files to format. | <a href="https://bazel.build/docs/build-ref.html#labels">List of labels</a> | required | |
34-
| <a id="bzlformat_format-warnings"></a>warnings | The warnings that should be fixed if lint fix is enabled. | String | optional | "all" |
30+
| <a id="bzlformat_format-name"></a>name | A unique name for this target. | <a href="https://bazel.build/concepts/labels#target-names">Name</a> | required | |
31+
| <a id="bzlformat_format-fix_lint_warnings"></a>fix_lint_warnings | Should lint warnings be fixed, if possible. | Boolean | optional | <code>True</code> |
32+
| <a id="bzlformat_format-output_suffix"></a>output_suffix | The suffix added to the formatted output filename. | String | optional | <code>".formatted"</code> |
33+
| <a id="bzlformat_format-srcs"></a>srcs | The Starlark source files to format. | <a href="https://bazel.build/concepts/labels">List of labels</a> | required | |
34+
| <a id="bzlformat_format-warnings"></a>warnings | The warnings that should be fixed if lint fix is enabled. | String | optional | <code>"all"</code> |
3535

3636

37-
<a id="#bzlformat_lint_test"></a>
37+
<a id="bzlformat_lint_test"></a>
3838

3939
## bzlformat_lint_test
4040

@@ -49,12 +49,12 @@ Lints the specified Starlark files using Buildifier.
4949

5050
| Name | Description | Type | Mandatory | Default |
5151
| :------------- | :------------- | :------------- | :------------- | :------------- |
52-
| <a id="bzlformat_lint_test-name"></a>name | A unique name for this target. | <a href="https://bazel.build/docs/build-ref.html#name">Name</a> | required | |
53-
| <a id="bzlformat_lint_test-srcs"></a>srcs | The Starlark source files to lint. | <a href="https://bazel.build/docs/build-ref.html#labels">List of labels</a> | required | |
54-
| <a id="bzlformat_lint_test-warnings"></a>warnings | The warnings that should be fixed if lint fix is enabled. | String | optional | "all" |
52+
| <a id="bzlformat_lint_test-name"></a>name | A unique name for this target. | <a href="https://bazel.build/concepts/labels#target-names">Name</a> | required | |
53+
| <a id="bzlformat_lint_test-srcs"></a>srcs | The Starlark source files to lint. | <a href="https://bazel.build/concepts/labels">List of labels</a> | required | |
54+
| <a id="bzlformat_lint_test-warnings"></a>warnings | The warnings that should be fixed if lint fix is enabled. | String | optional | <code>"all"</code> |
5555

5656

57-
<a id="#bzlformat_missing_pkgs"></a>
57+
<a id="bzlformat_missing_pkgs"></a>
5858

5959
## bzlformat_missing_pkgs
6060

@@ -92,7 +92,7 @@ following targets are defined:
9292
None.
9393

9494

95-
<a id="#bzlformat_pkg"></a>
95+
<a id="bzlformat_pkg"></a>
9696

9797
## bzlformat_pkg
9898

doc/bzllib/filter_srcs.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# `filter_srcs` Rule
33

44

5-
<a id="#filter_srcs"></a>
5+
<a id="filter_srcs"></a>
66

77
## filter_srcs
88

@@ -17,9 +17,9 @@ Filters the provided inputs using the specified criteria.
1717

1818
| Name | Description | Type | Mandatory | Default |
1919
| :------------- | :------------- | :------------- | :------------- | :------------- |
20-
| <a id="filter_srcs-name"></a>name | A unique name for this target. | <a href="https://bazel.build/docs/build-ref.html#name">Name</a> | required | |
21-
| <a id="filter_srcs-expected_count"></a>expected_count | The expected number of results. | Integer | optional | -1 |
22-
| <a id="filter_srcs-filename_ends_with"></a>filename_ends_with | The suffix of the path will be compared to this value. | String | optional | "" |
23-
| <a id="filter_srcs-srcs"></a>srcs | The inputs that will be evaluated by the filter. | <a href="https://bazel.build/docs/build-ref.html#labels">List of labels</a> | required | |
20+
| <a id="filter_srcs-name"></a>name | A unique name for this target. | <a href="https://bazel.build/concepts/labels#target-names">Name</a> | required | |
21+
| <a id="filter_srcs-expected_count"></a>expected_count | The expected number of results. | Integer | optional | <code>-1</code> |
22+
| <a id="filter_srcs-filename_ends_with"></a>filename_ends_with | The suffix of the path will be compared to this value. | String | optional | <code>""</code> |
23+
| <a id="filter_srcs-srcs"></a>srcs | The inputs that will be evaluated by the filter. | <a href="https://bazel.build/concepts/labels">List of labels</a> | required | |
2424

2525

doc/bzllib/src_utils.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# `src_utils` API
33

44

5-
<a id="#src_utils.is_path"></a>
5+
<a id="src_utils.is_path"></a>
66

77
## src_utils.is_path
88

@@ -24,7 +24,7 @@ Determines whether the provided string is a path.
2424
A `bool` specifying whether the `string` value looks like a path.
2525

2626

27-
<a id="#src_utils.is_label"></a>
27+
<a id="src_utils.is_label"></a>
2828

2929
## src_utils.is_label
3030

@@ -46,7 +46,7 @@ Determines whether the provided string is a label.
4646
A `bool` specifying whether the `string` value looks like a label.
4747

4848

49-
<a id="#src_utils.path_to_name"></a>
49+
<a id="src_utils.path_to_name"></a>
5050

5151
## src_utils.path_to_name
5252

doc/bzlrelease/create_release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# `create_release` Rule
33

44

5-
<a id="#create_release"></a>
5+
<a id="create_release"></a>
66

77
## create_release
88

doc/bzlrelease/generate_release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# `generate_release_notes` Rule
33

44

5-
<a id="#generate_release_notes"></a>
5+
<a id="generate_release_notes"></a>
66

77
## generate_release_notes
88

doc/bzlrelease/generate_workspace_snippet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# `generate_workspace_snippet` Rule
33

44

5-
<a id="#generate_workspace_snippet"></a>
5+
<a id="generate_workspace_snippet"></a>
66

77
## generate_workspace_snippet
88

doc/bzlrelease/hash_sha256.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# `hash_sha256` Rule
33

44

5-
<a id="#hash_sha256"></a>
5+
<a id="hash_sha256"></a>
66

77
## hash_sha256
88

@@ -17,7 +17,7 @@ Generates a SHA256 hash for the specified file and writes it to a file with the
1717

1818
| Name | Description | Type | Mandatory | Default |
1919
| :------------- | :------------- | :------------- | :------------- | :------------- |
20-
| <a id="hash_sha256-name"></a>name | A unique name for this target. | <a href="https://bazel.build/docs/build-ref.html#name">Name</a> | required | |
21-
| <a id="hash_sha256-src"></a>src | The file whose contents should be hashed. | <a href="https://bazel.build/docs/build-ref.html#labels">Label</a> | required | |
20+
| <a id="hash_sha256-name"></a>name | A unique name for this target. | <a href="https://bazel.build/concepts/labels#target-names">Name</a> | required | |
21+
| <a id="hash_sha256-src"></a>src | The file whose contents should be hashed. | <a href="https://bazel.build/concepts/labels">Label</a> | required | |
2222

2323

0 commit comments

Comments
 (0)