Network Working Group | B. Claise |
Internet-Draft | J. Clarke, Ed. |
Intended status: Standards Track | R. Rahman |
Expires: September 18, 2020 | R. Wilton, Ed. |
Cisco Systems, Inc. | |
B. Lengyel | |
Ericsson | |
J. Sterne | |
Nokia | |
K. D'Souza | |
AT&T | |
March 17, 2020 |
YANG Semantic Versioning
draft-ietf-netmod-yang-semver-00
This document specifies a scheme for applying a modified set of semantic versioning rules to revisions of YANG modules. Additionally, this document defines a revision label for this modified semver scheme based on the specification in draft-verdt-netmod-yang-module-versioning.
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."
This Internet-Draft will expire on September 18, 2020.
Copyright (c) 2020 IETF Trust and the persons identified as the document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.
[I-D.verdt-netmod-yang-module-versioning] puts forth a number of concepts relating to modified rules for updating modules, a means to signal when a new revision of a module has non-backwards-compatible (NBC) changes compared to its previous revision, and a versioning scheme that uses the revision history as a lineage for determining from where a specific revision of a YANG module is derived. Additionally, section 3.3 of [I-D.verdt-netmod-yang-module-versioning] defines a revision label which can be used as an overlay or alias to provide additional context or an additional way to refer to a specific revision.
This document defines a labeling scheme that uses modified [semver] rules for YANG artifacts (i.e., YANG modules and YANG packages [I-D.rwilton-netmod-yang-packages]) as well as the revision label definition for using this scheme. The goal of this is to add a human readble version label that provides compatibility information for the YANG artifact without one needing to compare or parse its body. The label and rules defined herein represent the RECOMMENDED revision label scheme for IETF YANG artifacts.
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.
Additionally, this document uses the following terminology:
This section defines YANG Semantic Versioning, explains how it is used with YANG artifacts, and the rules associated with changing a artifact's semantic version number when its contents are updated.
YANG artifacts that employ semantic versioning MUST use a version string (e.g., in revision-label or as a package version) that corresponds to the following pattern: X.Y.Zv. Where:
Additionally, [semver] defines two specific types of metadata that may be appended to a semantic version string. Pre-release metadata MAY be appended to a semver string after a trailing '-' character. Build metadata MAY be appended after a trailing '+' character. If both pre-release and build metadata are present, then build metadata MUST follow pre-release metadata. These optional elements MUST be ignored by YANG semver parsers, but are allowed in order to support all of the [semver] rules. Thus, a version lineage that follows strict [semver] rules is allowed for a YANG artifact.
Other version schemes MUST NOT use version strings that match this same pattern. For example, they may choose to use leading characters to distinguish themselves from YANG semver.
A YANG module is defined in this document which contains single typedef that formally specifies this version pattern.
This document defines the YANG semantic versioning scheme that is used for YANG artifacts that employ the semver label. The versioning scheme has the following properties:
Every YANG module versioned using the YANG semantic versioning scheme specifies the module's semantic version number as the argument to the 'rev:revision-label' statement.
Because the rules put forth in [I-D.verdt-netmod-yang-module-versioning] are designed to work well with existing versions of YANG and allow for artifact authors to migrate to this scheme, it is not expected that all revisions of a given YANG artifact will have a semantic version label. For example, the first revision of a module may have been produced before this scheme was available.
YANG packages that make use of this semantic versioning scheme will have their semantic version as the value of the "revision_label" property.
As stated above, the YANG semver version number is expressed as a string of the form: 'X.Y.Zv'; where X, Y, and Z each represent non-negative integers smaller than 32768 without leading zeroes, and v represents an optional single character suffix: 'm' or 'M'.
The YANG articact name and YANG semantic version number uniquely identifies a revision of said artifact. There MUST NOT be multiple instances of a YANG artifact definition with the same name and YANG semantic version number but different content (and in the case of modules, different revision dates).
There MUST NOT be multiple versions of a YANG artifact that have the same MAJOR, MINOR and PATCH version numbers, but different patch modifier letters. E.g., artifact version "1.2.3M" MUST NOT be defined if artifact version "1.2.3" has already been defined.
The following diagram and explanation illustrates how YANG semantic version numbers work.
Example YANG semantic version numbers for an example artifact:
0.1.0 | 0.2.0 | 1.0.0 | \ | 1.1.0 -> 1.1.1m -> 1.1.2M | | | 1.2.0 -> 1.2.1M -> 1.2.2M | | | 1.3.0 -> 1.3.1 | 2.0.0 | 3.0.0 \ 3.1.0
Assume the tree diagram above illustrates how an example YANG module's version history might evolve. For example, the tree might represent the following changes, listed in chronological order from oldest revision to newest:
The partial ordering relationships based on the semantic versioning numbers can be defined as follows:
There is no ordering relationship between 1.1.1M and either 1.2.0 or 1.2.1M, except that they share the common ancestor of 1.1.0.
Looking at the version number alone, the module definition in 2.0.0 does not necessarily contain the contents of 1.3.0. However, the module revision history in 2.0.0 may well indicate that it was edited from module version 1.3.0.
When a new revision of an artifact is produced, then the following rules define how the YANG semantic version number for the new artifact revision is calculated, based on the changes between the two artifact revisions, and the YANG semantic version number of the base artifact revision from which the changes are derived:
Below is a sample YANG module that uses the YANG semver revision label based on the rules defined in this document.
module yang-module-name { namespace "name-space"; prefix "prefix-name"; import ietf-yang-revisions { prefix "rev"; } description "to be completed"; revision 2018-02-28 { description "Added leaf 'wobble'"; rev:revision-label "3.1.0"; } revision 2017-12-31 { description "Rename 'baz' to 'bar', added leaf 'wibble'"; rev:revision-label "3.0.0"; rev:nbc-changes; } revision 2017-10-30 { description "Change the module structure"; rev:revision-label "2.0.0"; rev:nbc-changes; } revision 2017-08-30 { description "Clarified description of 'foo-64' leaf"; rev:revision-label "1.3.1"; } revision 2017-07-30 { description "Added leaf foo-64"; rev:revision-label "1.3.0"; } revision 2017-04-20 { description "Add new functionality, leaf 'baz'"; rev:revision-label "1.2.0"; } revision 2017-04-03 { description "Add new functionality, leaf 'foo'"; rev:revision-label "1.1.0"; } revision 2017-04-03 { description "First release version."; rev:revision-label "1.0.0"; } // Note: semver rules do not apply to 0.X.Y labels. revision 2017-01-30 { description "NBC changes to initial revision"; semver:module-version "0.2.0"; } revision 2017-01-26 { description "Initial module version"; semver:module-version "0.1.0"; } //YANG module definition starts here
Below is an example YANG package that uses the semver revision label based on the rules defined in this document.
{ "ietf-yang-instance-data:instance-data-set": { "name": "example-yang-pkg", "target-ptr": "TBD", "timestamp": "2018-09-06T17:00:00Z", "description": "Example IETF package definition", "content-data": { "ietf-yang-package:yang-package": { "name": "example-yang-pkg", "version": "1.3.1", ... }
[I-D.verdt-netmod-yang-module-versioning] allows for imports to be done based on a module or a derived revision of a module. The rev:revision-or-derived statement can specify either a revision date or a revision label. When importing by semver, the YANG semver revision label value MAY be used as an argument to rev:revision-or-derived. In so, any module which has that semver label as its latest revision label or has that label in its revision history can be used to satisfy the import requirement. For example:
import example-module { rev:revision-or-derived "3.0.0"; }
Note: the import lookup does not stop when a non-backward-compatible change is encountered. That is, if module B imports a module A at or derived from version 2.0.0, resolving that import will pass through a revision of module A with version 2.1.0M in order to determine if the present instance of module A derives from 2.0.0.
This YANG module contains the typedef for the YANG semantic version.
<CODE BEGINS> file "ietf-yang-semver@2019-09-06.yang" module ietf-yang-semver { yang-version 1.1; namespace "urn:ietf:params:xml:ns:yang:ietf-yang-semver"; prefix yangver; organization "IETF NETMOD (Network Modeling) Working Group"; contact "WG Web: <http://tools.ietf.org/wg/netmod/> WG List: <mailto:netmod@ietf.org> Author: Joe Clarke <mailto:jclarke@cisco.com>"; description "This module provides type and grouping definitions for YANG packages. Copyright (c) 2019 IETF Trust and the persons identified as authors of the code. All rights reserved. Redistribution and use in source and binary forms, with or without modification, is permitted pursuant to, and subject to the license terms contained in, the Simplified BSD License set forth in Section 4.c of the IETF Trust's Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info). This version of this YANG module is part of RFC XXXX; see the RFC itself for full legal notices."; // RFC Ed.: update the date below with the date of RFC publication // and remove this note. // RFC Ed.: replace XXXX with actual RFC number and remove this // note. revision 2019-09-06 { description "Initial revision"; reference "RFC XXXX: YANG Semantic Versioning."; } /* * Typedefs */ typedef version { type string { pattern '\d+[.]\d+[.]\d+[mM]?(-[\w\d.]+)?([+][\w\d\.]+)?'; } description "Represents a YANG semantic version number. Note: additional rules apply to the dot-separated numeric identifiers which are spelled out in the reference for this typedef."; reference "RFC XXXX: YANG Semantic Versioning."; } } <CODE ENDS>
This document grew out of the YANG module versioning design team that started after IETF 101. The design team consists of the following members whom have worked on the YANG versioning project:
The initial revision of this document was refactored and built upon [I-D.clacla-netmod-yang-model-update].
Discussons on the use of Semver for YANG versioning has been held with authors of the OpenConfig YANG models based on their own [openconfigsemver]. We would like thank both Anees Shaikh and Rob Shakir for their input into this problem space.
The document does not define any new protocol or data model. There are no security impacts.
None.
[I-D.verdt-netmod-yang-module-versioning] | Claise, B., Clarke, J., Rahman, R., Wilton, R., Lengyel, B., Sterne, J. and K. D'Souza, "Updated YANG Module Revision Handling", Internet-Draft draft-verdt-netmod-yang-module-versioning-01, October 2019. |
[RFC2119] | Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, March 1997. |
[RFC7895] | Bierman, A., Bjorklund, M. and K. Watsen, "YANG Module Library", RFC 7895, DOI 10.17487/RFC7895, June 2016. |
[RFC8174] | Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, May 2017. |
[RFC8525] | Bierman, A., Bjorklund, M., Schoenwaelder, J., Watsen, K. and R. Wilton, "YANG Library", RFC 8525, DOI 10.17487/RFC8525, March 2019. |
[I-D.clacla-netmod-yang-model-update] | Claise, B., Clarke, J., Lengyel, B. and K. D'Souza, "New YANG Module Update Procedure", Internet-Draft draft-clacla-netmod-yang-model-update-06, July 2018. |
[I-D.ietf-netmod-yang-instance-file-format] | Lengyel, B. and B. Claise, "YANG Instance Data File Format", Internet-Draft draft-ietf-netmod-yang-instance-file-format-08, March 2020. |
[I-D.rwilton-netmod-yang-packages] | Wilton, R., Rahman, R., Clarke, J., Sterne, J. and W. Bo, "YANG Packages", Internet-Draft draft-rwilton-netmod-yang-packages-03, February 2020. |
[openconfigsemver] | "Semantic Versioning for Openconfig Models" |
[semver] | "Semantic Versioning 2.0.0" |