Skip to content

Commit

Permalink
Zowe Suite v1.28.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zowe-robot authored Aug 16, 2022
2 parents cbe3750 + 5487ec7 commit d74fab1
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to the sample react app will be documented in this file.

## 2.0.1

- Bugfix: Schema file was not included, preventing installation as a component
- Bugfix: Manifest build content template was never resolved, so it has been removed.


## 2.0.0

- Breaking change: The app was enhanced to work with Zowe v2. It is not guaranteed to work with the v1 desktop.
Expand Down
9 changes: 3 additions & 6 deletions manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: react-sample
id: org.zowe.zlux.sample.react
# Without the v
version: 2.0.0
version: 2.0.1
# Human readable component name
title: React Sample
# Human readable component description
Expand All @@ -19,10 +19,7 @@ repository:
type: git
url: https://github.com/zowe/sample-react-app.git
# we do not specify encoding here because its already tagged ascii
build:
branch: "{{build.branch}}"
number: "{{build.number}}"
commitHash: "{{build.commitHash}}"
timestamp: "{{build.timestamp}}"
appfwPlugins:
- path: .
schemas:
configs: schemas/trivial-schema.json
2 changes: 1 addition & 1 deletion pluginDefinition.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"identifier": "org.zowe.zlux.sample.react",
"apiVersion": "2.0.0",
"pluginVersion": "2.0.0",
"pluginVersion": "2.0.1",
"pluginType": "application",
"license": "EPL-2.0",
"author": "Zowe",
Expand Down
21 changes: 21 additions & 0 deletions schemas/trivial-schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://abcdef.com/schemas/v2/sample-react",
"allOf": [
{ "$ref": "https://zowe.org/schemas/v2/server-base" },
{
"type": "object",
"properties": {
"components": {
"type": "object",
"additionalProperties": true,
"properties": {
"sample-react": {
"$ref": "https://zowe.org/schemas/v2/server-base#zoweComponent"
}
}
}
}
}
]
}

0 comments on commit d74fab1

Please sign in to comment.