Skip to content

Commit 2579e9b

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/development-dependencies-f9316d5ed5
2 parents cc96b2a + b118f69 commit 2579e9b

File tree

9 files changed

+25
-12
lines changed

9 files changed

+25
-12
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
name: Lint
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- name: Use Node.js 22
14-
uses: actions/setup-node@v4
14+
uses: actions/setup-node@v5
1515
with:
1616
node-version: 22
1717
- name: Install Dependencies

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
node-version: ["20.19.0", 22.x]
1313
runs-on: ${{matrix.os}}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v4
17+
uses: actions/setup-node@v5
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- name: Install Dependencies

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919

2020
# If release-please created a release, publish to npm
2121
- if: ${{ steps.release.outputs.release_created }}
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
- if: ${{ steps.release.outputs.release_created }}
2424
name: actions/setup
2525
uses: ./.github/actions/setup
2626
- if: ${{ steps.release.outputs.release_created }}
27-
run: npm publish --provenance
27+
run: npm publish --provenance --tag alpha
2828
env:
2929
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/release_notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
fi
4040
4141
# checkout the HEAD ref from prNumber
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
with:
4444
ref: refs/pull/${{ github.event_name == 'issue_comment' && github.event.issue.number || inputs.releasePr }}/head
4545

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.0.3"
2+
".": "4.0.0-alpha"
33
}

HISTORY.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [4.0.0-alpha](https://github.com/mongodb-js/mongodb-connection-string-url/compare/v3.0.3...v4.0.0-alpha) (2025-10-21)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* **NODE-7058:** drop support for Node 16 and 18 ([#95](https://github.com/mongodb-js/mongodb-connection-string-url/issues/95))
11+
12+
### Features
13+
14+
* **NODE-7058:** drop support for Node 16 and 18 ([#95](https://github.com/mongodb-js/mongodb-connection-string-url/issues/95)) ([783c85b](https://github.com/mongodb-js/mongodb-connection-string-url/commit/783c85b5416410fc92c1121d60f8b95e822465a0))
15+
516
## [3.0.3](https://github.com/mongodb-js/mongodb-connection-string-url/compare/v3.0.2...v3.0.3) (2025-09-04)
617

718

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-connection-string-url",
3-
"version": "3.0.3",
3+
"version": "4.0.0-alpha",
44
"description": "MongoDB connection strings, based on the WhatWG URL API",
55
"keywords": [
66
"password",

release-please-config.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"bump-minor-pre-major": false,
1111
"bump-patch-for-minor-pre-major": false,
1212
"draft": false,
13-
"prerelease": false
13+
"prerelease": true,
14+
"prerelease-type": "alpha",
15+
"versioning": "prerelease"
1416
}
1517
}
1618
}

0 commit comments

Comments
 (0)