Skip to content

Commit 958d127

Browse files
committed
bug #120 Make sure we don't update title twice (Nyholm)
This PR was squashed before being merged into the master branch. Discussion ---------- Make sure we don't update title twice I want to avoid this: <img width="928" alt="Screenshot 2020-11-12 at 22 38 44" src="https://user-images.githubusercontent.com/1275206/99003123-db745880-253d-11eb-8917-b9fe115dc860.png"> ---------- -------- -------- -------- It happens when a user adds two labels at the same time. FYI @jderusse Commits ------- ca2f05b composer fixes ad5b9d2 Make sure we dont update title twice
2 parents 1efcc92 + ca2f05b commit 958d127

File tree

10 files changed

+325
-200
lines changed

10 files changed

+325
-200
lines changed

composer.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "carsonbot/carsonbot",
3+
"description": "The Carson Issue Butler",
34
"type": "project",
45
"license": "MIT",
56
"require": {
@@ -16,8 +17,9 @@
1617
"symfony/console": "^5.1",
1718
"symfony/dotenv": "^5.1",
1819
"symfony/flex": "^1.8",
19-
"symfony/framework-bundle": "^5.1",
20-
"symfony/http-client": "^v5.2.0-BETA3",
20+
"symfony/framework-bundle": "^5.2@rc",
21+
"symfony/http-client": "^5.2@rc",
22+
"symfony/lock": "^5.2@rc",
2123
"symfony/monolog-bundle": "~3.5",
2224
"symfony/security-core": "5.1.*",
2325
"symfony/twig-pack": "^1.0",
@@ -68,5 +70,7 @@
6870
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
6971
"assets:install %PUBLIC_DIR%": "symfony-cmd"
7072
}
71-
}
73+
},
74+
"minimum-stability": "RC",
75+
"prefer-stable": true
7276
}

0 commit comments

Comments
 (0)