diff --git a/docs/diagrams/apiml-oidc-auth-seq.puml b/docs/diagrams/apiml-oidc-auth-seq.puml index 4b553ada1e..c151cea9fe 100644 --- a/docs/diagrams/apiml-oidc-auth-seq.puml +++ b/docs/diagrams/apiml-oidc-auth-seq.puml @@ -4,32 +4,40 @@ autonumber actor User actor "User Agent" as Agent -actor "Client App" as Client actor OIDC as OIDC actor "API ML GW" as GW User -> Agent: Do stuff -Agent -> Client: Open Client App -Client -> OIDC: Initiate OIDC flow [client_id, client_secret] -loop [MFA] +Agent -> GW: /gateway/oauth2/authorization/ +GW -> OIDC: Initiate OIDC flow [client_id, client_secret] +group MFA OIDC -> Agent: Request user credentials User <-> Agent: Provide credentials Agent -> OIDC: Validate credentials end -OIDC --> Client: Return Auth Code / JWTs[access,refresh,identity] -Client -> GW: Request resources [JWT AT] -group validate -GW -> GW: Validate AT -GW -> OIDC: Validate AT -end -alt Validation success -GW -> GW: Cache AT validity +OIDC --> GW: Return Auth Code / JWTs[access,refresh,identity] +GW -> Agent: Set-cookie access token +Agent -> GW: Request resources [access token] +GW -> GW: Validate access token +GW -> GW: Cache access token validity +group map user GW -> SAF: Map distributed ID to mainframe ID +end +alt mapping success GW -> GW: Create Zowe JWT -GW -> Service: call API service -Service --> GW: return Response +GW -> Service: Call API service with Zowe JWT +Service -> Service: Validate JWT +Service --> GW: Return Response +autonumber 14 1 +else mapping failure + +GW -> Service: call API service with access token +note left: Step 13 Create Zowe JWT was skipped +Service -> Service: Validate access token +Service --> GW: Return Response end -GW --> Client: Response -Client --> Agent: Response +autonumber 17 1 +GW --> Agent: Response + @enduml \ No newline at end of file diff --git a/docs/extend/extend-apiml/api-mediation-oidc-authentication.md b/docs/extend/extend-apiml/api-mediation-oidc-authentication.md index 1d5b3b6b39..a0c08c1763 100644 --- a/docs/extend/extend-apiml/api-mediation-oidc-authentication.md +++ b/docs/extend/extend-apiml/api-mediation-oidc-authentication.md @@ -3,91 +3,98 @@ :::info Required roles: system administrator, security administrator ::: -The OpenID/Connect ([OIDC](https://openid.net/specs/openid-connect-core-1_0.html)) protocol adds an authentication layer on top of the [OAuth2](https://www.rfc-editor.org/rfc/rfc6749) Authorization protocol. +The OpenID Connect ([OIDC](https://openid.net/specs/openid-connect-core-1_0.html)) protocol adds an identity layer on top of the [OAuth2](https://www.rfc-editor.org/rfc/rfc6749) Authorization protocol. -OIDC authentication, together with the z/OS [Identity Propagation](https://www.redbooks.ibm.com/redbooks/pdfs/sg247850.pdf) mechanism, is the foundation of the API ML Identity Federation. +OIDC authentication, together with the z/OS [Identity Propagation](https://www.redbooks.ibm.com/redbooks/pdfs/sg247850.pdf) mechanism, is the foundation of the API Mediation Layer (API ML) Identity Federation. In this article, OIDC is often referred to as the provider, while the token-related functionality is actually provided by the OAuth2 component of the OIDC implementation. -You can configure Zowe API ML to authenticate users by accepting Access Tokens issued by an external OIDC/OAuth2 provider. +You can configure Zowe API ML to authenticate users by accepting Access Tokens issued by an external OIDC provider. This configuration is useful in advanced deployments of Zowe where client applications need to access mainframe as well as enterprise/distributed systems while simultaneously offering single sign-on (SSO) across system boundaries. -This article details the API ML OIDC authentication functionality, and how to configure the OIDC Authentication feature. +This article details the API ML OIDC authentication functionality, and describes how to configure the OIDC Authentication feature. -:::note -The OIDC feature is currently unavailable on ACF2 systems. -::: - [Usage](#usage) - [Authentication flow](#authentication-flow) - [Prerequisites](#prerequisites) - - [OIDC provider](#oidc-provider-prerequisites) - [ESM configuration](#esm-configuration-prerequisites) - [API ML configuration](#api-ml-oidc-configuration) + - [OIDC client configuration](#oidc-client-configuration) + - [OIDC resource server configuration](#oidc-resource-server-configuration) - [Troubleshooting](#troubleshooting) ## Usage - -The OIDC protocol is used by API ML client applications to verify the identity of a user with a distributed OIDC provider trusted by the mainframe security manager. -After successful user login, the OIDC provider grants the client application a JWT Access Token along with an (JWT) Identity Token. -The client application can pass this Access Token with subsequent requests to mainframe services routed through the API ML Gateway. +API ML functions as an OIDC client application, enabling users to initiate the OIDC authentication flow. +After successful user login, the OIDC provider grants the client application a JWT Access Token along with a JWT Identity Token. +The access token is then returned to the user agent in the "apimlAuthenticationToken" cookie. +The user agent can pass this Access Token with subsequent requests to mainframe services routed through the API ML Gateway. The API ML Gateway then validates the OIDC Access Token. If the token is valid, the user identity from that token is mapped to the mainframe identity of the user. -The API ML Gateway can then create mainframe user credentials (JWT or a PassTicket) according to the service's authentication schema configuration. +The API ML Gateway can then create mainframe user credentials (e.g. JWT, PassTicket) according to the service's authentication schema configuration or forward a valid OIDC access token if the user is not mapped. The request is routed to the target API services with correct mainframe user credentials. ## Authentication Flow -The following diagram illustrates the interactions between the participants of the OIDC/OAuth2 based API ML authentication process. +The following diagram illustrates the interactions between the participants of the OIDC based API ML authentication process. ![APIML OIDC Workflow](../../images/api-mediation/apiml-oidc-auth-seq.png) -- When a user wants to access mainframe resources or services using the client application without valid authentication or an access token, the client redirects the user agent to the login end-point of the distributed OIDC provider. -- The user is asked to provide valid credentials (authentication factors). -- After successful validation of all authentication factors, the OIDC provider grants the client an Access Token. -- The client can then request from API ML Gateway the needed mainframe resources presenting the access token in the request. -- The Gateway validates the access token in two ways: - - By comparing the key ID of the token against the key IDs obtained from the authorization server's JWK keys endpoint (`oidc.validationType: JWK` or omited configuration (`oidc.validationType`)). - - By querying the UserInfo endpoint to verify the token's validity and retrieve user information (`oidc.validationType: endpoint`). -- The URL to the specific authorization server's JWK keys endpoint should be set using the property `jwks_uri`. If the access token is validated, the outcome is cached for a short time (20 sec by default). -- The JWK Keys obtained from the authorization server's endpoint are cached for a while to prevent repeated calls to the endpoint. The interval can be set using the property `jwks.refreshInternalHours` (The default value is one hour). -- In subsequent calls with the same token, the Gateway reuses the cached validation outcome. As such, round trips to the OIDC authorization server for JWK keys, UserInfo endpoint queries, and JWT Token validation are not required between short intervals when the client needs to access multiple resources in a row to complete a unit of work. -- The URL to the specific authorization server's UserInfo endpoint should be set using the property `userInfo_uri`. If the access token is validated, the outcome is cached for a short time (20 sec by default). -- The caching interval is configurable with a default value of 20 seconds, which is typically a sufficient amount of time to allow most client operations requiring multiple API requests to complete, while also providing adequate protection against unauthorized access. -- The API ML Gateway fetches the distributed user identity from the distributed access token and maps this user identity to the user mainframe identity using SAF. -- The API ML Gateway calls the requested mainframe service/s with mainframe user credentials (Zowe, SAF JWT, or PassTicket) which are expected by the target mainframe service. +### Workflow description between OICD participants -## Prerequisites +1. The user accesses the agent. +2. The user agent requests the client application without valid authentication or an access token. +3. The client redirects the user agent to the login end-point of the distributed OIDC provider. +4. The user is asked to provide valid credentials (authentication factors). +5. The user provides credentials. +6. The agent sends these credentials to the OIDC provider for validation. +7. After successful validation of all authentication factors, the OIDC provider grants the client an Access Token. +8. The client application replies with an access token in the `set-cookie` header. +9. The user agent can then request from API ML Gateway the needed mainframe resources presenting the access token in the request. +10. The Gateway validates the access token in one of two ways: + 1. By cryptographically validating the token using the public key retrieved from the authorization server's JSON Web Key Set (JWKS) endpoint, matching the token's key ID with the key IDs provided. (`components.gateway.apiml.security.oidc.validationType: JWK`). -Ensure that the following prerequisites are met: + **Notes:** + * The URL to the specific authorization server's JWKS endpoint should be set using the property `components.gateway.apiml.security.oidc.jwks.uri`. -- Users who require access to mainframe resources using OIDC authentication have a mainframe identity managed by SAF/ESM. -- Client application users have their distributed identity managed by the OIDC provider. For details, see the section [OIDC provider](#oidc-provider-prerequisites) in this topic. -- SAF/ESM is configured with mapping between the mainframe and distributed user identities. For details, see the section [ESM configuration](#esm-configuration-prerequisites) in this topic. -- If you are using Zowe release 2.14 or a later release, ensure that the API ML Gateway is configured to use the internal mapper functionality. For information about enabling the API ML mapper, see [Configure internal API ML mapper](../../user-guide/api-mediation/configuration-client-certificates.md#configure-internal-api-ml-mapper). Alternatively, enable ZSS in the Zowe installation, however using the internal mapper is the recommended method. ZSS is enabled by default. - -### OIDC provider prerequisites + * The interval can be set using the property `components.gateway.apiml.security.oidc.jwks.refreshInternalHours`. (The default value is one hour.) + + 2. By querying the `UserInfo` endpoint to verify the token's validity and retrieve user information (`components.gateway.apiml.security.oidc.validationType: endpoint`). + + **Note:** The URL to the specific authorization server's `UserInfo` endpoint should be set using the property `components.gateway.apiml.security.oidc.userInfo.uri`. +11. The Gateway caches the valid access token. +12. The Gateway maps the distributed identity from the access token to the z/OS identity. -- Client Application configuration in the OIDC provider +**When user mapping exists** - Depending on the OIDC provider and client application capabilities, configuration of the OIDC provider varies. -For example, web applications with a secure server side component can use `code grant authorization flow` and can be granted a Refresh Token, whereas a Single Page Application running entirely in the User Agent (browser) is more limited regarding its security capabilities. +13. The API ML Gateway generates mainframe user credentials (Zowe JWT, SAF IDT, or PassTicket) which are expected by the target mainframe service. +14. Calls the API with credentials. +15. Services validates generated mainframe credentials. +16. The requested data is returned. +17. The requested data is returned to the user agent. - :::tip - Consult your OIDC provider documentation for options and requirements available for your type of client application. - ::: +**When user mapping does not exist** -- Users have been assigned to the Client Application +14. The API ML Gateway calls the requested mainframe service/s with the access token in the `OIDC-token` header. +15. The service validates the `OIDC-token`. +16. The requested data is returned. +17. The requested data is returned to the user agent. - To access mainframe resources, users with a distributed authentication must either be directly assigned by the OIDC provider to the client application, or must be part of group which is allowed to work with the client application. +## Prerequisites + +Ensure that the following prerequisites are met: + +- Users who require access to mainframe resources using OIDC authentication have a mainframe identity managed by SAF/ESM. +- SAF/ESM is configured with mapping between the mainframe and distributed user identities. For details, see the section [ESM configuration](#esm-configuration-prerequisites) in this topic. + ### ESM configuration prerequisites The user identity mapping is defined as a distributed user identity mapping filter, which is maintained by the System Authorization Facility (SAF) / External Security Manager (ESM). A distributed identity consists of two parts: -- A distributed identity name -- A trusted registry which governs that identity +1. A distributed identity name +2. A trusted registry which governs that identity -Administrators can use the installed ESM functionality to create, delete, list, and query a distributed identity mapping filter or filters: +Administrators can use the installed ESM functionality to create, delete, list, and query a distributed identity mapping filter or filters. Use the commands specific to your ESM to create a distributed identity mapping filter. @@ -95,7 +102,8 @@ Use the commands specific to your ESM to create a distributed identity mapping f User specified parameters are presented in the section [Parameters in the ESM commands](#parameters-in-the-esm-commands). ::: -- **For RACF:** +
+Click here for command details for RACF. ```markup RACMAP ID(userid) MAP USERDIDFILTER(NAME('distributed-identity-user-name')) REGISTRY(NAME('distributed-identity-registry-name' )) WITHLABEL('label-name') @@ -105,7 +113,10 @@ User specified parameters are presented in the section [Parameters in the ESM co For more details about the RACMAP command, see [RACMAP command](https://www.ibm.com/docs/en/zos/2.3.0?topic=rcs-racmap-create-delete-list-query-distributed-identity-filter). -- **For Top Secret:** +
+ +
+Click here for command details for Top Secret. ```markup TSS ADD(userid) IDMAP(ZWEDNMAP) IDMAPDN('distributed-identity-user-name') -
@@ -116,7 +127,10 @@ User specified parameters are presented in the section [Parameters in the ESM co For more details about mapping a distributed identity username and a distributed registry name to a Top Secret ACID, see [IDMAP Keyword - Implement z/OS Identity Propagation Mapping](https://techdocs.broadcom.com/us/en/ca-mainframe-software/security/ca-top-secret-for-z-os/16-0/administrating/issuing-commands-to-communicate-administrative-requirements/keywords/idmap-keyword-implement-z-os-identity-propagation-mapping.html). -- **For ACF2:** +
+ +
+Click here for command details for ACF2. ```markup ACF @@ -130,29 +144,84 @@ User specified parameters are presented in the section [Parameters in the ESM co For more details about mapping a distributed user to a logonid, see [IDMAP User Profile Data Records](https://techdocs.broadcom.com/us/en/ca-mainframe-software/security/ca-acf2-for-z-os/16-0/administrating/administer-records/user-profile-records/idmap-user-profile-records.html). +
+ #### Parameters in the ESM commands -- **`userid`** - Specifies the ESM user id -- **`distributed-identity-user-name`** - Specifies the user ID for distributed-identity-registry -- **`distributed-identity-registry-name`** - Specifies the URL value of the distributed-identity-registry where user is defined -- **`label-name`** - Specifies the name for the distributed-identity mapping filter +- **userid** + Specifies the ESM user id. +- **distributed-identity-user-name** + Specifies the user ID for distributed-identity-registry. +- **distributed-identity-registry-name** + Specifies the registry value under which the user is defined in the ESM. +- **label-name** + Specifies the name for the distributed-identity mapping filter. **Example for RACF:** ```markup - RACMAP ID(ab00001) MAP USERDIDFILTER(NAME('aaa.bbb@richradioham.com')) REGISTRY(NAME('ldaps://us.richradioham.com')) WITHLABEL('identity mapping for ab00001') + RACMAP ID(ab00001) MAP USERDIDFILTER(NAME('aaa.bbb@richradioham.com')) REGISTRY(NAME('zowe.org')) WITHLABEL('identity mapping for ab00001') ``` Alternatively, API ML provides a Zowe CLI plug-in to help administrators generate a JCL for creating the mapping filter specific for the ESM installed on the target mainframe system. These JCLs can be submitted on the corresponding ESM to create a distributed identity mapping filter. -For details about how to use the plug-in tool to set up mapping in the ESM of your z/OS system, see the [Identity Federation cli plug-in](../../user-guide/cli-idfplugin.md) documentation. +For details about how to use the plug-in tool to set up mapping in the ESM of your z/OS system, see the [Identity Federation CLI plug-in](../../user-guide/cli-idfplugin.md) documentation. ## API ML OIDC configuration +### OIDC client configuration + +The Gateway service can be configured to provide OIDC client functionality and initiate the OIDC authentication flow to obtain an access token. Provide the following configuration in your zowe.yaml file: + +```yaml +components: + gateway: + spring: + security: + oauth2: + client: + registration: + : + issuer: + clientId: + clientSecret: + provider: + : + authorizationUri: /v1/authorize + tokenUri: /v1/token + userInfoUri: /v1/userinfo + userNameAttribute: sub + jwkSetUri: /v1/keys + + +``` +- **provider-id** + The ID of the Identity provider. Currently supported options are `okta` and `entra`. +- **components.gateway.spring.security.oauth2.client.registration.\.issuer** + The URL of the Token issuer. + Example: `https://dev-okta.com/oauth2`. +- **components.gateway.spring.security.oauth2.client.registration.\.clientId** + The Client application ID. +- **components.gateway.spring.security.oauth2.client.registration.\.clientSecret** + The Client application secret. +- **components.gateway.spring.security.oauth2.client.provider.\.authorizationUri** + The URL for the authorization request. +- **components.gateway.spring.security.oauth2.client.provider.\.tokenUri** + The URL to obtain the token. +- **components.gateway.spring.security.oauth2.client.provider.\.userInfoUri** + The URL to retrieve user information. +- **components.gateway.spring.security.oauth2.client.provider.\.userNameAttribute** + The JWT attribute to locate the user ID. +- **components.gateway.spring.security.oauth2.client.provider.\.jwkSetUri** + The URL to retrieve the JSON Web Key Set. + + +:::tip +Consult your OIDC provider documentation for options and requirements available for your type of client application. +::: + +### OIDC resource server configuration + Use the following procedure to enable the feature to use an OIDC Access Token as the method of authentication for the API Mediation Layer Gateway. :::tip @@ -164,42 +233,39 @@ For more information about the Zowe CLI Identity Federation Plug-in, see the [RE In the zowe.yaml file, configure the following properties: -- **`components.gateway.apiml.security.oidc.enabled`** - Specifies the global feature toggle. Set the value to `true` to enable OIDC authentication functionality. +- **components.gateway.apiml.security.oidc.enabled** + Set the value to `true` to enable OIDC resource server functionality for authentication. -- **`components.gateway.apiml.security.oidc.registry`** - Specifies the SAF registry used to group the identities recognized as having OIDC identity mapping. The registry name is the string used during the creation of the mapping between the dustributed and mainframe user identities. For more information, see the [ESM configuration](#esm-configuration-prerequisites). +- **components.gateway.apiml.security.oidc.registry** + Specifies the SAF registry used to group the identities recognized as having OIDC identity mapping. The registry name is the string used during the creation of the mapping between the distributed and mainframe user identities. For more information, see **distributed-identity-registry-name** value used in the [ESM configuration](#esm-configuration-prerequisites). -- **`components.gateway.apiml.security.oidc.validationType`** +- **components.gateway.apiml.security.oidc.validationType** Specifies the validation type for OIDC authentication functionality, which is set to `JWK` by default. To enable access token validation using a remote endpoint, set this property to `endpoint`. When set to `endpoint`, the Gateway uses the URI sepecified in the property `userInfo` to validate access tokens. - -- **`components.gateway.apiml.security.oidc.jwks.uri`** - Specifies the URI obtained from the authorization server's metadata where the Gateway will query for the JWK used to sign and verify the access tokens. - -- **`components.gateway.apiml.security.oidc.userInfo.uri`** - Specifies the URI obtained from the authorization server's metadata where the Gateway queries the userInfo endpoint for access token validation. - To enable this property, ensure that `oidc.enabled` is set to `true` and `oidc.validationType` is set to `endpoint`. - -- **`components.gateway.apiml.security.oidc.jwks.uri`** - Specifies the URI obtained from the authorization server's metadata where the Gateway will query for the JWK used to sign and verify the access tokens. - -- **`components.gateway.apiml.security.oidc.jwks.refreshInternalHours`** - Specifies the frequency in hours to refresh the JWK keys from the OIDC provider. Defaults to one hour. - -- **`components.gateway.apiml.security.oidc.identityMapperUser`** - (Optional) If the userId is different from the default Zowe runtime userId (`ZWESVUSR`), specify the `identityMapperUser` userId to configure API ML access to the external user identity mapper. - - **Note:** User authorization is required to use the `IRR.RUSERMAP` resource within the `FACILITY` class. The default value is `ZWESVUSR`. Permissions are set up during installation with the `ZWESECUR` JCL or workflow. To authenticate to the mapping API, a JWT is sent with the request. The token represents the user that is configured with this property. - -- **`apiml.security.oidc.identityMapperUrl`** - This property informs the Gateway about the location of this API. ZSS is the default API provider in Zowe, but if you are using Zowe release 2.14 or a later version, we recommend you use the [API ML internal mapper](../../user-guide/api-mediation/configuration-client-certificates.md#configure-internal-api-ml-mapper). You can provide your own API to perform the mapping. In this case, it is necessary to customize this value. - - The following URL is the default value for Zowe and ZSS: - - ``` - https://${ZWE_haInstance_hostname}:${GATEWAY_PORT}/zss/api/v1/certificate/dn - ``` + - For `endpoint` validation type, configure following options + - **components.gateway.apiml.security.oidc.userInfo.uri** + Specifies the URI obtained from the authorization server's metadata where the Gateway queries the userInfo endpoint for access token validation. + + - For `JWK` validation type, configure following options + - **components.gateway.apiml.security.oidc.jwks.uri** + Specifies the URI obtained from the authorization server's metadata where the Gateway will query for the JWK used to sign and verify the access tokens. + - **components.gateway.apiml.security.oidc.jwks.refreshInternalHours** + (Optional) Specifies the frequency in hours to refresh the JWK keys from the OIDC provider. Defaults to one hour. + +**Example for OKTA:** + +```yaml +components: + gateway: + apiml: + security: + oidc: + enabled: true + registry: zowe.org + validationType: JWK + jwks: + uri: https://okta.com/oauth2/api/v1/keys +``` ## Troubleshooting ### API ML fails to validate the OIDC access token with the Distributed Identity Provider diff --git a/docs/extend/extend-apiml/zowe-api-mediation-layer-security-overview.md b/docs/extend/extend-apiml/zowe-api-mediation-layer-security-overview.md index 2a9593435a..6e5235afe5 100644 --- a/docs/extend/extend-apiml/zowe-api-mediation-layer-security-overview.md +++ b/docs/extend/extend-apiml/zowe-api-mediation-layer-security-overview.md @@ -140,7 +140,7 @@ The following list shows the default ciphers. API ML services use the following TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384,TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384 ``` -Only IANA ciphers names are supported. For more information, see [Cipher Suites](https://wiki.mozilla.org/Security/Server_Side_TLS#Cipher_suites) or [List of Ciphers](https://testssl.net/openssl-iana.mapping.html). +Only IANA ciphers names are supported. For more information, see [Cipher Suites](https://wiki.mozilla.org/Security/Server_Side_TLS#Cipher_suites) or [List of Ciphers](https://testssl.sh/openssl-iana.mapping.html). ## JSON Web Token (JWT) diff --git a/docs/extend/zowe-conformance-program.md b/docs/extend/zowe-conformance-program.md index dde08a2df8..350b975d3f 100644 --- a/docs/extend/zowe-conformance-program.md +++ b/docs/extend/zowe-conformance-program.md @@ -12,11 +12,11 @@ As vendors, you are invited to submit conformance testing results for review and To participate in the Zowe Conformance Program, follow the process on the [Zowe Conformance Program website](https://openmainframeproject.org/our-projects/zowe-conformance-program/). You can also find a list of products that have earned Zowe Conformant status. -To learn the criteria of achieving Zowe conformance for an offering, see [Zowe Conformance Criteria](https://github.com/openmainframeproject/foundation/tree/master/zowe_conformance). +To learn the criteria of achieving Zowe conformance for an offering, see [Zowe Conformance Criteria](https://github.com/openmainframeproject/foundation/blob/main/zowe_conformance/test_evaluation_guide_table.md). ## How to suggest updates to the Zowe conformance program -The Zowe conformance criteria is available as a table in [a Markdown file](https://github.com/openmainframeproject/foundation/blob/master/zowe_conformance/test_evaluation_guide_table.md) in the Open Mainframe Project's GitHub repo. If you find a mistake with the Zowe conformance documents, or you are a Zowe squad lead and want to make an amendment to the criteria, you can update that Markdown file. The same information is also held in another document [Zowe Conformance Test Evaluation Guide](https://github.com/openmainframeproject/foundation/blob/master/zowe_conformance/test_evaluation_guide.md) that has history going back to Zowe 2019 conformance and allows easy change history comparison. +The Zowe conformance criteria is available as a table in [a Markdown file](https://github.com/openmainframeproject/foundation/blob/master/zowe_conformance/test_evaluation_guide_table.md) in the Open Mainframe Project's GitHub repo. If you find a mistake with the Zowe conformance documents, or you are a Zowe squad lead and want to make an amendment to the criteria, you can update that Markdown file. The same information is also held in another document [Zowe Conformance Test Evaluation Guide](https://github.com/openmainframeproject/foundation/blob/main/zowe_conformance/test_evaluation_guide_table.md) that has history going back to Zowe 2019 conformance and allows easy change history comparison. To submit a proposal to update the conformance criteria, fork the OMP's `foundation` repository at [https://github.com/openmainframeproject/foundation](https://github.com/openmainframeproject/foundation) and make a pull request. Flag the Pull Request to the attention of GitHub user ID `@mertic`, and also reach out to the Zowe onboarding squad in the [#zowe-onboarding](https://openmainframeproject.slack.com/archives/CC60ALD61) Slack channel. If you are not already signed up to Zowe Slack community, you can sign up at [https://slack.openmainframeproject.org](https://slack.openmainframeproject.org/) first. diff --git a/docs/getting-started/user-roadmap-apiml.md b/docs/getting-started/user-roadmap-apiml.md index 1272dc8615..e61b37c5cc 100644 --- a/docs/getting-started/user-roadmap-apiml.md +++ b/docs/getting-started/user-roadmap-apiml.md @@ -140,7 +140,7 @@ The following definition of skill levels about Zowe assist you with gathering th Join the #zowe-api Slack channel to ask questions about Zowe API ML, propose new ideas, and interact with the Zowe community. -- [**Zowe API ML squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe API ML squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe API ML squad meetings to get involved. diff --git a/docs/getting-started/user-roadmap-app-framework.md b/docs/getting-started/user-roadmap-app-framework.md index d74e0b57da..d06478615b 100644 --- a/docs/getting-started/user-roadmap-app-framework.md +++ b/docs/getting-started/user-roadmap-app-framework.md @@ -114,7 +114,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -- [**Zowe WebUI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe WebUI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe WebUI squad meetings to get involved. diff --git a/docs/getting-started/user-roadmap-client-sdk.md b/docs/getting-started/user-roadmap-client-sdk.md index 484749d271..505e3458de 100644 --- a/docs/getting-started/user-roadmap-client-sdk.md +++ b/docs/getting-started/user-roadmap-client-sdk.md @@ -86,7 +86,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the #zowe-cli Slack channel to ask questions about Zowe CLI and Zowe SDKs, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe CLI squad meetings to discuss Zowe SDKs issues and contibute to Zowe SDKs. diff --git a/docs/getting-started/user-roadmap-zowe-explorer.md b/docs/getting-started/user-roadmap-zowe-explorer.md index 881262c106..733b3ab950 100644 --- a/docs/getting-started/user-roadmap-zowe-explorer.md +++ b/docs/getting-started/user-roadmap-zowe-explorer.md @@ -108,7 +108,7 @@ To identify the resources most relevant for you, use the following definitions o Join the `# zowe-explorer` Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -* [**Zowe Explorer squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +* [**Zowe Explorer squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe Explorer squad meetings to get involved. diff --git a/docs/getting-started/zowe-resources.md b/docs/getting-started/zowe-resources.md index 796954115a..79d47fcd41 100644 --- a/docs/getting-started/zowe-resources.md +++ b/docs/getting-started/zowe-resources.md @@ -50,7 +50,7 @@ The [OMP Youtube channel](https://www.youtube.com/channel/UC-WTXQQtz2m5iTflJLK59 **Connect with the community through meetings** -- [Zowe meeting calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [Zowe meeting calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe meetings to get latest Zowe updates and get involved in different squads and initiatives. diff --git a/docs/images/api-mediation/apiml-oidc-auth-seq.png b/docs/images/api-mediation/apiml-oidc-auth-seq.png index b809022d83..f82c7dce72 100644 Binary files a/docs/images/api-mediation/apiml-oidc-auth-seq.png and b/docs/images/api-mediation/apiml-oidc-auth-seq.png differ diff --git a/docs/user-guide/api-mediation/api-mediation-multi-tenancy.md b/docs/user-guide/api-mediation/api-mediation-multi-tenancy.md index 8b19c9c82d..ca49565eae 100644 --- a/docs/user-guide/api-mediation/api-mediation-multi-tenancy.md +++ b/docs/user-guide/api-mediation/api-mediation-multi-tenancy.md @@ -4,24 +4,21 @@ Zowe supports management of multiple tenants, whereby different tenants can serv * [Overview of Central and Domain API MLs](#overview-of-central-and-domain-api-mls) * [Multitenancy component enablement settings](#multitenancy-component-enablement-settings) -* [Onboarding Domain Gateways to the central Cloud Gateway](#onboarding-domain-gateways-to-the-central-cloud-gateway) - * [Dynamic Onboarding (recommended) for Domain Gateways](#dynamic-onboarding-recommended-for-domain-gateways) - * [Static Onboarding for Domain Gateways (deprecated)](#static-onboarding-for-domain-gateways-deprecated) -* [Onboarding a Domain Cloud-Gateway service to Central Discovery service](#onboarding-a-domain-cloud-gateway-service-to-the-central-discovery-service) - * [Dynamic Configurations to the Central Discovery Service](#dynamic-configurations-to-the-central-discovery-service) - * [Dynamic configuration: YML](#dynamic-configuration-yml) - * [Dynamic configuration: Environment variables](#dynamic-configuration-environment-variables) +* [Onboarding a Domain Gateway service to the Central Discovery service](#onboarding-a-domain-gateway-service-to-the-central-discovery-service) + * [Dynamic configuration via zowe.yaml](#dynamic-configuration-via-zoweyaml) + * [Dynamic configuration via Environment variables](#dynamic-configuration-via-environment-variables) * [Validating successful configuration](#validating-successful-configuration) * [Establishing a trust relationship between Domain API ML and Central API ML](#establishing-a-trust-relationship-between-domain-api-ml-and-central-api-ml) * [Commands to establish trust between Domain and Central API MLs](#commands-to-establish-trust-between-domain-and-central-api-mls) -* [Using the `/registry` endpoint in Cloud Gateway](#using-the-registry-endpoint-in-the-central-cloud-gateway) +* [Using the `/registry` endpoint in the Central Gateway](#using-the-registry-endpoint-in-the-central-gateway) * [Configuration for `/registry`](#configuration-for-registry) * [Authentication for `/registry`](#authentication-for-registry) - * [Authorization for `/registry`](#authorization-with-registry) + * [Authorization with `/registry`](#authorization-with-registry) * [Requests with `/registry`](#requests-with-registry) * [Response with `/registry`](#response-with-registry) -* [Validating successful configuration with `/registry`](#validating-successful-configuration-with-registry) -* [Gateway static definition example](#gateway-static-definition-example-deprecated) + * [Response with `/registry{apimlId}`](#response-with-registryapimlid) + * [Response with `GET /gateway/api/v1/registry/{apimlId}?apiId={apiId}&serviceId={serviceId}`](#response-with-get-gatewayapiv1registryapimlidapiidapiidserviceidserviceid) +* [Validating successful configuration with `/registry`](#validating-successful-configuration-with-registry) * [Troubleshooting multitenancy configuration](#troubleshooting-multitenancy-configuration) * [ZWESG100W](#zwesg100w) * [No debug messages similar to apiml1 completed with onComplete are produced](#no-debug-messages-similar-to-apiml1-completed-with-oncomplete-are-produced) @@ -33,117 +30,86 @@ The following diagram illustrates communication between the "central" API Mediat ![Multi-domain architecture diagram](./diagrams/multi-domain_architecture_V2.svg) Domain-Central is where the "central" API ML is running, and may be on z/OS, or off z/OS, for example in Kubernetes. This API ML is referred to as the Central API ML. -The Central API ML serves as a single point of access to all API Mediation Layers registered in it, and by extension, to all services registered in those secondary API MLs. +The Central API ML serves as a single point of access to all API Mediation Layers registered in this Central API ML and, by extension, to all services registered in those secondary API MLs. Domain-1 to Domain-N are z/OS systems with the standard Zowe API ML running either in HA (sysplex) or non-HA (monoplex). These API MLs are referred to as Domain API MLs. ## Multitenancy component enablement settings -In the multitenancy environment, certain Zowe components may be enabled, while others may be disabled. The multitenancy environment expects one Central API ML that handles the discovery and registration as well as routing to the API ML installed in specific domains. As such, different setups are required for the V2 version of the API ML on the central domain and on the specific customer environments. +In the multitenancy environment, certain Zowe components may be enabled, while others may be disabled. The multitenancy environment expects one Central API ML that handles the discovery and registration as well as routing to the API ML installed in specific domains. -When using a multitenancy environment, ensure that the following Zowe components are either enabled or disabled: +## Onboarding a Domain Gateway service to the Central Discovery service -- **Domain API ML** - - Gateway and Discovery Service: **enabled** - - Cloud Gateway: **disabled** +The Central API ML can onboard Gateways of all domains. This service onboarding can be achieved similar to additional registrations of the Gateway. This section describes the dynamic configuration of the yaml file and environment variables, and how to validate successful configuration. -- **Central API ML** - - Cloud Gateway and Discovery Service: **enabled** - - Gateway: **disabled** +- [Dynamic configuration via zowe.yaml](#dynamic-configuration-via-zoweyaml) +- [Dynamic configuration via Environment variables](#dynamic-configuration-via-environment-variables) -## Onboarding Domain Gateways to the Central Cloud Gateway +### Dynamic configuration via zowe.yaml -The Central Cloud Gateway must onboard all Domain Gateways. This can be done dynamically or by static definition. We strongly recommend using dynamic onboarding as this onboarding method adapts better to the potentially changing environments of the customer. Static onboarding does not provide the functionality to actively monitor the health of specific services (e.g. domain gateways). +1. Set the following property for the Domain Gateway to dynamically onboard to the Central Discovery service. -### Dynamic Onboarding (recommended) for Domain Gateways + `components.gateway.apiml.service.additionalRegistration` -To dynamically onboard to the Discovery service in the central cluster, set the following property for all Domain Gateways: + Use the following example as a template for how to set the value of this property in zowe.yml. -`components.gateway.apiml.service.additionalRegistration` + **Example:** + ``` + components.gateway.apiml.service.additionalRegistration: + # central API ML (in HA, for non-HA mode use only 1 hostname) + - discoveryServiceUrls: https://sys1: {discoveryServicePort}/eureka/,https://sys2: {discoveryServicePort}/eureka/ + ``` -Use the following example as a template for how to set the value for this property in zowe.yml. + :::note Notes: + * Ensure that each API ML instance is defined in a separated record. Do not combine multiple API ML instances in a single record. In the case of a high availability setup, the value `discoveryServiceUrls` may contain multiple URLs. -**Example:** -``` -components.gateway.apiml.service.additionalRegistration: - # central API ML (in HA, for non-HA mode use only 1 hostname) - - discoveryServiceUrls: https://sys1:{discoveryServicePort}/eureka/,https://sys2:{discoveryServicePort}/eureka/ - routes: - - gatewayUrl: / - serviceUrl: / -``` - -``` -components.gateway.apiml.security.x509: - # cloud gateway port - certificatesUrl: https://sys1:{cloudGatewayPort}/gateway/certificates -``` - -:::note -It is not necessary for the Gateway service to provide different routing patterns for the Central Discovery service. These metadata can be the same for every cluster. -::: - -### Static Onboarding for Domain Gateways (deprecated) - -Alternatively, you can statically onboard all Domain Gateways on the Central Discovery service. Note that dynamic onboarding is the preferred method. + * We highly recommend to provide all available Discovery URLs in the value `discoveryServiceUrls`. -For static onboarding, make sure that the following parameters are correctly specified in the static definition file: + * Always provide the direct address to the system. Do not use the DVIPA address. Using this address could lead to unexpected behaviour. -- **services.serviceId** - Specify this parameter to GATEWAY -- **services.instanceBaseUrls** - Specifies the URL of the Domain Gateway -- **services.customMetadata.apiml.service.apimlId** - Specifies the id of the API ML environment + * Use hostnames `sys1` and `sys2` for the LPAR in the sysplex. + ::: -For static onboarding, use the [Gateway static definition example (deprecated)](#gateway-static-definition-example-deprecated) presented later in this article. +2. (Optional) Configure the Gateway to forward client certificates. +Use this step to enable the domain gateway to use this client certificate for authentication. . +Set the `certificatesUrl` property to ensure that only Gateway-forwarded certificates are used for client certificate authentication. This URL returns a certificate chain from the central gateway. -## Onboarding a Domain Cloud Gateway service to the Central Discovery service + ``` + components.gateway.apiml.security.x509: + # central gateway port + certificatesUrl: https://{centralGatewayHost}:{centralGatewayPort}/gateway/certificates + ``` -The Central Cloud Gateway can onboard Cloud Gateways of all domains. This service onboarding can be achieved similar to additional registrations of the Gateway. This section describes the dynamic configuration of the yaml file and environment variables, and how to validate successful configuration. +### Dynamic configuration via Environment variables -- Dynamic configuration via zowe.yaml -- Dynamic configuration via Environment variables - -### Dynamic Configurations to the Central Discovery service - -#### Dynamic configuration: YML - -Users must set the following property for the Domain Cloud Gateway to dynamically onboard to the Central Discovery service. - -`components.cloud-gateway.apiml.service.additionalRegistration` +The list of additional registrations is extracted from environment variables. You can define a list of objects by following YML -> Environment translation rules. -Use the following example as a template for how to set the value of this property in zowe.yml. +The previous example can be substituted with the following variables: -**Example:** ``` -components.cloud-gateway.apiml.service.additionalRegistration: - # central API ML (in HA, for non-HA mode use only 1 hostname) - - discoveryServiceUrls: https://sys1:{discoveryServicePort}/eureka/,https://sys2:{discoveryServicePort}/eureka/ - routes: - - gatewayUrl: / - serviceUrl: / +ZWE_CONFIGS_APIML_SERVICE_ADDITIONALREGISTRATION_0_DISCOVERYSERVICEURLS=https://sys1:{discoveryServicePort}/eureka/,https://sys2:{discoveryServicePort}/eureka/ ``` -#### Dynamic configuration: Environment variables +:::note Notes: + * The number in the properties names (see position of `#` in `ZWE_CONFIGS_APIML_SERVICE_ADDITIONALREGISTRATION_#_*`) + defines ID of API ML instance. -The list of additional registrations is extracted from environment variables. You can define a list of objects by following YML -> Environment translation rules. + * Ensure that each API ML instance is defined in a separated record. Do not combine multiple API ML instances in a + single record. In the case of a high availability setup, the value `discoveryServiceUrls` may contain multiple URLs. + We highly recommend to provide all available Discovery URLs in the value `discoveryServiceUrls`. -The previous example can be substituted with the following variables: + * Always provide the direct address to the system. Do not use the DVIPA address. Using this address could lead to unexpected behaviour. -``` -ZWE_CONFIGS_APIML_SERVICE_ADDITIONALREGISTRATION_0_DISCOVERYSERVICEURLS=https://sys1:{discoveryServicePort}/eureka/,https://sys2:{discoveryServicePort}/eureka/ -ZWE_CONFIGS_APIML_SERVICE_ADDITIONALREGISTRATION_0_ROUTES_0_GATEWAYURL=/ -ZWE_CONFIGS_APIML_SERVICE_ADDITIONALREGISTRATION_0_ROUTES_0_SERVICEURL=/ -``` + * Use hostnames `sys1` and `sys2` for the LPAR in the sysplex. +::: This Zowe configuration transforms the zowe.yaml configuration file into the environment variables described previously. ### Validating successful configuration -The corresponding Cloud Gateway service should appear in the Eureka console of the Central Discovery service. +The corresponding Gateway service should appear in the Eureka console of the Central Discovery service. -To see details of all instances of the ‘CLOUD-GATEWAY’ application, perform a **GET** call on the following endpoint of the Central Discovery service: +To see details of all instances of the ‘GATEWAY’ application, perform a **GET** call on the following endpoint of the Central Discovery service: ``` /eureka/apps @@ -151,15 +117,15 @@ To see details of all instances of the ‘CLOUD-GATEWAY’ application, perform ## Establishing a trust relationship between Domain API ML and Central API ML -For routing to work in a multitenancy configuration, the Central API Mediation Layer must trust the Domain API Mediation Layers for a successful registration into the Discovery Service component. +For routing to work in a multitenancy configuration, the Central API Mediation Layer must trust the Domain API Mediation Layers for successful registration into the Discovery Service component. The Domain API Mediation Layers must trust the Central API Mediation Layer Gateway to accept routed requests. It is necessary that the root and, if applicable, intermediate public certificates be shared between the Central API Mediation Layer and Domain API Mediation Layers. -The following diagram is a visual description of the relationship between the Central API ML and Domain API MLs. +The following diagram shows the relationship between the Central API ML and Domain API MLs. ![Trust relation diagram](./diagrams/mt-trust-relations.png) -As shown in this example diagram, the Central API ML is installed on system X. Domain API MLs are installed on systems Y and Z. +As presented in this example diagram, the Central API ML is installed on system X. Domain API MLs are installed on systems Y and Z. To establish secure communications, "Domain APIML 1" and "Domain APIML 2" are using different private keys signed with different public keys. These API MLs do not trust each other. @@ -181,83 +147,109 @@ The following commands are examples of establishing a trust relationship between 1. Import the root and, if applicable, the intermediate public key certificate of Domain API MLs running on systems Y and Z into the truststore of the Central API ML running on system X. - - **PKCS12** + - **PKCS12** - For PKCS12 certificates, use the following example of keytool commands: +
+ Click here for an example of keytool commands for PKCS12 certificates. + + For PKCS12 certificates, use the following example of keytool commands: - `keytool -import -file sysy/keystore/local_ca/local_ca.cer -alias gateway_sysy -keystore sysx/keystore/localhost/localhost.truststore.p12` + `keytool -import -file sysy/keystore/local_ca/local_ca.cer -alias gateway_sysy -keystore sysx/keystore/localhost/localhost.truststore.p12` - `keytool -import -file sysz/keystore/local_ca/local_ca.cer -alias gateway_sysz -keystore sysx/keystore/localhost/localhost.truststore.p12` + `keytool -import -file sysz/keystore/local_ca/local_ca.cer -alias gateway_sysz -keystore sysx/keystore/localhost/localhost.truststore.p12` - - **Keyring** +
+ + - **Keyring** - For keyrings, use the following examples of commands specific to your ESM to add certificates from the dataset and connect these certificates to the keyring used by the Central API ML: - - - **For RACF:** + For keyrings, use the following examples of commands specific to your ESM to add certificates from the dataset and connect these certificates to the keyring used by the Central API ML: + +
+ Click here for command details for RACF. + + - **For RACF:** - ``` - RACDCERT ADD('SHARE.SYSY.ROOTCA.CER') ID(ZWESVUSR) WITHLABEL('DigiCert Root CA') TRUST - RACDCERT ADD('SHARE.SYSZ.INTERCA.CER') ID(ZWESVUSR) WITHLABEL('DigiCert CA') TRUST - RACDCERT ID(ZWESVUSR) CONNECT(ID(ZWESVUSR) LABEL('DigiCert Root CA') RING(ZoweKeyring) USAGE(CERTAUTH)) - RACDCERT ID(ZWESVUSR) CONNECT(ID(ZWESVUSR) LABEL('DigiCert CA') RING(ZoweKeyring) USAGE(CERTAUTH)) - SETROPTS RACLIST(DIGTCERT, DIGTRING) REFRESH - ``` + ``` + RACDCERT ADD('SHARE.SYSY.ROOTCA.CER') ID(ZWESVUSR) WITHLABEL('DigiCert Root CA') TRUST + RACDCERT ADD('SHARE.SYSZ.INTERCA.CER') ID(ZWESVUSR) WITHLABEL('DigiCert CA') TRUST + RACDCERT ID(ZWESVUSR) CONNECT(ID(ZWESVUSR) LABEL('DigiCert Root CA') RING(ZoweKeyring) USAGE(CERTAUTH)) + RACDCERT ID(ZWESVUSR) CONNECT(ID(ZWESVUSR) LABEL('DigiCert CA') RING(ZoweKeyring) USAGE(CERTAUTH)) + SETROPTS RACLIST(DIGTCERT, DIGTRING) REFRESH + ``` - Verify: - ``` - RACDCERT LISTRING(ZoweKeyring) ID(ZWESVUSR) - ``` + Verify: + ``` + RACDCERT LISTRING(ZoweKeyring) ID(ZWESVUSR) + ``` - - **For ACF2:** +
+ +
+ Click here for command details for ACF2. + + - **For ACF2:** - ``` - ACF - SET PROFILE(USER) DIV(CERTDATA) - INSERT CERTAUTH.SYSYROOT DSNAME('SHARE.SYSY.ROOTCA.CER') LABEL(DigiCert Root CA) TRUST - INSERT CERTAUTH.SYSZINTR DSNAME('SHARE.SYSZ.INTERCA.CER') LABEL(DigiCert CA) TRUST - F ACF2,REBUILD(USR),CLASS(P),DIVISION(CERTDATA) + ``` + ACF + SET PROFILE(USER) DIV(CERTDATA) + INSERT CERTAUTH.SYSYROOT DSNAME('SHARE.SYSY.ROOTCA.CER') LABEL(DigiCert Root CA) TRUST + INSERT CERTAUTH.SYSZINTR DSNAME('SHARE.SYSZ.INTERCA.CER') LABEL(DigiCert CA) TRUST + F ACF2,REBUILD(USR),CLASS(P),DIVISION(CERTDATA) - SET PROFILE(USER) DIVISION(KEYRING) - CONNECT CERTDATA(CERTAUTH.SYSYROOT) LABEL(DigiCert Root CA) KEYRING(ZWESVUSR.ZOWERING) USAGE(CERTAUTH) - CONNECT CERTDATA(CERTAUTH.SYSZINTR) LABEL(DigiCert CA) KEYRING(ZWESVUSR.ZOWERING) USAGE(CERTAUTH) - F ACF2,REBUILD(USR),CLASS(P),DIVISION(KEYRING) - ``` + SET PROFILE(USER) DIVISION(KEYRING) + CONNECT CERTDATA(CERTAUTH.SYSYROOT) LABEL(DigiCert Root CA) KEYRING(ZWESVUSR.ZOWERING) USAGE(CERTAUTH) + CONNECT CERTDATA(CERTAUTH.SYSZINTR) LABEL(DigiCert CA) KEYRING(ZWESVUSR.ZOWERING) USAGE(CERTAUTH) + F ACF2,REBUILD(USR),CLASS(P),DIVISION(KEYRING) + ``` - Verify: - ``` - SET PROFILE(USER) DIVISION(KEYRING) - LIST LIKE(ZWESVUSR.-) - ``` + Verify: + ``` + SET PROFILE(USER) DIVISION(KEYRING) + LIST LIKE(ZWESVUSR.-) + ``` +
- - **For TopSecret:** - - ``` - TSS ADD(CERTAUTH) DCDS(SHARE.SYSY.ROOTCA.CER) DIGICERT(SYSYROOT) LABLCERT('DigiCert Root CA') TRUST - TSS ADD(CERTAUTH) DCDS(SHARE.SYSZ.INTERCA.CER) DIGICERT(SYSZINTR) LABLCERT('DigiCert CA') TRUST - TSS ADD(ZWESVUSR) KEYRING(ZOWERING) RINGDATA(CERTAUTH,SYSYROOT) USAGE(CERTAUTH) - TSS ADD(ZWESVUSR) KEYRING(ZOWERING) RINGDATA(CERTAUTH,SYSZINTR) USAGE(CERTAUTH) - ``` +
+ Click here for command details for Top Secret. - Verify: - ``` - TSS LIST(ZWESVUSR) KEYRING(ZOWERING) - ``` + - **For TopSecret:** + + ``` + TSS ADD(CERTAUTH) DCDS(SHARE.SYSY.ROOTCA.CER) DIGICERT(SYSYROOT) LABLCERT('DigiCert Root CA') TRUST + TSS ADD(CERTAUTH) DCDS(SHARE.SYSZ.INTERCA.CER) DIGICERT(SYSZINTR) LABLCERT('DigiCert CA') TRUST + TSS ADD(ZWESVUSR) KEYRING(ZOWERING) RINGDATA(CERTAUTH,SYSYROOT) USAGE(CERTAUTH) + TSS ADD(ZWESVUSR) KEYRING(ZOWERING) RINGDATA(CERTAUTH,SYSZINTR) USAGE(CERTAUTH) + ``` + + Verify: + ``` + TSS LIST(ZWESVUSR) KEYRING(ZOWERING) + ``` +
2. Import root and, if applicable, intermediate public key certificates of the Central API ML running on system X into the truststore of the Domain API MLs running on systems Y and Z. - - **PKCS12** + - **PKCS12** + +
+ Click here for example keytool commands for PKCS12 certificates. - For PKCS12 certificates, use the following example of the keytool commands: + For PKCS12 certificates, use the following example of the keytool commands: - `keytool -import -file x/keystore/local_ca/local_ca.cer -alias gateway_x -keystore y/keystore/localhost/localhost.truststore.p12` + `keytool -import -file x/keystore/local_ca/local_ca.cer -alias gateway_x -keystore y/keystore/localhost/localhost.truststore.p12` - `keytool -import -file x/keystore/local_ca/local_ca.cer -alias gateway_x -keystore z/keystore/localhost/localhost.truststore.p12` + `keytool -import -file x/keystore/local_ca/local_ca.cer -alias gateway_x -keystore z/keystore/localhost/localhost.truststore.p12` - - **Keyring** +
+ + - **Keyring** + + For keyring certificates, use the following examples of commands specific to your ESM to add certificates from the dataset, and connect these certificates to the keyrings used by Domain API MLs: - For keyring certificates, use the following examples of commands specific to your ESM to add certificates from the dataset, and connect these certificates to the keyrings used by Domain API MLs: +
+ Click here for command details for RACF. - - **For RACF:** + - **For RACF:** ``` RACDCERT ADD('SHARE.SYSX.ROOTCA.CER') ID(ZWESVUSR) WITHLABEL('Local CA') TRUST @@ -270,7 +262,12 @@ The following commands are examples of establishing a trust relationship between RACDCERT LISTRING(ZoweKeyring) ID(ZWESVUSR) ``` - - **For ACF2:** +
+ +
+ Click here for command details for ACF2. + + - **For ACF2:** ``` ACF @@ -289,7 +286,12 @@ The following commands are examples of establishing a trust relationship between LIST LIKE(ZWESVUSR.-) ``` - - **For TopSecret:** +
+ +
+ Click here for command details for Top Secret. + + - **For Top Secret:** ``` TSS ADD(CERTAUTH) DCDS(SHARE.SYSX.ROOTCA.CER) DIGICERT(SYSXROOT) LABLCERT('Local CA') TRUST @@ -301,21 +303,22 @@ The following commands are examples of establishing a trust relationship between TSS LIST(ZWESVUSR) KEYRING(ZOWERING) ``` +
+ You completed certificates setup for multitenancy configuration, whereby Domain API MLs can trust the Central API ML and vice versa. -## Using the `/registry` endpoint in the Central Cloud Gateway +## Using the `/registry` endpoint in the Central Gateway -The `/registry` endpoint provides information about services onboarded to all Domain Gateways and the Central Cloud Gateway. This section describes the configuration, authentication, authorization, example of requests, and responses when using the `/registry` endpoint. +The `/registry` endpoint provides information about services onboarded to all Domain Gateways (all domains and the central one). This section describes the configuration, authentication, authorization, example of requests, and responses when using the `/registry` endpoint. ### Configuration for `/registry` -The `/registry` endpoint is disabled by default. Use the following environment variable to enable this feature: - -`APIML_CLOUDGATEWAY_REGISTRY_ENABLED=TRUE` +The `/registry` endpoint is disabled by default. Use the configuration property `apiml.gateway.registry.enabled=true` or +environment variable `APIML_GATEWAY_REGISTRY_ENABLED=TRUE` to enable this feature. ### Authentication for `/registry` -The `/registry` endpoint is authenticated by the client certificate. The Central Cloud Gateway accepts certificates that are trusted. The username is obtained from the common name of the client certificate. +The `/registry` endpoint is authenticated by the client certificate. The Central Gateway accepts certificates that are trusted. The username is obtained from the common name of the client certificate. Unsuccessful authentication returns a 401 error code. @@ -333,17 +336,20 @@ Unsuccessful authorization returns a 403 error code. There are two endpoints that provide information about services registered to the API ML. One endpoint is for all domains, and the other endpoint is for the specific domain. Choose from the following **GET** calls: -* `GET /cloud-gateway/api/v1/registry` +* `GET /gateway/api/v1/registry` This request lists services in all domains. -* `GET /cloud-gateway/api/v1/registry/{apimlId}` +* `GET /gateway/api/v1/registry/{apimlId}` This request lists services in the apimlId domain. -* `GET /cloud-gateway/api/v1/registry/{apimlId}?apiId={apiId}&serviceId={serviceId}` +* `GET /gateway/api/v1/registry/{apimlId}?apiId={apiId}&serviceId={serviceId}` This request gets the specific service in the specific apimlId domain. ### Response with `/registry` +
+Click here for an example response with `/registry`. + **Example:** ``` @@ -354,12 +360,12 @@ This request lists services in the apimlId domain. { "status": "UP", "customMetadata": { - "zos.sysname": "sys1", - "zos.sysplex": "sysplex" + "zos.sysname": "sys1", + "zos.sysplex": "sysplex" }, "apiId": [ - "zowe.apiml.gateway" -], + "zowe.apiml.gateway" + ], "serviceId": "gateway" } ] @@ -369,36 +375,43 @@ This request lists services in the apimlId domain. "services": [ { "status": "UP", - "customMetadata": { - "zos.sysname": "sys2", - "zos.sysplex": "sysplex" - }, + "customMetadata": { + "zos.sysname": "sys2", + "zos.sysplex": "sysplex" + }, "apiId": [ - "zowe.apiml.gateway" -], + "zowe.apiml.gateway" + ], "serviceId": "gateway" }, { - "status": "UP", + "status": "UP", "customMetadata": { - "zos.sysname": "sys2", - "zos.sysplex": "sysplex"}, + "zos.sysname": "sys2", + "zos.sysplex": "sysplex" + }, "apiId": [ - "zowe.apiml.catalog" - ], + "zowe.apiml.catalog" + ], "serviceId": "catalog" } ] + } ] ``` +
+ ### Response with `/registry{apimlId}` -Should contain information about all services in a specific domain +This response should contain information about all services in a specific domain. + +
+Click here for an example response with `/registry{apimlId}`. **Example:** -* `GET /cloud-gateway/api/v1/registry/apiml2` +* `GET /gateway/api/v1/registry/apiml2` ``` [ @@ -408,36 +421,42 @@ Should contain information about all services in a specific domain { "status": "UP", "customMetadata": { - "zos.sysname": "sys2", - "zos.sysplex": "sysplex" + "zos.sysname": "sys2", + "zos.sysplex": "sysplex" }, "apiId": [ - "zowe.apiml.gateway" - ], + "zowe.apiml.gateway" + ], "serviceId": "gateway" }, { "status": "UP", "customMetadata": { - "zos.sysname": "sys2", - "zos.sysplex": "sysplex" + "zos.sysname": "sys2", + "zos.sysplex": "sysplex" }, "apiId": [ - "zowe.apiml.catalog" - ], + "zowe.apiml.catalog" + ], "serviceId": "catalog" } ] + } ] ``` -### Response with `GET /cloud-gateway/api/v1/registry/{apimlId}?apiId={apiId}&serviceId={serviceId}` +
+ +### Response with `GET /gateway/api/v1/registry/{apimlId}?apiId={apiId}&serviceId={serviceId}` -Should contain information about a specific service in a specific domain +This response should contain information about a specific service in a specific domain. + +
+Click here for an example of a response with `GET /gateway/api/v1/registry/{apimlId}?apiId={apiId}&serviceId={serviceId}`. **Example:** -* `GET /cloud-gateway/api/v1/registry/apiml2?apiId=zowe.apiml.gateway&serviceId=catalog` +* `GET /gateway/api/v1/registry/apiml2?apiId=zowe.apiml.gateway&serviceId=catalog` ``` [ @@ -447,97 +466,26 @@ Should contain information about a specific service in a specific domain { "status": "UP", "customMetadata": { - "zos.sysname": "sys2", - "zos.sysplex": "sysplex" + "zos.sysname": "sys2", + "zos.sysplex": "sysplex" }, "apiId": [ - "zowe.apiml.catalog" - ], + "zowe.apiml.catalog" + ], "serviceId": "catalog" } ] + } ] ``` +
+ ## Validating successful configuration with `/registry` Use the `/registry` endpoint to validate successful configuration. The response should contain all Domain API MLs represented by `apimlId`, and information about onboarded services. -## Gateway static definition example (deprecated) -The Gateway static definition file should be stored together with other statically onboarded services. The default location is `/zowe/runtime/instance/workspace/api-mediation/api-defs/`. -There is no naming restriction of the filename, but the file extension must be `yml`. - -**Example:** -``` -# -# Static definition of "discoverable-client" as "staticclient" -# -# This file provides static API service definition in YAML format. -# It is loaded by the Discovery Service during its startup. -# -services: - - serviceId: GATEWAY # unique lowercase ID of the service - catalogUiTileId: static # ID of the API Catalog UI tile (visual grouping of the services) - title: Statically Defined API Service # Title of the service in the API catalog - description: Sample to demonstrate how to add an API service with Swagger to API Catalog using a static YAML definition # Description of the service in the API catalog - instanceBaseUrls: # list of base URLs for each instance - - https://sys1:{gatewayPort}/ # scheme://hostname:port/contextPath - homePageRelativeUrl: / # Normally used for informational purposes for other services to use it as a landing page - statusPageRelativeUrl: /application/info # Appended to the instanceBaseUrl - healthCheckRelativeUrl: /application/health # Appended to the instanceBaseUrl - routes: - - gatewayUrl: api/v1 # [api/ui/ws]/v{majorVersion} - serviceRelativeUrl: /api/v1 # relativePath that is added to baseUrl of an instance - - gatewayUrl: ui/v1 - serviceRelativeUrl: / - - gatewayUrl: ws/v1 - serviceRelativeUrl: /ws - # List of APIs provided by the service (currently only one is supported): - apiInfo: - - apiId: zowe.apiml.gateway - gatewayUrl: api/v1 - swaggerUrl: https://sys1:{discoverableClientPort}/discoverableclient/v2/api-docs - customMetadata: - apiml: - service.apimlId: apiml1 - okToRetryOnAllOperations: true - - - - serviceId: GATEWAY # unique lowercase ID of the service - catalogUiTileId: static # ID of the API Catalog UI tile (visual grouping of the services) - title: Statically Defined API Service # Title of the service in the API catalog - description: Sample to demonstrate how to add an API service with Swagger to API Catalog using a static YAML definition # Description of the service in the API catalog - instanceBaseUrls: # list of base URLs for each instance - - https://sys2:{gatewayPort}/ # scheme://hostname:port/contextPath - homePageRelativeUrl: / # Normally used for informational purposes for other services to use it as a landing page - statusPageRelativeUrl: /application/info # Appended to the instanceBaseUrl - healthCheckRelativeUrl: /application/health # Appended to the instanceBaseUrl - routes: - - gatewayUrl: api/v1 # [api/ui/ws]/v{majorVersion} - serviceRelativeUrl: /api/v1 # relativePath that is added to baseUrl of an instance - - gatewayUrl: ui/v1 - serviceRelativeUrl: / - - gatewayUrl: ws/v1 - serviceRelativeUrl: /ws - # List of APIs provided by the service (currently only one is supported): - apiInfo: - - apiId: zowe.apiml.gateway - gatewayUrl: api/v1 - swaggerUrl: https://sys2:{discoverableClientPort}/discoverableclient/v2/api-docs - customMetadata: - apiml: - service.apimlId: apiml2 - okToRetryOnAllOperations: true - - -# List of tiles that can be used by services defined in the YAML file: -catalogUiTiles: - static: - title: Static API Services - description: Services which demonstrate how to make an API service discoverable in the APIML ecosystem using YAML definitions - -``` ## Troubleshooting multitenancy configuration ### ZWESG100W @@ -545,7 +493,7 @@ catalogUiTiles: Cannot receive information about services on API Gateway with apimlId 'apiml1' because: Received fatal alert: certificate_unknown; nested exception is javax.net.ssl.SSLHandshakeException: Received fatal alert: certificate_unknown **Reason** -The trust between the domain and the Cloud Gateway was not established. +The trust between the domain and the central Gateway was not established. **Action** Review your certificate configuration. diff --git a/docs/user-guide/api-mediation/configuration-multi-tenancy-routing.md b/docs/user-guide/api-mediation/configuration-multi-tenancy-routing.md index a9db5054e1..50e3ba55e2 100644 --- a/docs/user-guide/api-mediation/configuration-multi-tenancy-routing.md +++ b/docs/user-guide/api-mediation/configuration-multi-tenancy-routing.md @@ -5,26 +5,32 @@ in isolated sysplex environments. Data from the Central Discovery Service can th Follow these steps to register with additional Discovery Services: -1. Open the `zowe.yaml` configuration file. -2. Add the property `components.gateway.apiml.service.additionalRegistration` and set the value to a list of Discovery service clusters to additional Disovery Services. +1. Open the `zowe.yaml` configuration file. +2. Add the property `components.gateway.apiml.service.additionalRegistration` and set the value to a list of Discovery service clusters to additional Disovery Services. **Example:** ``` components.gateway.apiml.service.additionalRegistration: - discoveryServiceUrls: https://sys1:10011/eureka/,https://sys1:10021/eureka/ - routes: - gatewayUrl: / - serviceUrl: / - discoveryServiceUrls: https://sys2:10011/eureka/,https://sys2:10021/eureka/ - routes: - gatewayUrl: / - serviceUrl: / - discoveryServiceUrls: https://sys3:10011/eureka/,https://sys3:10021/eureka/ - routes: - gatewayUrl: / - serviceUrl: / ``` -3. Restart Zowe. + + :::note + Ensure that each API ML instance is defined in a separated record. Do not combine multiple API ML instances in a + single record. In the case of a high availability setup, the value `discoveryServiceUrls` may contain multiple URLs. + We highly recommend to provide all available Discovery URLs in the value `discoveryServiceUrls`. + + Always provide the direct address to the system. Do not use the DVIPA address. Using this address could lead to unexpected behaviour. + ::: +3. Add property `components.gateway.apimlId` and set the value to a unique string to identify gateway for routing. + + **Example:** + ```yaml + components.gateway.apimlId: apiml1 + ``` + +4. Restart Zowe. diff --git a/docs/user-guide/user-roadmap-zowe-cli.md b/docs/user-guide/user-roadmap-zowe-cli.md index f1c8c598af..176c85a434 100644 --- a/docs/user-guide/user-roadmap-zowe-cli.md +++ b/docs/user-guide/user-roadmap-zowe-cli.md @@ -147,7 +147,7 @@ Zowe CLI extenders can build plug-ins that provide new commands. Join the #zowe-cli Slack channel to ask questions about Zowe CLI, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) Join Zowe CLI squad meetings to get involved. diff --git a/docs/whats-new/release-notes/v2_0_0.md b/docs/whats-new/release-notes/v2_0_0.md index ff7423c906..198350fda9 100644 --- a/docs/whats-new/release-notes/v2_0_0.md +++ b/docs/whats-new/release-notes/v2_0_0.md @@ -208,7 +208,7 @@ Zowe CLI contains the following enhancements and changes: Zowe maintained CLI plug-ins are Zowe V2 LTS conformant. As such, they integrate with Team configuration, daemon mode, and the team configuration migration utility. For information about enhancements and bug fixes, see the changelogs for the following plug-ins: -- [IBM CICS Plug-in for Zowe CLI](https://github.com/zowe/cics-for-zowe-client/blob/master/packages/cli/CHANGELOG.md) +- [IBM CICS Plug-in for Zowe CLI](https://github.com/zowe/cics-for-zowe-client/releases) - [IBM Db2 Database Plug-in for Zowe CLI](https://github.com/zowe/zowe-cli-db2-plugin/blob/master/CHANGELOG.md) - [IBM z/OS FTP Plug-in for Zowe CLI](https://github.com/zowe/zowe-cli-ftp-plugin/blob/master/CHANGELOG.md) - [IBM IMS Plug-in for Zowe CLI](https://github.com/zowe/zowe-cli-ims-plugin/blob/master/CHANGELOG.md) @@ -238,7 +238,7 @@ The Nodejs SDK packages were updated to make use of key Zowe V2 features, includ Zowe Explorer makes use of Team Configuration and is secure by default. For information about enhancements and bug fixes, see the following changelogs: - [Zowe Explorer](https://github.com/zowe/zowe-explorer-vscode/blob/next/packages/zowe-explorer/CHANGELOG.md) -- [Zowe Explorer CICS Extension](https://github.com/zowe/cics-for-zowe-client/blob/next/packages/vsce/CHANGELOG.md) +- [Zowe Explorer CICS Extension](https://github.com/zowe/cics-for-zowe-client/releases) - [Zowe Explorer FTP Extension](https://github.com/zowe/zowe-explorer-vscode/blob/next/packages/zowe-explorer-ftp-extension/CHANGELOG.md) ## Bug fixes diff --git a/docs/whats-new/release-notes/v2_10_0.md b/docs/whats-new/release-notes/v2_10_0.md index 5972fc51d5..9a1dabd09a 100644 --- a/docs/whats-new/release-notes/v2_10_0.md +++ b/docs/whats-new/release-notes/v2_10_0.md @@ -13,7 +13,7 @@ Zowe Version 2.10.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/docs/whats-new/release-notes/v2_11_0.md b/docs/whats-new/release-notes/v2_11_0.md index 4485bf1214..0b4d4f8b24 100644 --- a/docs/whats-new/release-notes/v2_11_0.md +++ b/docs/whats-new/release-notes/v2_11_0.md @@ -13,7 +13,7 @@ Zowe Version 2.11.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Installation and Packaging diff --git a/docs/whats-new/release-notes/v2_12_0.md b/docs/whats-new/release-notes/v2_12_0.md index 4360cecbdb..99d4dfbec8 100644 --- a/docs/whats-new/release-notes/v2_12_0.md +++ b/docs/whats-new/release-notes/v2_12_0.md @@ -13,7 +13,7 @@ Zowe Version 2.12.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Application Framework diff --git a/docs/whats-new/release-notes/v2_13_0.md b/docs/whats-new/release-notes/v2_13_0.md index 477d0cf522..4ec12f8c16 100644 --- a/docs/whats-new/release-notes/v2_13_0.md +++ b/docs/whats-new/release-notes/v2_13_0.md @@ -13,7 +13,7 @@ Zowe Version 2.13.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/docs/whats-new/release-notes/v2_14_0.md b/docs/whats-new/release-notes/v2_14_0.md index 70eace31e1..b9c1ef3642 100644 --- a/docs/whats-new/release-notes/v2_14_0.md +++ b/docs/whats-new/release-notes/v2_14_0.md @@ -13,7 +13,7 @@ Zowe Version 2.14.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/docs/whats-new/release-notes/v2_15_0.md b/docs/whats-new/release-notes/v2_15_0.md index 6b1c83cfe8..f8148e9306 100644 --- a/docs/whats-new/release-notes/v2_15_0.md +++ b/docs/whats-new/release-notes/v2_15_0.md @@ -13,7 +13,7 @@ Zowe Version 2.15.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/docs/whats-new/release-notes/v2_16_0.md b/docs/whats-new/release-notes/v2_16_0.md index 6166a1becd..778fd10214 100644 --- a/docs/whats-new/release-notes/v2_16_0.md +++ b/docs/whats-new/release-notes/v2_16_0.md @@ -13,7 +13,7 @@ Zowe Version 2.16.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Install Packaging @@ -33,7 +33,7 @@ System demos are typically held the week after a minor release becomes available ### Zowe API Mediation Layer * The log message `ZWEAM001I` is now issued when API Mediation Layer starts. ([#3523](https://github.com/zowe/api-layer/issues/3523)) -* SSL is now disabled when profile `attls` is active to simplify AT-TLS configuration. ([#3521](https://github.com/zowe/api-layer/issues/3521])) +* SSL is now disabled when profile `attls` is active to simplify AT-TLS configuration. ([#3521](https://github.com/zowe/api-layer/pull/3521)) * Valid OIDC tokens are now forwarded to the downstream service when the distributed ID is not mapped. ([#3497](https://github.com/zowe/api-layer/issues/3497)) * Included OIDC JWKSet in the gateway JWKs. JWKs retrieved from the Identity Provider allow clients and services to validate the OIDC access token locally. ([#3499](https://github.com/zowe/api-layer/issues/3499)) * Moved OIDC access token from cookie to special header. If the user ID from the token cannot be mapped to a mainframe account, the access token is now sent via the request header OIDC-token. ([#3513](https://github.com/zowe/api-layer/issues/3513)) diff --git a/docs/whats-new/release-notes/v2_17_0.md b/docs/whats-new/release-notes/v2_17_0.md index 8188e08eb9..854c3e427e 100644 --- a/docs/whats-new/release-notes/v2_17_0.md +++ b/docs/whats-new/release-notes/v2_17_0.md @@ -13,7 +13,7 @@ Zowe Version 2.17.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/docs/whats-new/release-notes/v2_18_0.md b/docs/whats-new/release-notes/v2_18_0.md index 766a14eb3a..b9792b999b 100644 --- a/docs/whats-new/release-notes/v2_18_0.md +++ b/docs/whats-new/release-notes/v2_18_0.md @@ -13,7 +13,7 @@ Zowe Version 2.18.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Application Framework diff --git a/docs/whats-new/release-notes/v2_5_0.md b/docs/whats-new/release-notes/v2_5_0.md index c314d3375c..878096d972 100644 --- a/docs/whats-new/release-notes/v2_5_0.md +++ b/docs/whats-new/release-notes/v2_5_0.md @@ -13,7 +13,7 @@ Zowe Version 2.5.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/docs/whats-new/release-notes/v2_6_0.md b/docs/whats-new/release-notes/v2_6_0.md index b7aa97d2f4..2fe1c413c8 100644 --- a/docs/whats-new/release-notes/v2_6_0.md +++ b/docs/whats-new/release-notes/v2_6_0.md @@ -13,7 +13,7 @@ Zowe Version 2.6.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/docs/whats-new/release-notes/v2_7_0.md b/docs/whats-new/release-notes/v2_7_0.md index 96d65f3c42..63bdd286ea 100644 --- a/docs/whats-new/release-notes/v2_7_0.md +++ b/docs/whats-new/release-notes/v2_7_0.md @@ -13,7 +13,7 @@ Zowe Version 2.7.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/docs/whats-new/release-notes/v2_8_0.md b/docs/whats-new/release-notes/v2_8_0.md index 0563e171b5..d5a4c36b4a 100644 --- a/docs/whats-new/release-notes/v2_8_0.md +++ b/docs/whats-new/release-notes/v2_8_0.md @@ -13,7 +13,7 @@ Zowe Version 2.8.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/docs/whats-new/release-notes/v2_9_0.md b/docs/whats-new/release-notes/v2_9_0.md index 238e4dce8c..7fa09bc384 100644 --- a/docs/whats-new/release-notes/v2_9_0.md +++ b/docs/whats-new/release-notes/v2_9_0.md @@ -13,7 +13,7 @@ Zowe Version 2.9.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/docs/whats-new/release-notes/v3_0_0.md b/docs/whats-new/release-notes/v3_0_0.md index aa1fb95e64..c2b5a4a6d5 100644 --- a/docs/whats-new/release-notes/v3_0_0.md +++ b/docs/whats-new/release-notes/v3_0_0.md @@ -209,7 +209,7 @@ For a complete list of enhancements and bug fixes, see the following changelogs: ### Backward compatibility -Zowe V2 conformant extensions/plug-ins are not guaranteed to be compatible with Zowe V3 and therefore may not be operable. In general, plug-ins/extensions which leverage V3 APIs that have known [breaking changes](#breaking-changes) are at high risk of incompatibility and unpredictable results. +Zowe V2 conformant extensions/plug-ins are not guaranteed to be compatible with Zowe V3 and therefore may not be operable. In general, plug-ins/extensions which leverage V3 APIs that have known [breaking changes](../breaking-changes-v3.md) are at high risk of incompatibility and unpredictable results. **Recommendation:** All V2 extenders test with Zowe V3, identify any issues, and disclose results to consumers to clearly indicate backward compatibility status in the extension documentation. If unable to test, clearly document as such. diff --git a/docs/whats-new/zowe-v3-office-hours.md b/docs/whats-new/zowe-v3-office-hours.md index dfce925f41..146e698bd2 100644 --- a/docs/whats-new/zowe-v3-office-hours.md +++ b/docs/whats-new/zowe-v3-office-hours.md @@ -6,62 +6,15 @@ Zowe squads go over their upcoming projects and answer your questions about Zowe Missed a session? Catch up here. Office hours are recorded and made available with videos posted to the [Open Mainframe Project](https://www.youtube.com/@OpenMainframeProject) YouTube channel. -## Consumer focused Office Hours -### Upcoming Consumer focused Office Hours +| Date | Topic | Link to the meeting | Link to the recording | Links to the materials | +| ------------------------- | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |--------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 10/18/2024 8AM - 9AM ET | Open Office Hours | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/-lM9a87dxXEKQwTLSsJEBkMtjbKuAO1Et_SdGCD_ibm3q0t_u6qFVsCjrLDiddNA.pY8AysnjrYBNX8hh) | [Presentation](https://ibm.box.com/s/9ctt3zbpo2ucz81bkuorz4g3v5xab0qg) | +| 10/11/2024 8AM - 9AM ET | Systems, Install & Packaging | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/ogO4Ecuefp9QwLqQVg2_zqyJ1fOO2385arJ1Ug5pQNfsL4rW-743kJBt4eneqs-m.UA9GjLdNNIaZkIDU) | [Presentation](https://ibm.box.com/shared/static/djno8xy478ym59fkmu5y8mb0rk1y6h4q.pptx) | +| 10/04/2024 8AM - 9AM ET | Explorer (Intellij) | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/O7Da70rz1tpqyacu_haEVKiW2H-5z7KGIVMTA8s54M8oYstUsPTfUAmYKAT_7KLL.M4vBDpCmWHNfpiwn) | [Presentation](https://ibm.box.com/shared/static/8b16myv1fd41dbe3woaj7ojni8qq9z1t.pptx) | +| 09/27/2024 8AM - 9AM ET | Explorer (VS Code) | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/WSrYe_G-bg3_RejWg3TMzBeckSp0X4rjGyKoWQw6b9uPCBeVBrdZ4_44V9FSYCVH.HrqajES-VpB-9e9n) | [Presentation](https://ibm.box.com/shared/static/pt4fl6tk6oxnikyzdhv08m5h9l77pepj.pptx) | +| 09/20/2024 8AM - 9AM ET | Web UI | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/25HTI5RzmBBbWrLbItbpWX0406Tt2kImbaJpDPAnPAObW4BLrrYmJi6X9X09VHkv.RRo1DPH9h_GFJDxC) | [Presentation](https://ibm.box.com/shared/static/xghjxsyuzyofezainfxrpnena7kyp3q2.pptx) | +| 09/13/2024 8AM - 9AM ET | Zowe CLI & Client Node SDK | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/ltCulqh3-PXUlUaJNYswd1Nk06l6h_pU24daQOM2RipHO-LzkyNvzaP275ze-B8.Nz3738DT-alh57jg) | [CLI Presentation](https://ibm.box.com/shared/static/zdbaaicwak3kygtf9hdt4cq7odjx9oje.pptx)
[Node.js SDK Presentation](https://ibm.box.com/s/q88jnt4rfzsol8ybq6sjumu3w8bucsi7) | +| 09/06/2024 8AM - 9AM ET | API Mediation Layer | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/QOOVXWfuqf8IjCuAZgyR0O1yCEDbgLV-pZP7gU7q7RRJXuyF7h4dc3OxYBhIGc9z.7OJnf6iq55XHzP-m) | [Presentation](https://ibm.box.com/shared/static/x30uwkyat72ekuk03d1733p88l8zboy1.pptx) | -| Date | Topic | Link to the meeting | Link to the recording | Links to the materials | -| ------------------------ | --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ | ----------------------------------------------------------------------| -| 09/06/2024 8AM - 9AM ET | Web UI | [https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | | | -| 09/13/2024 8AM - 9AM ET | API Mediation Layer | [https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | | | -| 09/20/2024 8AM - 9AM ET | Zowe CLI & Client Node SDK | [https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | | | -| 09/27/2024 8AM - 9AM ET | Explorer (VS Code) | [https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | | | -| 10/04/2024 8AM - 9AM ET | Explorer (Intellij) | [https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | | | -| 10/11/2024 8AM - 9AM ET | Systems, Install & Packaging | [https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | | | -| 10/18/2024 8AM - 9AM ET | Open Office Hours | [https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | | | -### Past Consumer focused Office Hours -| Date | Topic | Link to the meeting | Link to the recording | Links to the materials | -| ------------------------ | --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ | ----------------------------------------------------------------------| -| 01/05/2024 8AM - 9AM ET | API Mediation Layer | [https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Zoom recording](https://youtu.be/6gkoSSypTck?si=h4DJCZ8LzZMj3rHh) | [Presentation](https://ibm.box.com/s/06rtqh1at3nd7q3lgi36ly8uum1h4adn) | -| 01/12/2024 8AM - 9AM ET | Zowe CLI | [https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Zoom recording](https://youtu.be/wgzJO9eyyhA?si=dgER1FQVzwAvm_1t) | [Presentation](https://ibm.box.com/s/aqcwrc83i8uq9llyo3kae8pjxi0p1xlb) | -| 01/12/2024 8AM - 9AM ET | Node Client SDK | [https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Zoom recording](https://youtu.be/wgzJO9eyyhA?si=dgER1FQVzwAvm_1t) | [Presentation](https://ibm.box.com/s/ujdkjfb6f1zhx4amse1x7aysdb76ai80) | -| 01/19/2024 8AM - 9AM ET | Explorer (VSCode) | [https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Zoom recording](https://youtu.be/ZGmD2hxJVHE?si=ra46RJu3YdkecrXu) | [Presentation](https://ibm.box.com/s/366i3i576c3r2s6kn3sqtwxzsj9lcpzm) | -| 01/26/2024 8AM - 9AM ET | Explorer (Intellij) | [https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Zoom recording](https://youtu.be/mDlCuhizy3M?si=OlFs5mXUahH59xEl) | [Presentation](https://ibm.box.com/s/monvnv2b55v1p6cz5cpxrmeyf8m794j4) | -| 02/02/2024 8AM - 9AM ET | Web UI | [https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Zoom recording](https://youtu.be/KllchLDvBjs?si=WxJ4nBJrUDzqwwwW) | [Presentation](https://ibm.box.com/s/asqn9wx7qc1mfwmdn6dqnkt56xuuflaz) | -| 02/09/2024 8AM - 9AM ET | Systems Install & Packaging | [https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Zoom recording](https://youtu.be/EQ-jYYl6wnY?si=W3ei2hVVqMcR0Mcn) | [Presentation](https://ibm.box.com/s/iy5fwn7u5jcjaxfnopd9i6acjsb491qx) | - -## Past Extender focused Office Hours - -| Date | Topic | Link to the meeting | Link to the recording | Links to the materials | -| ---- | ----- |----------------------------------------------------------------------------------------------------------------------|-----------------------|------------------------| -| 11/10/2023 8AM - 9AM ET | Other SYSTEMS Installation & Packaging & z/OS | [https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129](https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129) | [Zoom recording](https://youtu.be/XdU4YTcjBaw?feature=shared) | [Presentation](https://ibm.box.com/shared/static/jrc9sfdiqipyk13enskcpri32ykg8f38.pptx) | -| 11/03/2023 8AM - 9AM ET | Web UI | [https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129](https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129) | [Zoom recording](https://youtu.be/xcoN3z4W_GM?feature=shared) | Not Available | -| 10/20/2023 8AM - 9AM ET | Explorer (VSCode) | [https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129](https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129) | [Zoom recording](https://youtu.be/Ur-yPjJyTH8?feature=shared) | [Presentation](https://ibm.box.com/s/h5nizhrgke12z63u7v1wivax126usjda) | -| 10/13/2023 8AM - 9AM ET | Zowe CLI | [https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129](https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129) | [Zoom recording](https://youtu.be/3DLV28Z3szE?feature=shared) | [Presentation](https://ibm.box.com/s/cdw0q1xnpnmm1wmtbjl3bk0esiqnfyox) | -| 10/06/2023 8AM - 9AM ET | API Mediation Layer | [https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129](https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129) | [Zoom recording](https://youtu.be/6TTpRx9TyO4?feature=shared) | [Presentation](https://ibm.box.com/s/0srch736nkq0q6kcrxazt0nvgfjnxyd3) | - -## Office Hours video series for Extenders - - - - - - - -
-
- -API Mediation Layer -
-
-
- -Zowe CLI -
-
-
- -Zowe Explorer for Visual Studio Code -
-
diff --git a/docusaurus.config.js b/docusaurus.config.js index a114b90821..ecce84a354 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -156,7 +156,7 @@ module.exports = { }, { label: "Community meetings", - href: "https://lists.openmainframeproject.org/g/zowe-dev/calendar", + href: "https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe", }, { label: "Zowe GitHub", diff --git a/release-handbook/release_handbook.md b/release-handbook/release_handbook.md index 91281f69e4..c4e0aac0e9 100644 --- a/release-handbook/release_handbook.md +++ b/release-handbook/release_handbook.md @@ -421,7 +421,7 @@ Summary: Confirm that the Zowe Docs site works and announce the new doc to the Z |Doc validation | 1 hour within publish | Check that the doc site has been refreshed correctly. |Build and upload new release PDF file | 1 hour within publish | See [PDF generation guide](https://github.com/zowe/docs-site/blob/master/release-handbook/pdf_generation_guide.md#steps-to-manually-generate-pdf-recommended) for how-to. It's recommended that you run the manual build and then create a PR against the `master` branch to upload the PDF file. |Release promotion | GA day | Announce release in Slack channels. TSC members will make announcements in LinkedIn, Twitter, etc. -|System demo | | See the [OMP Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for details. +|System demo | | See the [OMP Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for details. |~~Write release blog, upload release demo video~~ | | ~~Convert the system demo recording into a blog.~~ This is no longer done. Leaving this in case we can do this step again in the future. |~~Add release demo video and blog link back in the release notes~~ | ~~Once the video and blog is published~~ | ~~Go to the release notes and add the links. For example, `Release demo: Check out the Zowe demo video for v1.24.0 to see a demo of what's new in this release. Release blog: Read this blog Zowe 1.24 Release Highlights written by Joe Winchester for a deeper dive of the major enhancements and changes for this release.`~~ This is no longer done. Leaving this in case we can do this step again in the future. diff --git a/release-handbook/release_notes_guide.md b/release-handbook/release_notes_guide.md index 27e241e184..f19eba7341 100644 --- a/release-handbook/release_notes_guide.md +++ b/release-handbook/release_notes_guide.md @@ -22,7 +22,7 @@ Zowe Version 2.3.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-apiml.md b/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-apiml.md index 95253ae9f4..979ae246d9 100644 --- a/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-apiml.md +++ b/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-apiml.md @@ -140,7 +140,7 @@ The following definition of skill levels about Zowe assist you with gathering th Join the #zowe-api Slack channel to ask questions about Zowe API ML, propose new ideas, and interact with the Zowe community. -- [**Zowe API ML squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe API ML squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe API ML squad meetings to get involved. diff --git a/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-app-framework.md b/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-app-framework.md index f88617ea16..87188d0506 100644 --- a/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-app-framework.md +++ b/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-app-framework.md @@ -114,7 +114,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -- [**Zowe WebUI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe WebUI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe WebUI squad meetings to get involved. diff --git a/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-client-sdk.md b/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-client-sdk.md index 100bd3dcbe..e898b2de7a 100644 --- a/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-client-sdk.md +++ b/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-client-sdk.md @@ -86,7 +86,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the #zowe-cli Slack channel to ask questions about Zowe CLI and Zowe SDKs, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe CLI squad meetings to discuss Zowe SDKs issues and contibute to Zowe SDKs. diff --git a/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-zowe-explorer.md b/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-zowe-explorer.md index 881262c106..733b3ab950 100644 --- a/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-zowe-explorer.md +++ b/versioned_docs/_version-v2.13.x/getting-started/user-roadmap-zowe-explorer.md @@ -108,7 +108,7 @@ To identify the resources most relevant for you, use the following definitions o Join the `# zowe-explorer` Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -* [**Zowe Explorer squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +* [**Zowe Explorer squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe Explorer squad meetings to get involved. diff --git a/versioned_docs/_version-v2.13.x/getting-started/zowe-resources.md b/versioned_docs/_version-v2.13.x/getting-started/zowe-resources.md index 4e082d85d8..6498a73d24 100644 --- a/versioned_docs/_version-v2.13.x/getting-started/zowe-resources.md +++ b/versioned_docs/_version-v2.13.x/getting-started/zowe-resources.md @@ -50,7 +50,7 @@ The [OMP Youtube channel](https://www.youtube.com/channel/UC-WTXQQtz2m5iTflJLK59 **Connect with the community through meetings** -- [Zowe meeting calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [Zowe meeting calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe meetings to get latest Zowe updates and get involved in different squads and initiatives. diff --git a/versioned_docs/_version-v2.13.x/user-guide/user-roadmap-zowe-cli.md b/versioned_docs/_version-v2.13.x/user-guide/user-roadmap-zowe-cli.md index e9b4395ea1..cf02bbb24f 100644 --- a/versioned_docs/_version-v2.13.x/user-guide/user-roadmap-zowe-cli.md +++ b/versioned_docs/_version-v2.13.x/user-guide/user-roadmap-zowe-cli.md @@ -147,7 +147,7 @@ Zowe CLI extenders can build plug-ins that provide new commands. Join the #zowe-cli Slack channel to ask questions about Zowe CLI, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) Join Zowe CLI squad meetings to get involved. diff --git a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_10_0.md b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_10_0.md index 5972fc51d5..9a1dabd09a 100644 --- a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_10_0.md +++ b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_10_0.md @@ -13,7 +13,7 @@ Zowe Version 2.10.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_11_0.md b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_11_0.md index 4485bf1214..0b4d4f8b24 100644 --- a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_11_0.md +++ b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_11_0.md @@ -13,7 +13,7 @@ Zowe Version 2.11.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Installation and Packaging diff --git a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_12_0.md b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_12_0.md index 4360cecbdb..99d4dfbec8 100644 --- a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_12_0.md +++ b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_12_0.md @@ -13,7 +13,7 @@ Zowe Version 2.12.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Application Framework diff --git a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_5_0.md b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_5_0.md index c314d3375c..878096d972 100644 --- a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_5_0.md +++ b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_5_0.md @@ -13,7 +13,7 @@ Zowe Version 2.5.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_6_0.md b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_6_0.md index b7aa97d2f4..2fe1c413c8 100644 --- a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_6_0.md +++ b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_6_0.md @@ -13,7 +13,7 @@ Zowe Version 2.6.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_7_0.md b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_7_0.md index 96d65f3c42..63bdd286ea 100644 --- a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_7_0.md +++ b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_7_0.md @@ -13,7 +13,7 @@ Zowe Version 2.7.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_8_0.md b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_8_0.md index 0563e171b5..d5a4c36b4a 100644 --- a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_8_0.md +++ b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_8_0.md @@ -13,7 +13,7 @@ Zowe Version 2.8.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_9_0.md b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_9_0.md index 238e4dce8c..7fa09bc384 100644 --- a/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_9_0.md +++ b/versioned_docs/_version-v2.13.x/whats-new/release-notes/v2_9_0.md @@ -13,7 +13,7 @@ Zowe Version 2.9.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-apiml.md b/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-apiml.md index 750de6585a..211fa9da75 100644 --- a/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-apiml.md +++ b/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-apiml.md @@ -140,7 +140,7 @@ The following definition of skill levels about Zowe assist you with gathering th Join the #zowe-api Slack channel to ask questions about Zowe API ML, propose new ideas, and interact with the Zowe community. -- [**Zowe API ML squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe API ML squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe API ML squad meetings to get involved. diff --git a/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-app-framework.md b/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-app-framework.md index f88617ea16..87188d0506 100644 --- a/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-app-framework.md +++ b/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-app-framework.md @@ -114,7 +114,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -- [**Zowe WebUI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe WebUI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe WebUI squad meetings to get involved. diff --git a/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-client-sdk.md b/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-client-sdk.md index 100bd3dcbe..e898b2de7a 100644 --- a/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-client-sdk.md +++ b/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-client-sdk.md @@ -86,7 +86,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the #zowe-cli Slack channel to ask questions about Zowe CLI and Zowe SDKs, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe CLI squad meetings to discuss Zowe SDKs issues and contibute to Zowe SDKs. diff --git a/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-zowe-explorer.md b/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-zowe-explorer.md index 881262c106..733b3ab950 100644 --- a/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-zowe-explorer.md +++ b/versioned_docs/_version-v2.14.x/getting-started/user-roadmap-zowe-explorer.md @@ -108,7 +108,7 @@ To identify the resources most relevant for you, use the following definitions o Join the `# zowe-explorer` Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -* [**Zowe Explorer squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +* [**Zowe Explorer squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe Explorer squad meetings to get involved. diff --git a/versioned_docs/_version-v2.14.x/getting-started/zowe-resources.md b/versioned_docs/_version-v2.14.x/getting-started/zowe-resources.md index 4e082d85d8..6498a73d24 100644 --- a/versioned_docs/_version-v2.14.x/getting-started/zowe-resources.md +++ b/versioned_docs/_version-v2.14.x/getting-started/zowe-resources.md @@ -50,7 +50,7 @@ The [OMP Youtube channel](https://www.youtube.com/channel/UC-WTXQQtz2m5iTflJLK59 **Connect with the community through meetings** -- [Zowe meeting calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [Zowe meeting calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe meetings to get latest Zowe updates and get involved in different squads and initiatives. diff --git a/versioned_docs/_version-v2.14.x/user-guide/user-roadmap-zowe-cli.md b/versioned_docs/_version-v2.14.x/user-guide/user-roadmap-zowe-cli.md index f1c8c598af..176c85a434 100644 --- a/versioned_docs/_version-v2.14.x/user-guide/user-roadmap-zowe-cli.md +++ b/versioned_docs/_version-v2.14.x/user-guide/user-roadmap-zowe-cli.md @@ -147,7 +147,7 @@ Zowe CLI extenders can build plug-ins that provide new commands. Join the #zowe-cli Slack channel to ask questions about Zowe CLI, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) Join Zowe CLI squad meetings to get involved. diff --git a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_10_0.md b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_10_0.md index 5972fc51d5..9a1dabd09a 100644 --- a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_10_0.md +++ b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_10_0.md @@ -13,7 +13,7 @@ Zowe Version 2.10.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_11_0.md b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_11_0.md index 4485bf1214..0b4d4f8b24 100644 --- a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_11_0.md +++ b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_11_0.md @@ -13,7 +13,7 @@ Zowe Version 2.11.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Installation and Packaging diff --git a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_12_0.md b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_12_0.md index 4360cecbdb..99d4dfbec8 100644 --- a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_12_0.md +++ b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_12_0.md @@ -13,7 +13,7 @@ Zowe Version 2.12.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Application Framework diff --git a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_13_0.md b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_13_0.md index 477d0cf522..4ec12f8c16 100644 --- a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_13_0.md +++ b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_13_0.md @@ -13,7 +13,7 @@ Zowe Version 2.13.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_14_0.md b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_14_0.md index 70eace31e1..b9c1ef3642 100644 --- a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_14_0.md +++ b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_14_0.md @@ -13,7 +13,7 @@ Zowe Version 2.14.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_5_0.md b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_5_0.md index c314d3375c..878096d972 100644 --- a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_5_0.md +++ b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_5_0.md @@ -13,7 +13,7 @@ Zowe Version 2.5.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_6_0.md b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_6_0.md index b7aa97d2f4..2fe1c413c8 100644 --- a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_6_0.md +++ b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_6_0.md @@ -13,7 +13,7 @@ Zowe Version 2.6.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_7_0.md b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_7_0.md index 96d65f3c42..63bdd286ea 100644 --- a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_7_0.md +++ b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_7_0.md @@ -13,7 +13,7 @@ Zowe Version 2.7.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_8_0.md b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_8_0.md index 0563e171b5..d5a4c36b4a 100644 --- a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_8_0.md +++ b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_8_0.md @@ -13,7 +13,7 @@ Zowe Version 2.8.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_9_0.md b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_9_0.md index 238e4dce8c..7fa09bc384 100644 --- a/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_9_0.md +++ b/versioned_docs/_version-v2.14.x/whats-new/release-notes/v2_9_0.md @@ -13,7 +13,7 @@ Zowe Version 2.9.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v1.27.x/getting-started/user-roadmap-apiml.md b/versioned_docs/version-v1.27.x/getting-started/user-roadmap-apiml.md index a1c6c2ebe0..d418fd7924 100644 --- a/versioned_docs/version-v1.27.x/getting-started/user-roadmap-apiml.md +++ b/versioned_docs/version-v1.27.x/getting-started/user-roadmap-apiml.md @@ -148,7 +148,7 @@ The following definition of skill levels about Zowe assist you with gathering th Join the #zowe-api Slack channel to ask questions about Zowe API ML, propose new ideas, and interact with the Zowe community. -- [**Zowe API ML squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe API ML squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe API ML squad meetings to get involved. diff --git a/versioned_docs/version-v1.27.x/getting-started/user-roadmap-app-framework.md b/versioned_docs/version-v1.27.x/getting-started/user-roadmap-app-framework.md index 0d3510e19a..0d1a2bc292 100644 --- a/versioned_docs/version-v1.27.x/getting-started/user-roadmap-app-framework.md +++ b/versioned_docs/version-v1.27.x/getting-started/user-roadmap-app-framework.md @@ -122,7 +122,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -- [**Zowe WebUI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe WebUI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe WebUI squad meetings to get involved. diff --git a/versioned_docs/version-v1.27.x/getting-started/user-roadmap-client-sdk.md b/versioned_docs/version-v1.27.x/getting-started/user-roadmap-client-sdk.md index ccc0e887da..26d9cdbe12 100644 --- a/versioned_docs/version-v1.27.x/getting-started/user-roadmap-client-sdk.md +++ b/versioned_docs/version-v1.27.x/getting-started/user-roadmap-client-sdk.md @@ -86,7 +86,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the #zowe-cli Slack channel to ask questions about Zowe CLI and Zowe SDKs, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe CLI squad meetings to discuss Zowe SDKs issues and contibute to Zowe SDKs. diff --git a/versioned_docs/version-v1.27.x/getting-started/user-roadmap-zowe-cli.md b/versioned_docs/version-v1.27.x/getting-started/user-roadmap-zowe-cli.md index 57e4d3388c..2b8f661abb 100644 --- a/versioned_docs/version-v1.27.x/getting-started/user-roadmap-zowe-cli.md +++ b/versioned_docs/version-v1.27.x/getting-started/user-roadmap-zowe-cli.md @@ -140,7 +140,7 @@ Zowe CLI extenders can build plug-ins that provide new commands. Join the #zowe-cli Slack channel to ask questions about Zowe CLI, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe CLI squad meetings to get involved. diff --git a/versioned_docs/version-v1.27.x/getting-started/user-roadmap-zowe-explorer.md b/versioned_docs/version-v1.27.x/getting-started/user-roadmap-zowe-explorer.md index 594fa749e5..f373a59ebd 100644 --- a/versioned_docs/version-v1.27.x/getting-started/user-roadmap-zowe-explorer.md +++ b/versioned_docs/version-v1.27.x/getting-started/user-roadmap-zowe-explorer.md @@ -101,7 +101,7 @@ The following definition of skill levels about Zowe Explorer helps you find the Join the `# zowe-explorer` Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -* [**Zowe Explorer squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +* [**Zowe Explorer squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe Explorer squad meetings to get involved. diff --git a/versioned_docs/version-v1.27.x/getting-started/zowe-resources.md b/versioned_docs/version-v1.27.x/getting-started/zowe-resources.md index 6ba1b3f2be..96a7ce8b50 100644 --- a/versioned_docs/version-v1.27.x/getting-started/zowe-resources.md +++ b/versioned_docs/version-v1.27.x/getting-started/zowe-resources.md @@ -50,7 +50,7 @@ The [OMP Youtube channel](https://www.youtube.com/channel/UC-WTXQQtz2m5iTflJLK59 **Connect with the community through meetings** -- [Zowe meeting calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [Zowe meeting calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe meetings to get latest Zowe updates and get involved in different squads and initiatives. diff --git a/versioned_docs/version-v1.28.x/getting-started/user-roadmap-apiml.md b/versioned_docs/version-v1.28.x/getting-started/user-roadmap-apiml.md index a1c6c2ebe0..d418fd7924 100644 --- a/versioned_docs/version-v1.28.x/getting-started/user-roadmap-apiml.md +++ b/versioned_docs/version-v1.28.x/getting-started/user-roadmap-apiml.md @@ -148,7 +148,7 @@ The following definition of skill levels about Zowe assist you with gathering th Join the #zowe-api Slack channel to ask questions about Zowe API ML, propose new ideas, and interact with the Zowe community. -- [**Zowe API ML squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe API ML squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe API ML squad meetings to get involved. diff --git a/versioned_docs/version-v1.28.x/getting-started/user-roadmap-app-framework.md b/versioned_docs/version-v1.28.x/getting-started/user-roadmap-app-framework.md index 0d3510e19a..0d1a2bc292 100644 --- a/versioned_docs/version-v1.28.x/getting-started/user-roadmap-app-framework.md +++ b/versioned_docs/version-v1.28.x/getting-started/user-roadmap-app-framework.md @@ -122,7 +122,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -- [**Zowe WebUI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe WebUI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe WebUI squad meetings to get involved. diff --git a/versioned_docs/version-v1.28.x/getting-started/user-roadmap-client-sdk.md b/versioned_docs/version-v1.28.x/getting-started/user-roadmap-client-sdk.md index d1fb12d8ad..66da7f5bad 100644 --- a/versioned_docs/version-v1.28.x/getting-started/user-roadmap-client-sdk.md +++ b/versioned_docs/version-v1.28.x/getting-started/user-roadmap-client-sdk.md @@ -86,7 +86,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the #zowe-cli Slack channel to ask questions about Zowe CLI and Zowe SDKs, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe CLI squad meetings to discuss Zowe SDKs issues and contibute to Zowe SDKs. diff --git a/versioned_docs/version-v1.28.x/getting-started/user-roadmap-zowe-cli.md b/versioned_docs/version-v1.28.x/getting-started/user-roadmap-zowe-cli.md index 4dce02daa9..0012763844 100644 --- a/versioned_docs/version-v1.28.x/getting-started/user-roadmap-zowe-cli.md +++ b/versioned_docs/version-v1.28.x/getting-started/user-roadmap-zowe-cli.md @@ -140,7 +140,7 @@ Zowe CLI extenders can build plug-ins that provide new commands. Join the #zowe-cli Slack channel to ask questions about Zowe CLI, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe CLI squad meetings to get involved. diff --git a/versioned_docs/version-v1.28.x/getting-started/user-roadmap-zowe-explorer.md b/versioned_docs/version-v1.28.x/getting-started/user-roadmap-zowe-explorer.md index 594fa749e5..f373a59ebd 100644 --- a/versioned_docs/version-v1.28.x/getting-started/user-roadmap-zowe-explorer.md +++ b/versioned_docs/version-v1.28.x/getting-started/user-roadmap-zowe-explorer.md @@ -101,7 +101,7 @@ The following definition of skill levels about Zowe Explorer helps you find the Join the `# zowe-explorer` Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -* [**Zowe Explorer squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +* [**Zowe Explorer squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe Explorer squad meetings to get involved. diff --git a/versioned_docs/version-v1.28.x/getting-started/zowe-resources.md b/versioned_docs/version-v1.28.x/getting-started/zowe-resources.md index 6ba1b3f2be..96a7ce8b50 100644 --- a/versioned_docs/version-v1.28.x/getting-started/zowe-resources.md +++ b/versioned_docs/version-v1.28.x/getting-started/zowe-resources.md @@ -50,7 +50,7 @@ The [OMP Youtube channel](https://www.youtube.com/channel/UC-WTXQQtz2m5iTflJLK59 **Connect with the community through meetings** -- [Zowe meeting calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [Zowe meeting calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe meetings to get latest Zowe updates and get involved in different squads and initiatives. diff --git a/versioned_docs/version-v2.15.x/getting-started/user-roadmap-apiml.md b/versioned_docs/version-v2.15.x/getting-started/user-roadmap-apiml.md index f8b7aeff83..6fa8ec8bc2 100644 --- a/versioned_docs/version-v2.15.x/getting-started/user-roadmap-apiml.md +++ b/versioned_docs/version-v2.15.x/getting-started/user-roadmap-apiml.md @@ -140,7 +140,7 @@ The following definition of skill levels about Zowe assist you with gathering th Join the #zowe-api Slack channel to ask questions about Zowe API ML, propose new ideas, and interact with the Zowe community. -- [**Zowe API ML squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe API ML squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe API ML squad meetings to get involved. diff --git a/versioned_docs/version-v2.15.x/getting-started/user-roadmap-app-framework.md b/versioned_docs/version-v2.15.x/getting-started/user-roadmap-app-framework.md index f88617ea16..87188d0506 100644 --- a/versioned_docs/version-v2.15.x/getting-started/user-roadmap-app-framework.md +++ b/versioned_docs/version-v2.15.x/getting-started/user-roadmap-app-framework.md @@ -114,7 +114,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -- [**Zowe WebUI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe WebUI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe WebUI squad meetings to get involved. diff --git a/versioned_docs/version-v2.15.x/getting-started/user-roadmap-client-sdk.md b/versioned_docs/version-v2.15.x/getting-started/user-roadmap-client-sdk.md index 8f8940a47b..79fcbde67d 100644 --- a/versioned_docs/version-v2.15.x/getting-started/user-roadmap-client-sdk.md +++ b/versioned_docs/version-v2.15.x/getting-started/user-roadmap-client-sdk.md @@ -86,7 +86,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the #zowe-cli Slack channel to ask questions about Zowe CLI and Zowe SDKs, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe CLI squad meetings to discuss Zowe SDKs issues and contibute to Zowe SDKs. diff --git a/versioned_docs/version-v2.15.x/getting-started/user-roadmap-zowe-explorer.md b/versioned_docs/version-v2.15.x/getting-started/user-roadmap-zowe-explorer.md index 881262c106..733b3ab950 100644 --- a/versioned_docs/version-v2.15.x/getting-started/user-roadmap-zowe-explorer.md +++ b/versioned_docs/version-v2.15.x/getting-started/user-roadmap-zowe-explorer.md @@ -108,7 +108,7 @@ To identify the resources most relevant for you, use the following definitions o Join the `# zowe-explorer` Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -* [**Zowe Explorer squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +* [**Zowe Explorer squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe Explorer squad meetings to get involved. diff --git a/versioned_docs/version-v2.15.x/getting-started/zowe-resources.md b/versioned_docs/version-v2.15.x/getting-started/zowe-resources.md index 4e082d85d8..6498a73d24 100644 --- a/versioned_docs/version-v2.15.x/getting-started/zowe-resources.md +++ b/versioned_docs/version-v2.15.x/getting-started/zowe-resources.md @@ -50,7 +50,7 @@ The [OMP Youtube channel](https://www.youtube.com/channel/UC-WTXQQtz2m5iTflJLK59 **Connect with the community through meetings** -- [Zowe meeting calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [Zowe meeting calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe meetings to get latest Zowe updates and get involved in different squads and initiatives. diff --git a/versioned_docs/version-v2.15.x/user-guide/user-roadmap-zowe-cli.md b/versioned_docs/version-v2.15.x/user-guide/user-roadmap-zowe-cli.md index 182143acce..c6a5442da8 100644 --- a/versioned_docs/version-v2.15.x/user-guide/user-roadmap-zowe-cli.md +++ b/versioned_docs/version-v2.15.x/user-guide/user-roadmap-zowe-cli.md @@ -147,7 +147,7 @@ Zowe CLI extenders can build plug-ins that provide new commands. Join the #zowe-cli Slack channel to ask questions about Zowe CLI, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) Join Zowe CLI squad meetings to get involved. diff --git a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_10_0.md b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_10_0.md index 5972fc51d5..9a1dabd09a 100644 --- a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_10_0.md +++ b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_10_0.md @@ -13,7 +13,7 @@ Zowe Version 2.10.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_11_0.md b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_11_0.md index 4485bf1214..0b4d4f8b24 100644 --- a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_11_0.md +++ b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_11_0.md @@ -13,7 +13,7 @@ Zowe Version 2.11.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Installation and Packaging diff --git a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_12_0.md b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_12_0.md index 4360cecbdb..99d4dfbec8 100644 --- a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_12_0.md +++ b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_12_0.md @@ -13,7 +13,7 @@ Zowe Version 2.12.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Application Framework diff --git a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_13_0.md b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_13_0.md index 477d0cf522..4ec12f8c16 100644 --- a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_13_0.md +++ b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_13_0.md @@ -13,7 +13,7 @@ Zowe Version 2.13.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_14_0.md b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_14_0.md index 70eace31e1..b9c1ef3642 100644 --- a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_14_0.md +++ b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_14_0.md @@ -13,7 +13,7 @@ Zowe Version 2.14.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_15_0.md b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_15_0.md index 6b1c83cfe8..f8148e9306 100644 --- a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_15_0.md +++ b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_15_0.md @@ -13,7 +13,7 @@ Zowe Version 2.15.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_5_0.md b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_5_0.md index c314d3375c..878096d972 100644 --- a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_5_0.md +++ b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_5_0.md @@ -13,7 +13,7 @@ Zowe Version 2.5.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_6_0.md b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_6_0.md index b7aa97d2f4..2fe1c413c8 100644 --- a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_6_0.md +++ b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_6_0.md @@ -13,7 +13,7 @@ Zowe Version 2.6.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_7_0.md b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_7_0.md index 96d65f3c42..63bdd286ea 100644 --- a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_7_0.md +++ b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_7_0.md @@ -13,7 +13,7 @@ Zowe Version 2.7.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_8_0.md b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_8_0.md index 0563e171b5..d5a4c36b4a 100644 --- a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_8_0.md +++ b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_8_0.md @@ -13,7 +13,7 @@ Zowe Version 2.8.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_9_0.md b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_9_0.md index 238e4dce8c..7fa09bc384 100644 --- a/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_9_0.md +++ b/versioned_docs/version-v2.15.x/whats-new/release-notes/v2_9_0.md @@ -13,7 +13,7 @@ Zowe Version 2.9.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.16.x/getting-started/user-roadmap-apiml.md b/versioned_docs/version-v2.16.x/getting-started/user-roadmap-apiml.md index f8b7aeff83..6fa8ec8bc2 100644 --- a/versioned_docs/version-v2.16.x/getting-started/user-roadmap-apiml.md +++ b/versioned_docs/version-v2.16.x/getting-started/user-roadmap-apiml.md @@ -140,7 +140,7 @@ The following definition of skill levels about Zowe assist you with gathering th Join the #zowe-api Slack channel to ask questions about Zowe API ML, propose new ideas, and interact with the Zowe community. -- [**Zowe API ML squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe API ML squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe API ML squad meetings to get involved. diff --git a/versioned_docs/version-v2.16.x/getting-started/user-roadmap-app-framework.md b/versioned_docs/version-v2.16.x/getting-started/user-roadmap-app-framework.md index f88617ea16..87188d0506 100644 --- a/versioned_docs/version-v2.16.x/getting-started/user-roadmap-app-framework.md +++ b/versioned_docs/version-v2.16.x/getting-started/user-roadmap-app-framework.md @@ -114,7 +114,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -- [**Zowe WebUI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe WebUI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe WebUI squad meetings to get involved. diff --git a/versioned_docs/version-v2.16.x/getting-started/user-roadmap-client-sdk.md b/versioned_docs/version-v2.16.x/getting-started/user-roadmap-client-sdk.md index 8f8940a47b..79fcbde67d 100644 --- a/versioned_docs/version-v2.16.x/getting-started/user-roadmap-client-sdk.md +++ b/versioned_docs/version-v2.16.x/getting-started/user-roadmap-client-sdk.md @@ -86,7 +86,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the #zowe-cli Slack channel to ask questions about Zowe CLI and Zowe SDKs, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe CLI squad meetings to discuss Zowe SDKs issues and contibute to Zowe SDKs. diff --git a/versioned_docs/version-v2.16.x/getting-started/user-roadmap-zowe-explorer.md b/versioned_docs/version-v2.16.x/getting-started/user-roadmap-zowe-explorer.md index 881262c106..733b3ab950 100644 --- a/versioned_docs/version-v2.16.x/getting-started/user-roadmap-zowe-explorer.md +++ b/versioned_docs/version-v2.16.x/getting-started/user-roadmap-zowe-explorer.md @@ -108,7 +108,7 @@ To identify the resources most relevant for you, use the following definitions o Join the `# zowe-explorer` Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -* [**Zowe Explorer squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +* [**Zowe Explorer squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe Explorer squad meetings to get involved. diff --git a/versioned_docs/version-v2.16.x/getting-started/zowe-resources.md b/versioned_docs/version-v2.16.x/getting-started/zowe-resources.md index 4e082d85d8..6498a73d24 100644 --- a/versioned_docs/version-v2.16.x/getting-started/zowe-resources.md +++ b/versioned_docs/version-v2.16.x/getting-started/zowe-resources.md @@ -50,7 +50,7 @@ The [OMP Youtube channel](https://www.youtube.com/channel/UC-WTXQQtz2m5iTflJLK59 **Connect with the community through meetings** -- [Zowe meeting calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [Zowe meeting calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe meetings to get latest Zowe updates and get involved in different squads and initiatives. diff --git a/versioned_docs/version-v2.16.x/user-guide/user-roadmap-zowe-cli.md b/versioned_docs/version-v2.16.x/user-guide/user-roadmap-zowe-cli.md index e2640d9abf..728f6b6059 100644 --- a/versioned_docs/version-v2.16.x/user-guide/user-roadmap-zowe-cli.md +++ b/versioned_docs/version-v2.16.x/user-guide/user-roadmap-zowe-cli.md @@ -147,7 +147,7 @@ Zowe CLI extenders can build plug-ins that provide new commands. Join the #zowe-cli Slack channel to ask questions about Zowe CLI, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) Join Zowe CLI squad meetings to get involved. diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_10_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_10_0.md index 5972fc51d5..9a1dabd09a 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_10_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_10_0.md @@ -13,7 +13,7 @@ Zowe Version 2.10.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_11_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_11_0.md index 4485bf1214..0b4d4f8b24 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_11_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_11_0.md @@ -13,7 +13,7 @@ Zowe Version 2.11.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Installation and Packaging diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_12_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_12_0.md index 4360cecbdb..99d4dfbec8 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_12_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_12_0.md @@ -13,7 +13,7 @@ Zowe Version 2.12.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Application Framework diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_13_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_13_0.md index 477d0cf522..4ec12f8c16 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_13_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_13_0.md @@ -13,7 +13,7 @@ Zowe Version 2.13.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_14_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_14_0.md index 70eace31e1..b9c1ef3642 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_14_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_14_0.md @@ -13,7 +13,7 @@ Zowe Version 2.14.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_15_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_15_0.md index 6b1c83cfe8..f8148e9306 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_15_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_15_0.md @@ -13,7 +13,7 @@ Zowe Version 2.15.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_16_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_16_0.md index 6166a1becd..a350bf1d91 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_16_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_16_0.md @@ -13,7 +13,7 @@ Zowe Version 2.16.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Install Packaging diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_5_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_5_0.md index c314d3375c..878096d972 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_5_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_5_0.md @@ -13,7 +13,7 @@ Zowe Version 2.5.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_6_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_6_0.md index b7aa97d2f4..2fe1c413c8 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_6_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_6_0.md @@ -13,7 +13,7 @@ Zowe Version 2.6.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_7_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_7_0.md index 96d65f3c42..63bdd286ea 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_7_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_7_0.md @@ -13,7 +13,7 @@ Zowe Version 2.7.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_8_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_8_0.md index 0563e171b5..d5a4c36b4a 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_8_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_8_0.md @@ -13,7 +13,7 @@ Zowe Version 2.8.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_9_0.md b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_9_0.md index 238e4dce8c..7fa09bc384 100644 --- a/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_9_0.md +++ b/versioned_docs/version-v2.16.x/whats-new/release-notes/v2_9_0.md @@ -13,7 +13,7 @@ Zowe Version 2.9.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.17.x/getting-started/user-roadmap-apiml.md b/versioned_docs/version-v2.17.x/getting-started/user-roadmap-apiml.md index 1272dc8615..e61b37c5cc 100644 --- a/versioned_docs/version-v2.17.x/getting-started/user-roadmap-apiml.md +++ b/versioned_docs/version-v2.17.x/getting-started/user-roadmap-apiml.md @@ -140,7 +140,7 @@ The following definition of skill levels about Zowe assist you with gathering th Join the #zowe-api Slack channel to ask questions about Zowe API ML, propose new ideas, and interact with the Zowe community. -- [**Zowe API ML squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe API ML squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe API ML squad meetings to get involved. diff --git a/versioned_docs/version-v2.17.x/getting-started/user-roadmap-app-framework.md b/versioned_docs/version-v2.17.x/getting-started/user-roadmap-app-framework.md index d74e0b57da..d06478615b 100644 --- a/versioned_docs/version-v2.17.x/getting-started/user-roadmap-app-framework.md +++ b/versioned_docs/version-v2.17.x/getting-started/user-roadmap-app-framework.md @@ -114,7 +114,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -- [**Zowe WebUI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe WebUI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe WebUI squad meetings to get involved. diff --git a/versioned_docs/version-v2.17.x/getting-started/user-roadmap-client-sdk.md b/versioned_docs/version-v2.17.x/getting-started/user-roadmap-client-sdk.md index 484749d271..505e3458de 100644 --- a/versioned_docs/version-v2.17.x/getting-started/user-roadmap-client-sdk.md +++ b/versioned_docs/version-v2.17.x/getting-started/user-roadmap-client-sdk.md @@ -86,7 +86,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the #zowe-cli Slack channel to ask questions about Zowe CLI and Zowe SDKs, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe CLI squad meetings to discuss Zowe SDKs issues and contibute to Zowe SDKs. diff --git a/versioned_docs/version-v2.17.x/getting-started/user-roadmap-zowe-explorer.md b/versioned_docs/version-v2.17.x/getting-started/user-roadmap-zowe-explorer.md index 881262c106..733b3ab950 100644 --- a/versioned_docs/version-v2.17.x/getting-started/user-roadmap-zowe-explorer.md +++ b/versioned_docs/version-v2.17.x/getting-started/user-roadmap-zowe-explorer.md @@ -108,7 +108,7 @@ To identify the resources most relevant for you, use the following definitions o Join the `# zowe-explorer` Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -* [**Zowe Explorer squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +* [**Zowe Explorer squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe Explorer squad meetings to get involved. diff --git a/versioned_docs/version-v2.17.x/getting-started/zowe-resources.md b/versioned_docs/version-v2.17.x/getting-started/zowe-resources.md index 796954115a..79d47fcd41 100644 --- a/versioned_docs/version-v2.17.x/getting-started/zowe-resources.md +++ b/versioned_docs/version-v2.17.x/getting-started/zowe-resources.md @@ -50,7 +50,7 @@ The [OMP Youtube channel](https://www.youtube.com/channel/UC-WTXQQtz2m5iTflJLK59 **Connect with the community through meetings** -- [Zowe meeting calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [Zowe meeting calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe meetings to get latest Zowe updates and get involved in different squads and initiatives. diff --git a/versioned_docs/version-v2.17.x/user-guide/user-roadmap-zowe-cli.md b/versioned_docs/version-v2.17.x/user-guide/user-roadmap-zowe-cli.md index fbed793bad..181998e14a 100644 --- a/versioned_docs/version-v2.17.x/user-guide/user-roadmap-zowe-cli.md +++ b/versioned_docs/version-v2.17.x/user-guide/user-roadmap-zowe-cli.md @@ -147,7 +147,7 @@ Zowe CLI extenders can build plug-ins that provide new commands. Join the #zowe-cli Slack channel to ask questions about Zowe CLI, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) Join Zowe CLI squad meetings to get involved. diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_10_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_10_0.md index 5972fc51d5..9a1dabd09a 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_10_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_10_0.md @@ -13,7 +13,7 @@ Zowe Version 2.10.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_11_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_11_0.md index 4485bf1214..0b4d4f8b24 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_11_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_11_0.md @@ -13,7 +13,7 @@ Zowe Version 2.11.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Installation and Packaging diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_12_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_12_0.md index 4360cecbdb..99d4dfbec8 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_12_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_12_0.md @@ -13,7 +13,7 @@ Zowe Version 2.12.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Application Framework diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_13_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_13_0.md index 477d0cf522..4ec12f8c16 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_13_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_13_0.md @@ -13,7 +13,7 @@ Zowe Version 2.13.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_14_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_14_0.md index 70eace31e1..b9c1ef3642 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_14_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_14_0.md @@ -13,7 +13,7 @@ Zowe Version 2.14.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_15_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_15_0.md index 6b1c83cfe8..f8148e9306 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_15_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_15_0.md @@ -13,7 +13,7 @@ Zowe Version 2.15.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_16_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_16_0.md index 6166a1becd..a350bf1d91 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_16_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_16_0.md @@ -13,7 +13,7 @@ Zowe Version 2.16.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Install Packaging diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_17_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_17_0.md index 8188e08eb9..854c3e427e 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_17_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_17_0.md @@ -13,7 +13,7 @@ Zowe Version 2.17.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_5_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_5_0.md index c314d3375c..878096d972 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_5_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_5_0.md @@ -13,7 +13,7 @@ Zowe Version 2.5.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_6_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_6_0.md index b7aa97d2f4..2fe1c413c8 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_6_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_6_0.md @@ -13,7 +13,7 @@ Zowe Version 2.6.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_7_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_7_0.md index 96d65f3c42..63bdd286ea 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_7_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_7_0.md @@ -13,7 +13,7 @@ Zowe Version 2.7.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_8_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_8_0.md index 0563e171b5..d5a4c36b4a 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_8_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_8_0.md @@ -13,7 +13,7 @@ Zowe Version 2.8.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_9_0.md b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_9_0.md index 238e4dce8c..7fa09bc384 100644 --- a/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_9_0.md +++ b/versioned_docs/version-v2.17.x/whats-new/release-notes/v2_9_0.md @@ -13,7 +13,7 @@ Zowe Version 2.9.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.18.x/getting-started/user-roadmap-apiml.md b/versioned_docs/version-v2.18.x/getting-started/user-roadmap-apiml.md index 1272dc8615..e61b37c5cc 100644 --- a/versioned_docs/version-v2.18.x/getting-started/user-roadmap-apiml.md +++ b/versioned_docs/version-v2.18.x/getting-started/user-roadmap-apiml.md @@ -140,7 +140,7 @@ The following definition of skill levels about Zowe assist you with gathering th Join the #zowe-api Slack channel to ask questions about Zowe API ML, propose new ideas, and interact with the Zowe community. -- [**Zowe API ML squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe API ML squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe API ML squad meetings to get involved. diff --git a/versioned_docs/version-v2.18.x/getting-started/user-roadmap-app-framework.md b/versioned_docs/version-v2.18.x/getting-started/user-roadmap-app-framework.md index d74e0b57da..d06478615b 100644 --- a/versioned_docs/version-v2.18.x/getting-started/user-roadmap-app-framework.md +++ b/versioned_docs/version-v2.18.x/getting-started/user-roadmap-app-framework.md @@ -114,7 +114,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -- [**Zowe WebUI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe WebUI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe WebUI squad meetings to get involved. diff --git a/versioned_docs/version-v2.18.x/getting-started/user-roadmap-client-sdk.md b/versioned_docs/version-v2.18.x/getting-started/user-roadmap-client-sdk.md index 484749d271..505e3458de 100644 --- a/versioned_docs/version-v2.18.x/getting-started/user-roadmap-client-sdk.md +++ b/versioned_docs/version-v2.18.x/getting-started/user-roadmap-client-sdk.md @@ -86,7 +86,7 @@ The following definition of skill levels about Zowe will help you gather most re Join the #zowe-cli Slack channel to ask questions about Zowe CLI and Zowe SDKs, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe CLI squad meetings to discuss Zowe SDKs issues and contibute to Zowe SDKs. diff --git a/versioned_docs/version-v2.18.x/getting-started/user-roadmap-zowe-explorer.md b/versioned_docs/version-v2.18.x/getting-started/user-roadmap-zowe-explorer.md index 881262c106..733b3ab950 100644 --- a/versioned_docs/version-v2.18.x/getting-started/user-roadmap-zowe-explorer.md +++ b/versioned_docs/version-v2.18.x/getting-started/user-roadmap-zowe-explorer.md @@ -108,7 +108,7 @@ To identify the resources most relevant for you, use the following definitions o Join the `# zowe-explorer` Slack channel to ask questions, propose new ideas, and interact with the Zowe community. -* [**Zowe Explorer squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +* [**Zowe Explorer squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe Explorer squad meetings to get involved. diff --git a/versioned_docs/version-v2.18.x/getting-started/zowe-resources.md b/versioned_docs/version-v2.18.x/getting-started/zowe-resources.md index 796954115a..79d47fcd41 100644 --- a/versioned_docs/version-v2.18.x/getting-started/zowe-resources.md +++ b/versioned_docs/version-v2.18.x/getting-started/zowe-resources.md @@ -50,7 +50,7 @@ The [OMP Youtube channel](https://www.youtube.com/channel/UC-WTXQQtz2m5iTflJLK59 **Connect with the community through meetings** -- [Zowe meeting calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [Zowe meeting calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) You can join one of the Zowe meetings to get latest Zowe updates and get involved in different squads and initiatives. diff --git a/versioned_docs/version-v2.18.x/user-guide/user-roadmap-zowe-cli.md b/versioned_docs/version-v2.18.x/user-guide/user-roadmap-zowe-cli.md index 27646f368c..2c0b8093d8 100644 --- a/versioned_docs/version-v2.18.x/user-guide/user-roadmap-zowe-cli.md +++ b/versioned_docs/version-v2.18.x/user-guide/user-roadmap-zowe-cli.md @@ -147,7 +147,7 @@ Zowe CLI extenders can build plug-ins that provide new commands. Join the #zowe-cli Slack channel to ask questions about Zowe CLI, propose new ideas, and interact with the Zowe community. -- [**Zowe CLI squad meetings**](https://lists.openmainframeproject.org/g/zowe-dev/calendar) +- [**Zowe CLI squad meetings**](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) Join Zowe CLI squad meetings to get involved. diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_10_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_10_0.md index 5972fc51d5..9a1dabd09a 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_10_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_10_0.md @@ -13,7 +13,7 @@ Zowe Version 2.10.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_11_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_11_0.md index 4485bf1214..0b4d4f8b24 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_11_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_11_0.md @@ -13,7 +13,7 @@ Zowe Version 2.11.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Installation and Packaging diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_12_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_12_0.md index 4360cecbdb..99d4dfbec8 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_12_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_12_0.md @@ -13,7 +13,7 @@ Zowe Version 2.12.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Application Framework diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_13_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_13_0.md index 477d0cf522..4ec12f8c16 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_13_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_13_0.md @@ -13,7 +13,7 @@ Zowe Version 2.13.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_14_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_14_0.md index 70eace31e1..b9c1ef3642 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_14_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_14_0.md @@ -13,7 +13,7 @@ Zowe Version 2.14.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_15_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_15_0.md index 6b1c83cfe8..f8148e9306 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_15_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_15_0.md @@ -13,7 +13,7 @@ Zowe Version 2.15.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_16_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_16_0.md index 6166a1becd..a350bf1d91 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_16_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_16_0.md @@ -13,7 +13,7 @@ Zowe Version 2.16.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Install Packaging diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_17_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_17_0.md index 8188e08eb9..854c3e427e 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_17_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_17_0.md @@ -13,7 +13,7 @@ Zowe Version 2.17.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_18_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_18_0.md index 766a14eb3a..b9792b999b 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_18_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_18_0.md @@ -13,7 +13,7 @@ Zowe Version 2.18.0 contains the enhancements that are described in the followin :::info find out more To watch a demo of new enhancements and updated features included in a Zowe minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe Application Framework diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_5_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_5_0.md index c314d3375c..878096d972 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_5_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_5_0.md @@ -13,7 +13,7 @@ Zowe Version 2.5.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_6_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_6_0.md index b7aa97d2f4..2fe1c413c8 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_6_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_6_0.md @@ -13,7 +13,7 @@ Zowe Version 2.6.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe API Mediation Layer diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_7_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_7_0.md index 96d65f3c42..63bdd286ea 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_7_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_7_0.md @@ -13,7 +13,7 @@ Zowe Version 2.7.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_8_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_8_0.md index 0563e171b5..d5a4c36b4a 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_8_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_8_0.md @@ -13,7 +13,7 @@ Zowe Version 2.8.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging diff --git a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_9_0.md b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_9_0.md index 238e4dce8c..7fa09bc384 100644 --- a/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_9_0.md +++ b/versioned_docs/version-v2.18.x/whats-new/release-notes/v2_9_0.md @@ -13,7 +13,7 @@ Zowe Version 2.9.0 contains the enhancements that are described in the following :::info find out more To watch a demo of new enhancements and updated features included in a Zowe V2 minor release, look for the release demo recording in the [Zowe V2 System Demo playlist](https://www.youtube.com/playlist?list=PL8REpLGaY9QGjSTAqZaWxLG_g-jW1qGmo) on YouTube. -System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://lists.openmainframeproject.org/g/zowe-dev/calendar) for the latest schedule. +System demos are typically held the week after a minor release becomes available. Check the [Open Mainframe Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/zowe) for the latest schedule. ::: ### Zowe installation and packaging