You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2020/09/09 19:36:40 UTC

[airavata] branch develop updated (5c3dc80 -> ceaac72)

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git.


    from 5c3dc80  Adding usage reporting command table to delta scripts
     add fb4d3d5  Making release 0.19
     add 30add7b  Merge branch 'develop'
     add b27abd2  Changing prod ansible distribution to 0.20-SNAPSHOT
     add 675fc56  Fixing minor test failures in registry core
     add d21c31d  Updating name of migrations folder for 0.20 version
     add cb6d3ae  Update README.md to indicate Java 11 required
     new ceaac72  Initializing migration script files for next version

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md                                                          | 4 ++--
 .../ansible/inventories/scigap/production/group_vars/all/vars.yml  | 4 ++--
 .../registry/registry-core/src/main/resources/expcatalog-derby.sql | 2 +-
 .../airavata/registry/core/repositories/common/TestBase.java       | 2 +-
 .../{next => 0.19-0.20}/DeltaScripts/appCatalog_schema_delta.sql   | 0
 .../DeltaScripts/credential_store_schema_delta.sql                 | 0
 .../DeltaScripts/experimentCatalog_schema_delta.sql                | 0
 .../DeltaScripts/profile_service_schema_delta.sql                  | 0
 .../DeltaScripts/replicaCatalog_schema_delta.sql                   | 0
 .../DeltaScripts/sharingCatalog_schema_delta.sql                   | 0
 .../next/DeltaScripts/appCatalog_schema_delta.sql                  | 5 -----
 .../next/DeltaScripts/experimentCatalog_schema_delta.sql           | 7 -------
 12 files changed, 6 insertions(+), 18 deletions(-)
 copy modules/registry/release-migration-scripts/{next => 0.19-0.20}/DeltaScripts/appCatalog_schema_delta.sql (100%)
 copy modules/registry/release-migration-scripts/{next => 0.19-0.20}/DeltaScripts/credential_store_schema_delta.sql (100%)
 copy modules/registry/release-migration-scripts/{next => 0.19-0.20}/DeltaScripts/experimentCatalog_schema_delta.sql (100%)
 copy modules/registry/release-migration-scripts/{next => 0.19-0.20}/DeltaScripts/profile_service_schema_delta.sql (100%)
 copy modules/registry/release-migration-scripts/{next => 0.19-0.20}/DeltaScripts/replicaCatalog_schema_delta.sql (100%)
 copy modules/registry/release-migration-scripts/{next => 0.19-0.20}/DeltaScripts/sharingCatalog_schema_delta.sql (100%)


[airavata] 01/01: Initializing migration script files for next version

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git

commit ceaac72ba5638625b703bbaec197287968f73691
Author: Marcus Christie <ma...@iu.edu>
AuthorDate: Wed Sep 9 15:36:04 2020 -0400

    Initializing migration script files for next version
---
 .../next/DeltaScripts/appCatalog_schema_delta.sql   | 21 +++++++++++++++++++++
 .../DeltaScripts/credential_store_schema_delta.sql  | 21 +++++++++++++++++++++
 .../DeltaScripts/experimentCatalog_schema_delta.sql | 21 +++++++++++++++++++++
 .../DeltaScripts/profile_service_schema_delta.sql   | 21 +++++++++++++++++++++
 .../DeltaScripts/replicaCatalog_schema_delta.sql    | 21 +++++++++++++++++++++
 .../DeltaScripts/sharingCatalog_schema_delta.sql    | 21 +++++++++++++++++++++
 6 files changed, 126 insertions(+)

