Skip to content

Commit

Permalink
Back-ported v2.117.0 to v2.110.2
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Phelps <[email protected]>
  • Loading branch information
naphelps committed Jul 21, 2023
1 parent c158220 commit 9ebb367
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 25 deletions.
21 changes: 2 additions & 19 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,16 @@

All notable changes to this project will be documented in this file.

## [2.117.0] - 2023-07-13
## [2.110.2] - 2023-07-21
- Back-porting 2.117.0 to 2.110.2
- Issue 686: Added rest parameter `manifest` to Get /v1/orgs/<org>/managementpolicies route.

## [2.116.0] - 2023-07-11
- Issue 676: Added `isNamespaceScoped` attribute to Nodes.
- Reorganized table package object source for Nodes and related.
- SBT 1.9.0 -> 1.9.2

## [2.115.3] - 2023-07-07
- Issue 675: Node tokens can be changed by all User types, and public keys can only be [un]set without changing keys by Nodes.

## [2.115.2] - 2023-07-07
- Issue 675: Removed extra regular expressions modifying searched Service's URL.

## [2.115.1] - 2023-07-06
- Issue 675: Fixed User and Node access to searching all Patterns and Services within the Node's Organization.
- Corrected error messages.

## [2.115.0] - 2023-06-28
- Issue 675: Patch /orgs/<organization>/nodes/<node> No longer allows setting the Node's token if a public key is set.
- Added a new database table to handle Service querying and matching.
- pattern and userInput are now User archetype authorization scoped.
Expand All @@ -29,23 +20,15 @@ All notable changes to this project will be documented in this file.
- SBT 1.8.2 -> 1.9.0
- swagger-scala-module 2.8.2 -> 2.11.0
- Swagger UI 4.15.5 -> 5.1.0

## [2.114.0] - 2023-05-01
- Issue 639: Moved top-level attribute clusterNamespace to a sub-attribute under service for Deployment Policies.

## [2.113.0] - 2023-04-26
- Issue 637 - Added CORS support. Can be configurated via the Exchange's config.json file.
- Changed Java package path to the prefix org.openhorizon.
- Moved source handling routing to new sub-package org.openhorizon.route..
- AdminRoutes and AgbotRoutes have been further sub-divided based on rest resource.
- Deprecated custom methods for handling Akka configuration parameters in favor of framework defaults.
- Backwards compatibility is still maintained.

## [2.112.0] - 2023-04-07
- Issue 640: Added `clusterNamespace` attribute to Deployment Patterns.
- Issue 641: Added `clusterNamespace` attribute to Nodes.

## [2.111.0] - 2023-04-03
- Issue 639: Added `clusterNamespace` attribute to Deployment Policies.

## [2.110.1] - 2023-03-01
Expand Down
2 changes: 1 addition & 1 deletion docs/openapi-3-developer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name" : "Apache License Version 2.0",
"url" : "https://www.apache.org/licenses/LICENSE-2.0"
},
"version" : "2.117.0"
"version" : "2.110.2"
},
"externalDocs" : {
"description" : "Open-horizon ExchangeAPI",
Expand Down
2 changes: 1 addition & 1 deletion docs/openapi-3-user.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name" : "Apache License Version 2.0",
"url" : "https://www.apache.org/licenses/LICENSE-2.0"
},
"version" : "2.117.0"
"version" : "2.110.2"
},
"externalDocs" : {
"description" : "Open-horizon ExchangeAPI",
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.117.0
2.110.2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.junit.runner.RunWith
import org.openhorizon.exchangeapi.route.organization.{ChangeEntry, ResourceChangesRequest, ResourceChangesRespObject}
import org.openhorizon.exchangeapi.route.user.PostPutUsersRequest
import org.openhorizon.exchangeapi.table.node.{NodeRow, NodesTQ}
import org.openhorizon.exchangeapi.table.{ManagementPolicy, OneProperty, OrgRow, OrgsTQ}
import org.openhorizon.exchangeapi.table.{ManagementPolicy, OneProperty, OrgRow, OrgsTQ, ResourceChangesTQ}
import org.openhorizon.exchangeapi.{ApiResponse, ApiTime, ApiUtils, HttpCode, Role, TestDBConnection}
import org.scalatest.BeforeAndAfterAll
import org.scalatest.funsuite.AnyFunSuite
Expand Down Expand Up @@ -76,8 +76,8 @@ class ManagementPoliciesSuite extends AnyFunSuite with BeforeAndAfterAll{

// Teardown testing harness and cleanup.
override def afterAll(): Unit = {
/*Await.ready(DBCONNECTION.getDb.run(ResourceChangesTQ.filter(_.orgId startsWith "MgmtPolSuite").delete andThen
OrgsTQ.filter(_.orgid startsWith "MgmtPolSuite").delete), AWAITDURATION)*/
Await.ready(DBCONNECTION.getDb.run(ResourceChangesTQ.filter(_.orgId startsWith "MgmtPolSuite").delete andThen
OrgsTQ.filter(_.orgid startsWith "MgmtPolSuite").delete), AWAITDURATION)

DBCONNECTION.getDb.close()
}
Expand Down

0 comments on commit 9ebb367

Please sign in to comment.