Skip to content

Commit d03091e

Browse files
authored
Merge branch 'StackStorm:master' into master
2 parents 743e263 + 6e773e6 commit d03091e

File tree

76 files changed

+758
-44
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+758
-44
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Added
1515
working on StackStorm, improve our security posture, and improve CI reliability thanks in part
1616
to pants' use of PEX lockfiles. This is not a user-facing addition.
1717
#5778 #5789 #5817 #5795 #5830 #5833 #5834 #5841 #5840 #5838 #5842 #5837 #5849 #5850
18-
#5846 #5853 #5848 #5847 #5858 #5857 #5860
18+
#5846 #5853 #5848 #5847 #5858 #5857 #5860 #5868 #5871
1919
Contributed by @cognifloyd
2020

2121
* Added a joint index to solve the problem of slow mongo queries for scheduled executions. #5805

contrib/chatops/BUILD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pack_metadata(
2+
name="metadata",
3+
)

contrib/core/BUILD

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
python_sources()
1+
pack_metadata(
2+
name="metadata",
3+
)
24

35
python_requirements(
46
name="reqs",
@@ -7,3 +9,7 @@ python_requirements(
79
# https://github.com/pantsbuild/pants/pull/17390
810
module_mapping={"mail-parser": ["mailparser"]},
911
)
12+
13+
python_sources(
14+
dependencies=[":metadata"],
15+
)

contrib/debug/BUILD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pack_metadata(
2+
name="metadata",
3+
)

contrib/default/BUILD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pack_metadata(
2+
name="metadata",
3+
)

contrib/examples/BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
pack_metadata(
2+
name="metadata",
3+
)
4+
15
# Using `python_requirements()` here results in:
26
# ">1 target exports this module, so it is ambiguous which to use"
37
# This error refers to the "requests" module.

contrib/hello_st2/BUILD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pack_metadata(
2+
name="metadata",
3+
)

contrib/linux/BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
pack_metadata(
2+
name="metadata",
3+
)
4+
15
python_requirements(
26
name="reqs",
37
)

contrib/packs/BUILD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pack_metadata(
2+
name="metadata",
3+
)

contrib/packs/tests/fixtures/BUILD

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
python_sources()
1+
python_sources(
2+
dependencies=[
3+
"./stackstorm-test:metadata",
4+
"./stackstorm-test2:metadata",
5+
"./stackstorm-test3:metadata",
6+
"./stackstorm-test4:metadata",
7+
],
8+
)

0 commit comments

Comments
 (0)