File tree Expand file tree Collapse file tree 5 files changed +42
-7
lines changed Expand file tree Collapse file tree 5 files changed +42
-7
lines changed Original file line number Diff line number Diff line change 1+ name : Backport
2+ on :
3+ pull_request_target :
4+ types :
5+ - closed
6+ - labeled
7+
8+ jobs :
9+ backport :
10+ name : Backport
11+ runs-on : ubuntu-latest
12+ # Only react to merged PRs for security reasons.
13+ # See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target.
14+ if : >
15+ github.event.pull_request.merged
16+ && (
17+ github.event.action == 'closed'
18+ || (
19+ github.event.action == 'labeled'
20+ && contains(github.event.label.name, 'backport')
21+ )
22+ )
23+ steps :
24+ - uses : tibdex/backport@v2
25+ with :
26+ github_token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -12,23 +12,26 @@ jobs:
1212 - name : checkout
1313 uses : actions/checkout@master
1414
15+ - name : Install docutils
16+ run : sudo apt-get install -y docutils
17+
1518 - id : files
1619 uses : masesgroup/retrieve-changed-files@v2
1720 with :
18- format : ' csv'
21+ format : " csv"
1922
2023 - name : checkout-latest-rules
2124 uses : actions/checkout@master
2225 with :
2326 repository : mongodb/mongodb-vale-action
24- path : ' ./tdbx-vale-rules'
27+ path : " ./tdbx-vale-rules"
2528 token : ${{secrets.GITHUB_TOKEN}}
2629
2730 - name : move-files-for-vale-action
2831 run : |
29- cp tdbx-vale-rules/.vale.ini .vale.ini
30- mkdir -p .github/styles/
31- cp -rf tdbx-vale-rules/.github/styles/ .github/
32+ cp tdbx-vale-rules/.vale.ini .vale.ini
33+ mkdir -p .github/styles/
34+ cp -rf tdbx-vale-rules/.github/styles/ .github/
3235
3336 - name : run-vale
3437 uses : errata-ai/vale-action@reviewdog
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ driver = "kotlin"
2020driver-short = " Kotlin driver"
2121driver-long = " MongoDB Kotlin Driver"
2222version = " 5.2"
23- full-version = " {+version+}.0 "
23+ full-version = " {+version+}.1 "
2424language = " Kotlin"
2525mdb-server = " MongoDB server"
2626kotlin-docs = " https://kotlinlang.org"
Original file line number Diff line number Diff line change 2121 - ✓
2222 - ✓
2323 - ✓
24- - ✓
24+ -
2525
2626 * - 4.10 to 5.1
2727 - ⊛
Original file line number Diff line number Diff line change @@ -26,6 +26,12 @@ Learn what's new in:
2626What's New in 5.2
2727-----------------
2828
29+ .. important:: Removal of Support for {+mdb-server+} 3.6
30+
31+ {+driver-short+} v5.2 removes support for {+mdb-server+} 3.6. To
32+ learn more about compatible versions of the server, see
33+ :ref:`kotlin-compatibility-tables`.
34+
2935The 5.2 driver release includes the following new features,
3036improvements, and fixes:
3137
You can’t perform that action at this time.
0 commit comments