From b2d1634faab4d35befe86a37705fb9cd444e2f15 Mon Sep 17 00:00:00 2001 From: Tarun Mall Date: Wed, 21 Jul 2021 16:26:55 -0700 Subject: [PATCH 1/6] Adding pipeline to pyinstaller. --- installer/pyinstaller/hook-samcli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/pyinstaller/hook-samcli.py b/installer/pyinstaller/hook-samcli.py index 2a68112a8a..3c3fe49f00 100644 --- a/installer/pyinstaller/hook-samcli.py +++ b/installer/pyinstaller/hook-samcli.py @@ -13,6 +13,7 @@ "samcli.commands.deploy", "samcli.commands.logs", "samcli.commands.publish", + "samcli.commands.pipeline", # default hidden import 'pkg_resources.py2_warn' is added # since pyInstaller 4.0. "pkg_resources.py2_warn", From 7452a8488a22f41dde821c240bfbd1c2f33441d4 Mon Sep 17 00:00:00 2001 From: Tarun Mall Date: Wed, 21 Jul 2021 16:41:38 -0700 Subject: [PATCH 2/6] Adding bootstrap as well. --- installer/pyinstaller/hook-samcli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/pyinstaller/hook-samcli.py b/installer/pyinstaller/hook-samcli.py index 3c3fe49f00..bac6be40c2 100644 --- a/installer/pyinstaller/hook-samcli.py +++ b/installer/pyinstaller/hook-samcli.py @@ -14,6 +14,7 @@ "samcli.commands.logs", "samcli.commands.publish", "samcli.commands.pipeline", + "samcli.commands.pipeline.bootstrap", # default hidden import 'pkg_resources.py2_warn' is added # since pyInstaller 4.0. "pkg_resources.py2_warn", From 5c3074bab4b22b78ff9d9319ec48f0e2a0184e8c Mon Sep 17 00:00:00 2001 From: Tarun Mall Date: Wed, 21 Jul 2021 16:42:51 -0700 Subject: [PATCH 3/6] Adding pipeline init command to pyinstaller hook. --- installer/pyinstaller/hook-samcli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/pyinstaller/hook-samcli.py b/installer/pyinstaller/hook-samcli.py index bac6be40c2..cd39fb8bbe 100644 --- a/installer/pyinstaller/hook-samcli.py +++ b/installer/pyinstaller/hook-samcli.py @@ -13,7 +13,7 @@ "samcli.commands.deploy", "samcli.commands.logs", "samcli.commands.publish", - "samcli.commands.pipeline", + "samcli.commands.pipeline.init", "samcli.commands.pipeline.bootstrap", # default hidden import 'pkg_resources.py2_warn' is added # since pyInstaller 4.0. From 5de0b00308d80eefb5327c996d7c698606eb8149 Mon Sep 17 00:00:00 2001 From: Tarun Mall Date: Wed, 21 Jul 2021 16:45:37 -0700 Subject: [PATCH 4/6] Adding pipeline module separately. --- installer/pyinstaller/hook-samcli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/pyinstaller/hook-samcli.py b/installer/pyinstaller/hook-samcli.py index cd39fb8bbe..caee93a2be 100644 --- a/installer/pyinstaller/hook-samcli.py +++ b/installer/pyinstaller/hook-samcli.py @@ -13,6 +13,7 @@ "samcli.commands.deploy", "samcli.commands.logs", "samcli.commands.publish", + "samcli.commands.pipeline", "samcli.commands.pipeline.init", "samcli.commands.pipeline.bootstrap", # default hidden import 'pkg_resources.py2_warn' is added From 5b63ae079ac34e2a230a113cb97a5c75be5af63f Mon Sep 17 00:00:00 2001 From: Tarun Mall Date: Wed, 21 Jul 2021 16:51:29 -0700 Subject: [PATCH 5/6] Importing pipeline correctly. --- installer/pyinstaller/hook-samcli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/pyinstaller/hook-samcli.py b/installer/pyinstaller/hook-samcli.py index caee93a2be..72a939a9b2 100644 --- a/installer/pyinstaller/hook-samcli.py +++ b/installer/pyinstaller/hook-samcli.py @@ -13,7 +13,7 @@ "samcli.commands.deploy", "samcli.commands.logs", "samcli.commands.publish", - "samcli.commands.pipeline", + "samcli.commands.pipeline.pipeline", "samcli.commands.pipeline.init", "samcli.commands.pipeline.bootstrap", # default hidden import 'pkg_resources.py2_warn' is added From 26bcf96979d4fafc9ca20c5454597233e6618719 Mon Sep 17 00:00:00 2001 From: Tarun Mall Date: Wed, 21 Jul 2021 16:53:10 -0700 Subject: [PATCH 6/6] Minor version bump to 1.27.1 --- samcli/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samcli/__init__.py b/samcli/__init__.py index 15c38c4850..572d288049 100644 --- a/samcli/__init__.py +++ b/samcli/__init__.py @@ -2,4 +2,4 @@ SAM CLI version """ -__version__ = "1.27.0" +__version__ = "1.27.1"