From a692a3bf58725671cf066978bebe52dd168408ff Mon Sep 17 00:00:00 2001 From: Jacob Floyd Date: Wed, 22 Jun 2022 11:45:02 -0500 Subject: [PATCH 1/3] fix vim temp file ignore for pants --- .gitignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 13917e45db..ef7eec5d9a 100644 --- a/.gitignore +++ b/.gitignore @@ -67,5 +67,7 @@ benchmark_histograms/ # Editor Saves *~ \#*\# -[._]*.sw[a-p] -[._]sw[a-p] +[._]*.sw[a-px] +[._]sw[a-px] +[._]*.sw[a-p]x +[._]sw[a-p]x From 8674192fdc14e4ecc618f9e82f2c08e25f6ecaa2 Mon Sep 17 00:00:00 2001 From: Jacob Floyd Date: Fri, 9 Sep 2022 18:11:35 -0400 Subject: [PATCH 2/3] remove build from .gitignore as we need BUILD files For more about BUILD files, see: https://www.pantsbuild.org/docs/targets#build-files Benjy Weinberger, one of the pants maintainers, pointed out why git was ignoring the BUILD files. --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index ef7eec5d9a..555d276e69 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,6 @@ *.egg *.egg-info dist -build .venv eggs parts From ce0267ab86f9027b407c1597b96d3e526971f434 Mon Sep 17 00:00:00 2001 From: Jacob Floyd Date: Fri, 9 Sep 2022 18:59:39 -0400 Subject: [PATCH 3/3] update changelog entry --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bf5cdb2ee1..6e93143ae9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -53,7 +53,7 @@ Added * Begin introducing `pants `_ to improve DX (Developer Experience) working on StackStorm, improve our security posture, and improve CI reliability thanks in part - to pants' use of PEX lockfiles. This is not a user-facing addition. #5713 #5724 + to pants' use of PEX lockfiles. This is not a user-facing addition. #5713 #5724 #5726 Contributed by @cognifloyd Changed