From b24997bc2aadf2f35c0f0e7d1fc81f822109531a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Alm=C3=A9n?= <78877636+almenscorner@users.noreply.github.com> Date: Fri, 10 Mar 2023 16:50:16 +0100 Subject: [PATCH 1/2] Bump version 1.4.0 -> 1.4.1 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index ae3bd149..c3c071a4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = IntuneCD -version = 1.4.0 +version = 1.4.1 author = Tobias Almén author_email = almenscorner@outlook.com description = Tool to backup and update configurations in Intune From 13df0526093a7f52bed7a1deb961f47f26421268 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Alm=C3=A9n?= <78877636+almenscorner@users.noreply.github.com> Date: Fri, 10 Mar 2023 16:50:58 +0100 Subject: [PATCH 2/2] Bug fix - create groups arg not included when running with front end --- src/IntuneCD/run_update.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/IntuneCD/run_update.py b/src/IntuneCD/run_update.py index 84099f56..3f92fa40 100644 --- a/src/IntuneCD/run_update.py +++ b/src/IntuneCD/run_update.py @@ -259,7 +259,9 @@ def run_update(path, token, assignment, exclude, report, create_groups): if args.frontend: old_stdout = sys.stdout sys.stdout = feedstdout = StringIO() - summary = run_update(args.path, token, args.u, exclude, args.report) + summary = run_update( + args.path, token, args.u, exclude, args.report, args.create_groups + ) sys.stdout = old_stdout feed_bytes = feedstdout.getvalue().encode("utf-8") out = base64.b64encode(feed_bytes).decode("utf-8")