Skip to content

Commit

Permalink
Merge branch 'master' into DOCSP-44902
Browse files Browse the repository at this point in the history
  • Loading branch information
lindseymoore authored Nov 21, 2024
2 parents 60bff23 + d5c4a20 commit fd7befd
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 7 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Backport
on:
pull_request_target:
types:
- closed
- labeled

jobs:
backport:
name: Backport
runs-on: ubuntu-latest
# Only react to merged PRs for security reasons.
# See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target.
if: >
github.event.pull_request.merged
&& (
github.event.action == 'closed'
|| (
github.event.action == 'labeled'
&& contains(github.event.label.name, 'backport')
)
)
steps:
- uses: tibdex/backport@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
13 changes: 8 additions & 5 deletions .github/workflows/vale-tdbx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,26 @@ jobs:
- name: checkout
uses: actions/checkout@master

- name: Install docutils
run: sudo apt-get install -y docutils

- id: files
uses: masesgroup/retrieve-changed-files@v2
with:
format: 'csv'
format: "csv"

- name: checkout-latest-rules
uses: actions/checkout@master
with:
repository: mongodb/mongodb-vale-action
path: './tdbx-vale-rules'
path: "./tdbx-vale-rules"
token: ${{secrets.GITHUB_TOKEN}}

- name: move-files-for-vale-action
run: |
cp tdbx-vale-rules/.vale.ini .vale.ini
mkdir -p .github/styles/
cp -rf tdbx-vale-rules/.github/styles/ .github/
cp tdbx-vale-rules/.vale.ini .vale.ini
mkdir -p .github/styles/
cp -rf tdbx-vale-rules/.github/styles/ .github/
- name: run-vale
uses: errata-ai/vale-action@reviewdog
Expand Down
2 changes: 1 addition & 1 deletion snooty.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ driver = "kotlin"
driver-short = "Kotlin driver"
driver-long = "MongoDB Kotlin Driver"
version = "5.2"
full-version = "{+version+}.0"
full-version = "{+version+}.1"
language = "Kotlin"
mdb-server = "MongoDB server"
kotlin-docs = "https://kotlinlang.org"
Expand Down
2 changes: 1 addition & 1 deletion source/includes/mongodb-compatibility-table-kotlin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
- ✓
- ✓
- ✓
-
-

* - 4.10 to 5.1
- ⊛
Expand Down
6 changes: 6 additions & 0 deletions source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ Learn what's new in:
What's New in 5.2
-----------------

.. important:: Removal of Support for {+mdb-server+} 3.6

{+driver-short+} v5.2 removes support for {+mdb-server+} 3.6. To
learn more about compatible versions of the server, see
:ref:`kotlin-compatibility-tables`.

The 5.2 driver release includes the following new features,
improvements, and fixes:

Expand Down

0 comments on commit fd7befd

Please sign in to comment.