diff --git a/modules/registry/release-migration-scripts/next/DeltaScripts/appCatalog_schema_delta.sql b/modules/registry/release-migration-scripts/next/DeltaScripts/appCatalog_schema_delta.sql
new file mode 100644
index 0000000..839c2e1
--- /dev/null
+++ b/modules/registry/release-migration-scripts/next/DeltaScripts/appCatalog_schema_delta.sql
@@ -0,0 +1,21 @@
+--
+--
+-- Licensed to the Apache Software Foundation (ASF) under one
+-- or more contributor license agreements.  See the NOTICE file
+-- distributed with this work for additional information
+-- regarding copyright ownership.  The ASF licenses this file
+-- to you under the Apache License, Version 2.0 (the
+-- "License"); you may not use this file except in compliance
+-- with the License.  You may obtain a copy of the License at
+--
+--   http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing,
+-- software distributed under the License is distributed on an
+-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+-- KIND, either express or implied.  See the License for the
+-- specific language governing permissions and limitations
+-- under the License.
+--
+
+use app_catalog;
diff --git a/modules/registry/release-migration-scripts/next/DeltaScripts/credential_store_schema_delta.sql b/modules/registry/release-migration-scripts/next/DeltaScripts/credential_store_schema_delta.sql
new file mode 100644
index 0000000..cd4ce1f
--- /dev/null
+++ b/modules/registry/release-migration-scripts/next/DeltaScripts/credential_store_schema_delta.sql
@@ -0,0 +1,21 @@
+--
+--
+-- Licensed to the Apache Software Foundation (ASF) under one
+-- or more contributor license agreements.  See the NOTICE file
+-- distributed with this work for additional information
+-- regarding copyright ownership.  The ASF licenses this file
+-- to you under the Apache License, Version 2.0 (the
+-- "License"); you may not use this file except in compliance
+-- with the License.  You may obtain a copy of the License at
+--
+--   http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing,
+-- software distributed under the License is distributed on an
+-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+-- KIND, either express or implied.  See the License for the
+-- specific language governing permissions and limitations
+-- under the License.
+--
+
+use credential_store;
diff --git a/modules/registry/release-migration-scripts/next/DeltaScripts/experimentCatalog_schema_delta.sql b/modules/registry/release-migration-scripts/next/DeltaScripts/experimentCatalog_schema_delta.sql
new file mode 100644
index 0000000..256ecf0
--- /dev/null
+++ b/modules/registry/release-migration-scripts/next/DeltaScripts/experimentCatalog_schema_delta.sql
@@ -0,0 +1,21 @@
+--
+--
+-- Licensed to the Apache Software Foundation (ASF) under one
+-- or more contributor license agreements.  See the NOTICE file
+-- distributed with this work for additional information
+-- regarding copyright ownership.  The ASF licenses this file
+-- to you under the Apache License, Version 2.0 (the
+-- "License"); you may not use this file except in compliance
+-- with the License.  You may obtain a copy of the License at
+--
+--   http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing,
+-- software distributed under the License is distributed on an
+-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+-- KIND, either express or implied.  See the License for the
+-- specific language governing permissions and limitations
+-- under the License.
+--
+
+use experiment_catalog;
diff --git a/modules/registry/release-migration-scripts/next/DeltaScripts/profile_service_schema_delta.sql b/modules/registry/release-migration-scripts/next/DeltaScripts/profile_service_schema_delta.sql
new file mode 100644
index 0000000..cb533cc
--- /dev/null
+++ b/modules/registry/release-migration-scripts/next/DeltaScripts/profile_service_schema_delta.sql
@@ -0,0 +1,21 @@
+--
+--
+-- Licensed to the Apache Software Foundation (ASF) under one
+-- or more contributor license agreements.  See the NOTICE file
+-- distributed with this work for additional information
+-- regarding copyright ownership.  The ASF licenses this file
+-- to you under the Apache License, Version 2.0 (the
+-- "License"); you may not use this file except in compliance
+-- with the License.  You may obtain a copy of the License at
+--
+--   http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing,
+-- software distributed under the License is distributed on an
+-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+-- KIND, either express or implied.  See the License for the
+-- specific language governing permissions and limitations
+-- under the License.
+--
+
+use profile_service;
diff --git a/modules/registry/release-migration-scripts/next/DeltaScripts/replicaCatalog_schema_delta.sql b/modules/registry/release-migration-scripts/next/DeltaScripts/replicaCatalog_schema_delta.sql
new file mode 100644
index 0000000..942ff54
--- /dev/null
+++ b/modules/registry/release-migration-scripts/next/DeltaScripts/replicaCatalog_schema_delta.sql
@@ -0,0 +1,21 @@
+--
+--
+-- Licensed to the Apache Software Foundation (ASF) under one
+-- or more contributor license agreements.  See the NOTICE file
+-- distributed with this work for additional information
+-- regarding copyright ownership.  The ASF licenses this file
+-- to you under the Apache License, Version 2.0 (the
+-- "License"); you may not use this file except in compliance
+-- with the License.  You may obtain a copy of the License at
+--
+--   http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing,
+-- software distributed under the License is distributed on an
+-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+-- KIND, either express or implied.  See the License for the
+-- specific language governing permissions and limitations
+-- under the License.
+--
+
+use replica_catalog;
diff --git a/modules/registry/release-migration-scripts/next/DeltaScripts/sharingCatalog_schema_delta.sql b/modules/registry/release-migration-scripts/next/DeltaScripts/sharingCatalog_schema_delta.sql
new file mode 100644
index 0000000..6ddb67c
--- /dev/null
+++ b/modules/registry/release-migration-scripts/next/DeltaScripts/sharingCatalog_schema_delta.sql
@@ -0,0 +1,21 @@
+--
+--
+-- Licensed to the Apache Software Foundation (ASF) under one
+-- or more contributor license agreements.  See the NOTICE file
+-- distributed with this work for additional information
+-- regarding copyright ownership.  The ASF licenses this file
+-- to you under the Apache License, Version 2.0 (the
+-- "License"); you may not use this file except in compliance
+-- with the License.  You may obtain a copy of the License at
+--
+--   http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing,
+-- software distributed under the License is distributed on an
+-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+-- KIND, either express or implied.  See the License for the
+-- specific language governing permissions and limitations
+-- under the License.
+--
+
+use sharing_catalog;