From c678f6c1b9f3ae98ec90cc3df17f4dd08185bb6b Mon Sep 17 00:00:00 2001 From: Alasdair Hurst Date: Mon, 4 Apr 2022 11:29:45 +0100 Subject: [PATCH 1/2] WIP --- README.md | 13 +++++++------ api-builder-plugin-dc-postgres/CHANGELOG.md | 4 ++++ api-builder-plugin-dc-postgres/package.json | 8 +++----- api-builder-plugin-fc-jira/Changelog.md | 4 ++++ api-builder-plugin-fc-jira/package.json | 8 ++++---- api-builder-plugin-fc-sap-lama/CHANGELOG.md | 5 +++++ api-builder-plugin-fc-sap-lama/package.json | 8 ++++---- api-builder-plugin-fc-syncplicity/CHANGELOG.md | 4 ++++ api-builder-plugin-fc-syncplicity/package.json | 10 +++++----- api-builder-plugin-fn-aws-athena/Changelog.md | 4 ++++ api-builder-plugin-fn-aws-athena/package.json | 6 ++---- api-builder-plugin-fn-aws-lambda/Changelog.md | 3 +++ api-builder-plugin-fn-aws-lambda/package.json | 6 ++---- api-builder-plugin-fn-elasticsearch/package.json | 6 ++---- api-builder-plugin-fn-file/package.json | 6 ++---- api-builder-plugin-fn-foreach/package.json | 3 ++- api-builder-plugin-fn-google-maps/package.json | 6 ++---- api-builder-plugin-fn-kafka-producer/package.json | 6 ++---- api-builder-plugin-fn-mongodb/package.json | 6 ++---- api-builder-plugin-fn-objectfilter/package.json | 6 ++---- api-builder-plugin-fn-odata/package.json | 6 ++---- api-builder-plugin-fn-power/package.json | 6 ++---- api-builder-plugin-fn-redis/package.json | 6 ++---- api-builder-plugin-fn-xml-node/package.json | 6 ++---- api-builder-plugin-utils/package.json | 6 ++---- 25 files changed, 75 insertions(+), 77 deletions(-) diff --git a/README.md b/README.md index 27079602..5c272829 100644 --- a/README.md +++ b/README.md @@ -71,24 +71,25 @@ If you found an issue or you have improved an existing plugin yourself, we highl - Especially the fields: - __name__: should start with: `@axway-api-builder-ext/api-builder-plugin....` - __version__: Stable has a version 1.x.x, all other something 0.x.x - - __description__: Provide a meaningful description. This will appear in the API-Builder UI plugin dialog - - __author__: Add your GitHub ID or email address (this is used to assign issues/pullrequests) + - __description__: Provide a meaningful description. This will appear in the API Builder UI "Plugins" page + - __author__: Add your GitHub ID or email address (this is used to assign issues/pull requests) - __homepage__: Should point to your unique folder within this repository - __keywords__: Add more keywords to make it easier to discover your plugin + -__engines.apibuilder__: Documents range of API Builder versions that the plugin is compatible with. Remember that modifying this to increase the minimum compatible API Builder version is a breaking change, so update the major version of your plugin when you do so. - There might be more changes needed depending on what your plugin does 7. Create new GitHub actions based on the templates `.github/workflows/*_template` - these workflows are used to automatically tests and release/publish your plugin - - Replace all occurencies of `NAME_OF_YOUR_PLUGIN` in both workflow files with a valid name not longer than 20 characters - - Replace all occurencies of `THE_FOLDER_NAME_OF_YOUR_PLUGIN` with the folder name of your plugin + - Replace all occurrences of `NAME_OF_YOUR_PLUGIN` in both workflow files with a valid name not longer than 20 characters + - Replace all occurrences of `THE_FOLDER_NAME_OF_YOUR_PLUGIN` with the folder name of your plugin - You may skip this step and we will add the workflows for you 8. Provide a README.md - What your plugin does - How to use it (e.g. add images, examples, etc.) to make it easy for developers to understand it - - Mention potential limitions/caveats/known issues + - Mention potential limitations/caveats/known issues 9. Create a package-lock.json - Run `npm install` to create a `package-lock.json` - This is required to lock down used modules before testing and releasing it -10. Commit/Push your changes to your forked repository and finally create a [Pull-Reuqest][13] +10. Commit/Push your changes to your forked repository and finally create a [Pull-Request][13] - We take it from there, review your plugin or changes you propose - if required, we propose or add further changes or just start a conversation when having questions - Finally the changes are merged into the master branch of this repository diff --git a/api-builder-plugin-dc-postgres/CHANGELOG.md b/api-builder-plugin-dc-postgres/CHANGELOG.md index b2388630..6f54a8b0 100644 --- a/api-builder-plugin-dc-postgres/CHANGELOG.md +++ b/api-builder-plugin-dc-postgres/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 2.1.0 2022-04-04 +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [2.0.1] 2022-02-03 ### Fixed - Documentation links diff --git a/api-builder-plugin-dc-postgres/package.json b/api-builder-plugin-dc-postgres/package.json index 3b1bd8e5..6b2eba94 100644 --- a/api-builder-plugin-dc-postgres/package.json +++ b/api-builder-plugin-dc-postgres/package.json @@ -1,7 +1,7 @@ { "name": "@axway-api-builder-ext/api-builder-plugin-dc-postgres", "description": "PostgreSQL data connector for Axway API Builder", - "version": "2.0.1", + "version": "2.1.0", "author": { "email": "cwiechmann@axway.com", "name": "Chris Wiechmann", @@ -21,7 +21,8 @@ "api-builder" ], "engines": { - "node": ">= 8.9" + "node": ">= 8.9", + "apibuilder": ">= 4.0.0" }, "license": "Apache-2.0", "files": [ @@ -37,9 +38,6 @@ "pg": "^8.7.1", "semver": "^5.4.0" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.0.0" - }, "scripts": { "postinstall": "api-builder-copy ./config/postgres.default.js ./conf" } diff --git a/api-builder-plugin-fc-jira/Changelog.md b/api-builder-plugin-fc-jira/Changelog.md index 4c90bfb0..50a4b4a8 100644 --- a/api-builder-plugin-fc-jira/Changelog.md +++ b/api-builder-plugin-fc-jira/Changelog.md @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 0.0.9 2022-04-04 +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [0.0.8] 2022-02-03 ### Security diff --git a/api-builder-plugin-fc-jira/package.json b/api-builder-plugin-fc-jira/package.json index 991855d3..7ef7ecc5 100644 --- a/api-builder-plugin-fc-jira/package.json +++ b/api-builder-plugin-fc-jira/package.json @@ -26,14 +26,14 @@ "README.md", "LICENSE" ], + "engines": { + "node": ">= 8.9", + "apibuilder": ">= 4.64.1" + }, "dependencies": { "@axway/api-builder-oas-flow-node": "^1.2.3" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.64.1" - }, "devDependencies": { - "@axway/api-builder-runtime": "^4.64.1", "@axway/api-builder-test-utils": "^1.1.12", "chai": "^4.1.2", "mocha": "^9.1.4" diff --git a/api-builder-plugin-fc-sap-lama/CHANGELOG.md b/api-builder-plugin-fc-sap-lama/CHANGELOG.md index 4c1565e6..dd29184d 100644 --- a/api-builder-plugin-fc-sap-lama/CHANGELOG.md +++ b/api-builder-plugin-fc-sap-lama/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). + +## 1.1.1 2022-04-04 +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [1.0.10] 2022-02-03 ### Fixed - Documentation links diff --git a/api-builder-plugin-fc-sap-lama/package.json b/api-builder-plugin-fc-sap-lama/package.json index db04008a..834310c1 100644 --- a/api-builder-plugin-fc-sap-lama/package.json +++ b/api-builder-plugin-fc-sap-lama/package.json @@ -25,14 +25,14 @@ "README.md", "LICENSE" ], + "engines": { + "node": ">= 8.9", + "apibuilder": ">= 4.64.1" + }, "dependencies": { "@axway/api-builder-oas-flow-node": "^1.2.3" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.64.1" - }, "devDependencies": { - "@axway/api-builder-runtime": "^4.64.1", "@axway/api-builder-test-utils": "^1.1.12", "chai": "^4.3.4", "mocha": "^9.1.4" diff --git a/api-builder-plugin-fc-syncplicity/CHANGELOG.md b/api-builder-plugin-fc-syncplicity/CHANGELOG.md index 57e36e17..262e6117 100644 --- a/api-builder-plugin-fc-syncplicity/CHANGELOG.md +++ b/api-builder-plugin-fc-syncplicity/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 1.1.0 2022-04-04 +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [1.0.5] 2022-02-03 ### Security - Updated dependencies to fix security issues diff --git a/api-builder-plugin-fc-syncplicity/package.json b/api-builder-plugin-fc-syncplicity/package.json index 7a189d18..4ac96160 100644 --- a/api-builder-plugin-fc-syncplicity/package.json +++ b/api-builder-plugin-fc-syncplicity/package.json @@ -24,15 +24,15 @@ "openapi", "README.md", "LICENSE" - ], + ], + "engines": { + "node": ">= 8.9", + "apibuilder": ">= 4.71.0" + }, "dependencies": { "@axway/api-builder-oas-flow-node": "^2.0.3" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.71.0" - }, "devDependencies": { - "@axway/api-builder-runtime": "^4.71.0", "@axway/api-builder-test-utils": "^1.5.1", "chai": "^4.3.4", "mocha": "^9.1.3" diff --git a/api-builder-plugin-fn-aws-athena/Changelog.md b/api-builder-plugin-fn-aws-athena/Changelog.md index a9d62178..7ef97b24 100644 --- a/api-builder-plugin-fn-aws-athena/Changelog.md +++ b/api-builder-plugin-fn-aws-athena/Changelog.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 2.1.0 2022-04-04 +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [2.0.0] 2022-02-03 ### Security - Updated depencencies to fix security issues diff --git a/api-builder-plugin-fn-aws-athena/package.json b/api-builder-plugin-fn-aws-athena/package.json index ca6b92da..cc1de3f5 100644 --- a/api-builder-plugin-fn-aws-athena/package.json +++ b/api-builder-plugin-fn-aws-athena/package.json @@ -12,7 +12,8 @@ "connector" ], "engines": { - "node": ">= 10.0" + "node": ">= 10.0", + "apibuilder": ">= 4.64.1" }, "homepage": "https://github.com/Axway-API-Builder-Ext/api-builder-extras/tree/master/api-builder-plugin-fn-aws-athena", "bugs": { @@ -36,9 +37,6 @@ "athena-express": "^7.0.3", "aws-sdk": "^2.903.0" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.64.1" - }, "devDependencies": { "@axway/api-builder-test-utils": "^1.4.0", "chai": "^4.3.4", diff --git a/api-builder-plugin-fn-aws-lambda/Changelog.md b/api-builder-plugin-fn-aws-lambda/Changelog.md index c56b4d46..b5f11704 100644 --- a/api-builder-plugin-fn-aws-lambda/Changelog.md +++ b/api-builder-plugin-fn-aws-lambda/Changelog.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ### Fixed - Documentation links diff --git a/api-builder-plugin-fn-aws-lambda/package.json b/api-builder-plugin-fn-aws-lambda/package.json index 719c7c76..4ea2593b 100644 --- a/api-builder-plugin-fn-aws-lambda/package.json +++ b/api-builder-plugin-fn-aws-lambda/package.json @@ -20,7 +20,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 10.0" + "node": ">= 10.0", + "apibuilder": ">= 4.22.0" }, "main": "src/index.js", "files": [ @@ -34,9 +35,6 @@ "@axway/api-builder-sdk": "^0.2.0", "aws-sdk": "^2.918.0" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.22.0" - }, "devDependencies": { "chai": "^4.3.4", "mocha": "^9.1.4", diff --git a/api-builder-plugin-fn-elasticsearch/package.json b/api-builder-plugin-fn-elasticsearch/package.json index 75367cc3..6a3bee61 100644 --- a/api-builder-plugin-fn-elasticsearch/package.json +++ b/api-builder-plugin-fn-elasticsearch/package.json @@ -19,7 +19,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 10.0" + "node": ">= 10.0", + "apibuilder": ">= 4.41.1" }, "main": "src/index.js", "files": [ @@ -34,9 +35,6 @@ "deep-equal": "^2.0.5", "simple-mock": "^0.8.0" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.41.1" - }, "devDependencies": { "@axway/api-builder-test-utils": "^1.3.0", "chai": "^4.3.4", diff --git a/api-builder-plugin-fn-file/package.json b/api-builder-plugin-fn-file/package.json index f3a89ccb..55f410ca 100644 --- a/api-builder-plugin-fn-file/package.json +++ b/api-builder-plugin-fn-file/package.json @@ -23,7 +23,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">=10.0" + "node": ">=10.0", + "apibuilder": ">= 4.5.0" }, "main": "src/index.js", "files": [ @@ -35,9 +36,6 @@ "csv-parse": "^4.15.3", "lodash": "^4.17.21" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.5.0" - }, "devDependencies": { "@axway/api-builder-test-utils": "^1.1.4", "chai": "^4.3.4", diff --git a/api-builder-plugin-fn-foreach/package.json b/api-builder-plugin-fn-foreach/package.json index 9ee9a25d..5caccd48 100644 --- a/api-builder-plugin-fn-foreach/package.json +++ b/api-builder-plugin-fn-foreach/package.json @@ -19,7 +19,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 8.9" + "node": ">= 8.9", + "apibuilder": ">= 4.66.0" }, "main": "src/index.js", "files": [ diff --git a/api-builder-plugin-fn-google-maps/package.json b/api-builder-plugin-fn-google-maps/package.json index d7bfef2b..e91de03a 100644 --- a/api-builder-plugin-fn-google-maps/package.json +++ b/api-builder-plugin-fn-google-maps/package.json @@ -20,7 +20,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 10.0" + "node": ">= 10.0", + "apibuilder": ">= 4.22.0" }, "main": "src/index.js", "files": [ @@ -35,9 +36,6 @@ "@axway/api-builder-project-utils": "^1.0.3", "@googlemaps/google-maps-services-js": "^3.3.8" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.22.0" - }, "devDependencies": { "chai": "^4.3.4", "mocha": "^9.2.0", diff --git a/api-builder-plugin-fn-kafka-producer/package.json b/api-builder-plugin-fn-kafka-producer/package.json index 7d16d42a..874be596 100644 --- a/api-builder-plugin-fn-kafka-producer/package.json +++ b/api-builder-plugin-fn-kafka-producer/package.json @@ -19,7 +19,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 12.15" + "node": ">= 12.15", + "apibuilder": ">= 4.22.0" }, "main": "src/index.js", "files": [ @@ -33,9 +34,6 @@ "@axway/api-builder-project-utils": "^1.0.3", "kafkajs": "^1.12.0" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.22.0" - }, "devDependencies": { "chai": "^4.1.2", "mocha": "^9.2.0" diff --git a/api-builder-plugin-fn-mongodb/package.json b/api-builder-plugin-fn-mongodb/package.json index 25385fc6..6262d137 100644 --- a/api-builder-plugin-fn-mongodb/package.json +++ b/api-builder-plugin-fn-mongodb/package.json @@ -19,7 +19,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 12.15" + "node": ">= 12.15", + "apibuilder": ">= 4.5.0" }, "main": "src/index.js", "files": [ @@ -32,9 +33,6 @@ "mongodb": "^4.0.0", "@axway/api-builder-project-utils": "^1.0.3" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.5.0" - }, "devDependencies": { "@axway/api-builder-test-utils": "^1.1.0", "chai": "^4.1.2", diff --git a/api-builder-plugin-fn-objectfilter/package.json b/api-builder-plugin-fn-objectfilter/package.json index 5336f137..0b71503f 100644 --- a/api-builder-plugin-fn-objectfilter/package.json +++ b/api-builder-plugin-fn-objectfilter/package.json @@ -19,7 +19,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 8.9" + "node": ">= 8.9", + "apibuilder": ">= 4.41.1" }, "main": "src/index.js", "files": [ @@ -29,9 +30,6 @@ "dependencies": { "@axway/api-builder-sdk": "^1.1.12" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.41.1" - }, "devDependencies": { "@axway/api-builder-test-utils": "^1.3.0", "chai": "^4.3.4", diff --git a/api-builder-plugin-fn-odata/package.json b/api-builder-plugin-fn-odata/package.json index bcf143bd..fb6cdeb7 100644 --- a/api-builder-plugin-fn-odata/package.json +++ b/api-builder-plugin-fn-odata/package.json @@ -18,7 +18,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 12.15" + "node": ">= 12.15", + "apibuilder": ">= 4.5.0" }, "main": "src/index.js", "files": [ @@ -29,9 +30,6 @@ "@axway/api-builder-sdk": "^1.0.0", "odata-query": "^6.6.0" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.5.0" - }, "devDependencies": { "@axway/api-builder-test-utils": "^1.1.0", "chai": "^4.1.2", diff --git a/api-builder-plugin-fn-power/package.json b/api-builder-plugin-fn-power/package.json index 210b8c42..03f5561f 100644 --- a/api-builder-plugin-fn-power/package.json +++ b/api-builder-plugin-fn-power/package.json @@ -19,7 +19,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 12.15" + "node": ">= 12.15", + "apibuilder": ">= 4.5.0" }, "main": "src/index.js", "files": [ @@ -29,9 +30,6 @@ "dependencies": { "@axway/api-builder-sdk": "^1.0.0" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.5.0" - }, "devDependencies": { "@axway/api-builder-test-utils": "^1.3.0", "chai": "^4.1.2", diff --git a/api-builder-plugin-fn-redis/package.json b/api-builder-plugin-fn-redis/package.json index 6b90399f..4d3a7e46 100644 --- a/api-builder-plugin-fn-redis/package.json +++ b/api-builder-plugin-fn-redis/package.json @@ -19,7 +19,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 10.0" + "node": ">= 10.0", + "apibuilder": ">= 4.22.0" }, "main": "src/index.js", "files": [ @@ -33,9 +34,6 @@ "@axway/api-builder-project-utils": "^1.0.3", "redis": "^3.0.2" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.22.0" - }, "devDependencies": { "@axway/api-builder-test-utils": "^1.3.0", "chai": "^4.1.2", diff --git a/api-builder-plugin-fn-xml-node/package.json b/api-builder-plugin-fn-xml-node/package.json index d3018a12..b582c0d6 100644 --- a/api-builder-plugin-fn-xml-node/package.json +++ b/api-builder-plugin-fn-xml-node/package.json @@ -20,7 +20,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 8.9" + "node": ">= 8.9", + "apibuilder": ">= 4.71.0" }, "main": "src/index.js", "files": [ @@ -33,9 +34,6 @@ "jsonpath": "^1.1.1", "xml-js": "1.6.11" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.71.0" - }, "devDependencies": { "@axway/api-builder-test-utils": "^1.5.1", "chai": "^4.3.4", diff --git a/api-builder-plugin-utils/package.json b/api-builder-plugin-utils/package.json index d7afe3a1..bece1b2a 100644 --- a/api-builder-plugin-utils/package.json +++ b/api-builder-plugin-utils/package.json @@ -22,7 +22,8 @@ "url": "https://github.com/Axway-API-Builder-Ext/api-builder-extras.git" }, "engines": { - "node": ">= 12.15" + "node": ">= 12.15", + "apibuilder": ">= 4.5.0" }, "main": "src/index.js", "files": [ @@ -33,9 +34,6 @@ "dependencies": { "@axway/api-builder-sdk": "^1.0.0" }, - "peerDependencies": { - "@axway/api-builder-runtime": "^4.5.0" - }, "devDependencies": { "@axway/api-builder-test-utils": "^1.1.0", "chai": "^4.1.2", From 06764e20c5e4054a08e5c618d72f49415d498bdf Mon Sep 17 00:00:00 2001 From: Chris Wiechmann Date: Tue, 5 Apr 2022 08:17:36 +0200 Subject: [PATCH 2/2] Added Changelog entries --- api-builder-plugin-dc-postgres/CHANGELOG.md | 2 +- api-builder-plugin-fc-jira/Changelog.md | 2 +- api-builder-plugin-fc-sap-lama/CHANGELOG.md | 2 +- api-builder-plugin-fc-syncplicity/CHANGELOG.md | 2 +- api-builder-plugin-fn-aws-athena/Changelog.md | 2 +- api-builder-plugin-fn-elasticsearch/CHANGELOG.md | 4 ++++ api-builder-plugin-fn-file/Changelog.md | 4 ++++ api-builder-plugin-fn-foreach/Changelog.md | 4 ++++ api-builder-plugin-fn-google-maps/CHANGELOG.md | 4 ++++ api-builder-plugin-fn-kafka-producer/CHANGELOG.md | 4 ++++ api-builder-plugin-fn-mongodb/CHANGELOG.md | 4 ++++ api-builder-plugin-fn-objectfilter/Changelog.md | 4 ++++ api-builder-plugin-fn-odata/CHANGELOG.md | 4 ++++ api-builder-plugin-fn-power/CHANGELOG.md | 6 +++++- api-builder-plugin-fn-redis/CHANGELOG.md | 4 ++++ api-builder-plugin-fn-xml-node/Changelog.md | 5 ++++- api-builder-plugin-utils/CHANGELOG.md | 6 +++++- 17 files changed, 55 insertions(+), 8 deletions(-) diff --git a/api-builder-plugin-dc-postgres/CHANGELOG.md b/api-builder-plugin-dc-postgres/CHANGELOG.md index 6f54a8b0..5e5358f6 100644 --- a/api-builder-plugin-dc-postgres/CHANGELOG.md +++ b/api-builder-plugin-dc-postgres/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## 2.1.0 2022-04-04 +## [Unreleased] ### Changed - Now uses `apibuilder.engines` for documenting compatibility with API Builder. diff --git a/api-builder-plugin-fc-jira/Changelog.md b/api-builder-plugin-fc-jira/Changelog.md index 50a4b4a8..d2ea7a42 100644 --- a/api-builder-plugin-fc-jira/Changelog.md +++ b/api-builder-plugin-fc-jira/Changelog.md @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## 0.0.9 2022-04-04 +## [Unreleased] ### Changed - Now uses `apibuilder.engines` for documenting compatibility with API Builder. diff --git a/api-builder-plugin-fc-sap-lama/CHANGELOG.md b/api-builder-plugin-fc-sap-lama/CHANGELOG.md index dd29184d..4e8d3877 100644 --- a/api-builder-plugin-fc-sap-lama/CHANGELOG.md +++ b/api-builder-plugin-fc-sap-lama/CHANGELOG.md @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## 1.1.1 2022-04-04 +## [Unreleased] ### Changed - Now uses `apibuilder.engines` for documenting compatibility with API Builder. diff --git a/api-builder-plugin-fc-syncplicity/CHANGELOG.md b/api-builder-plugin-fc-syncplicity/CHANGELOG.md index 262e6117..b82a0cc8 100644 --- a/api-builder-plugin-fc-syncplicity/CHANGELOG.md +++ b/api-builder-plugin-fc-syncplicity/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## 1.1.0 2022-04-04 +## [Unreleased] ### Changed - Now uses `apibuilder.engines` for documenting compatibility with API Builder. diff --git a/api-builder-plugin-fn-aws-athena/Changelog.md b/api-builder-plugin-fn-aws-athena/Changelog.md index 7ef97b24..c185682c 100644 --- a/api-builder-plugin-fn-aws-athena/Changelog.md +++ b/api-builder-plugin-fn-aws-athena/Changelog.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## 2.1.0 2022-04-04 +## [Unreleased] ### Changed - Now uses `apibuilder.engines` for documenting compatibility with API Builder. diff --git a/api-builder-plugin-fn-elasticsearch/CHANGELOG.md b/api-builder-plugin-fn-elasticsearch/CHANGELOG.md index 10684f3e..76f7e1ce 100644 --- a/api-builder-plugin-fn-elasticsearch/CHANGELOG.md +++ b/api-builder-plugin-fn-elasticsearch/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [3.0.0] 2022-02-28 ### Security - Updated @elastic/elasticsearch to version 8.0.0 to add support for Elasticsearch 8 diff --git a/api-builder-plugin-fn-file/Changelog.md b/api-builder-plugin-fn-file/Changelog.md index e55952b1..fa674e87 100644 --- a/api-builder-plugin-fn-file/Changelog.md +++ b/api-builder-plugin-fn-file/Changelog.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [0.0.9] 2022-02-01 ### Fixed - Documentation links diff --git a/api-builder-plugin-fn-foreach/Changelog.md b/api-builder-plugin-fn-foreach/Changelog.md index 1a137f4c..c5f4615e 100644 --- a/api-builder-plugin-fn-foreach/Changelog.md +++ b/api-builder-plugin-fn-foreach/Changelog.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [2.0.0] 2021-05-31 ### Security - Now using new API-Builder SDK to solve a number of security issues diff --git a/api-builder-plugin-fn-google-maps/CHANGELOG.md b/api-builder-plugin-fn-google-maps/CHANGELOG.md index ffbec962..d812f29d 100644 --- a/api-builder-plugin-fn-google-maps/CHANGELOG.md +++ b/api-builder-plugin-fn-google-maps/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [1.1.0] 2022-02-03 ### Fixed - Documentation links diff --git a/api-builder-plugin-fn-kafka-producer/CHANGELOG.md b/api-builder-plugin-fn-kafka-producer/CHANGELOG.md index 5fe760ba..e5cb6a08 100644 --- a/api-builder-plugin-fn-kafka-producer/CHANGELOG.md +++ b/api-builder-plugin-fn-kafka-producer/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [0.1.1] 2022-02-01 ### Fixed - Documentation links diff --git a/api-builder-plugin-fn-mongodb/CHANGELOG.md b/api-builder-plugin-fn-mongodb/CHANGELOG.md index 206349fa..a2a4685b 100644 --- a/api-builder-plugin-fn-mongodb/CHANGELOG.md +++ b/api-builder-plugin-fn-mongodb/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [1.0.2] 2022-02-03 ### Fixed - Documentation links diff --git a/api-builder-plugin-fn-objectfilter/Changelog.md b/api-builder-plugin-fn-objectfilter/Changelog.md index 40bd35aa..29ed769c 100644 --- a/api-builder-plugin-fn-objectfilter/Changelog.md +++ b/api-builder-plugin-fn-objectfilter/Changelog.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [1.0.5] 2022-02-03 ### Fixed - Documentation links diff --git a/api-builder-plugin-fn-odata/CHANGELOG.md b/api-builder-plugin-fn-odata/CHANGELOG.md index 1ab039bb..0f06f478 100644 --- a/api-builder-plugin-fn-odata/CHANGELOG.md +++ b/api-builder-plugin-fn-odata/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [1.0.2] 2022-02-01 ### Fixed diff --git a/api-builder-plugin-fn-power/CHANGELOG.md b/api-builder-plugin-fn-power/CHANGELOG.md index f3110936..fe61d53c 100644 --- a/api-builder-plugin-fn-power/CHANGELOG.md +++ b/api-builder-plugin-fn-power/CHANGELOG.md @@ -1,9 +1,13 @@ -# Elasticsearch Connector Change Log +# Power Flow-Node Change Log All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [1.0.1] 2022-02-01 ### Security diff --git a/api-builder-plugin-fn-redis/CHANGELOG.md b/api-builder-plugin-fn-redis/CHANGELOG.md index c26972ad..d34f2a48 100644 --- a/api-builder-plugin-fn-redis/CHANGELOG.md +++ b/api-builder-plugin-fn-redis/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [0.0.9] 2022-02-01 ### Fixed - Documentation links diff --git a/api-builder-plugin-fn-xml-node/Changelog.md b/api-builder-plugin-fn-xml-node/Changelog.md index 4d0ae847..33879aed 100644 --- a/api-builder-plugin-fn-xml-node/Changelog.md +++ b/api-builder-plugin-fn-xml-node/Changelog.md @@ -4,8 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [1.0.15] 2022-02-1 +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. +## [1.0.15] 2022-02-1 ### Security - Updated dependencies to fix security issues diff --git a/api-builder-plugin-utils/CHANGELOG.md b/api-builder-plugin-utils/CHANGELOG.md index 2e09c603..ad6ab74b 100644 --- a/api-builder-plugin-utils/CHANGELOG.md +++ b/api-builder-plugin-utils/CHANGELOG.md @@ -1,9 +1,13 @@ -# Elasticsearch Connector Change Log +# Utils Flow-Node Change Log All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Changed +- Now uses `apibuilder.engines` for documenting compatibility with API Builder. + ## [1.0.2] 2022-02-01 ### Fixed - Documentation links