Skip to content

Commit 0ab3f56

Browse files
authored
Add the 'deprecated:' attribute to the recently deprecated 'z_os' enum value (#2479)
1 parent 2621f69 commit 0ab3f56

File tree

6 files changed

+23
-4
lines changed

6 files changed

+23
-4
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Use this changelog template to create an entry for release notes.
2+
#
3+
# If your change doesn't affect end users you should instead start
4+
# your pull request title with [chore] or use the "Skip Changelog" label.
5+
6+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
7+
change_type: deprecation
8+
9+
# The name of the area of concern in the attributes-registry, (e.g. http, cloud, db)
10+
component: os
11+
12+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
13+
note: Adds the 'deprecated:' tag/attribute to the `z_os` enum value of `os.type`. This value was recently deprecated in v1.35.0.
14+
15+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
16+
# The values here must be integers.
17+
issues: [2479]
18+
19+
# (Optional) One or more lines of additional information to render under the primary note.
20+
# These lines will be padded with 2 spaces and then inserted directly into the document.
21+
# Use pipe (|) for multiline entries.
22+
subtext:

docs/registry/attributes/os.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,4 @@ The operating system (OS) on which the process represented by this resource is r
3131
| `openbsd` | OpenBSD | ![Development](https://img.shields.io/badge/-development-blue) |
3232
| `solaris` | SunOS, Oracle Solaris | ![Development](https://img.shields.io/badge/-development-blue) |
3333
| `windows` | Microsoft Windows | ![Development](https://img.shields.io/badge/-development-blue) |
34-
| `z_os` | Deprecated. Use `zos` instead. | ![Development](https://img.shields.io/badge/-development-blue) |
3534
| `zos` | IBM z/OS | ![Development](https://img.shields.io/badge/-development-blue) |

docs/registry/entities/os.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
| `openbsd` | OpenBSD | ![Development](https://img.shields.io/badge/-development-blue) |
5151
| `solaris` | SunOS, Oracle Solaris | ![Development](https://img.shields.io/badge/-development-blue) |
5252
| `windows` | Microsoft Windows | ![Development](https://img.shields.io/badge/-development-blue) |
53-
| `z_os` | Deprecated. Use `zos` instead. | ![Development](https://img.shields.io/badge/-development-blue) |
5453
| `zos` | IBM z/OS | ![Development](https://img.shields.io/badge/-development-blue) |
5554

5655

docs/resource/os.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ In case of virtualized environments, this is the operating system as it is obser
4848
| `openbsd` | OpenBSD | ![Development](https://img.shields.io/badge/-development-blue) |
4949
| `solaris` | SunOS, Oracle Solaris | ![Development](https://img.shields.io/badge/-development-blue) |
5050
| `windows` | Microsoft Windows | ![Development](https://img.shields.io/badge/-development-blue) |
51-
| `z_os` | Deprecated. Use `zos` instead. | ![Development](https://img.shields.io/badge/-development-blue) |
5251
| `zos` | IBM z/OS | ![Development](https://img.shields.io/badge/-development-blue) |
5352

5453
<!-- markdownlint-restore -->

docs/resource/zos.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ The following table describes how to populate the operating system attributes on
9797
| `openbsd` | OpenBSD | ![Development](https://img.shields.io/badge/-development-blue) |
9898
| `solaris` | SunOS, Oracle Solaris | ![Development](https://img.shields.io/badge/-development-blue) |
9999
| `windows` | Microsoft Windows | ![Development](https://img.shields.io/badge/-development-blue) |
100-
| `z_os` | Deprecated. Use `zos` instead. | ![Development](https://img.shields.io/badge/-development-blue) |
101100
| `zos` | IBM z/OS | ![Development](https://img.shields.io/badge/-development-blue) |
102101

103102
<!-- markdownlint-restore -->

model/os/registry.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ groups:
5454
- id: z_os
5555
value: 'z_os'
5656
brief: "Deprecated. Use `zos` instead."
57+
deprecated: "Replaced by `zos`."
5758
stability: development
5859
- id: zos
5960
value: 'zos'

0 commit comments

Comments
 (0)