Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,23 @@ updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
interval: "weekly"
day: "monday"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "security"
# Routine version updates are batched into two pull requests. Dependabot
# security updates are generated independently of these groups and are NOT
# suppressed by grouping - they continue to open individually and promptly.
groups:
production-dependencies:
dependency-type: "production"
update-types:
- "minor"
- "patch"
development-dependencies:
dependency-type: "development"
update-types:
- "minor"
- "patch"
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [3.1.1] - 2026-08-26

### Fixed
- Production `npm audit` high-severity finding resolved: `nanoid` bumped to
**3.3.18** to close GHSA-2v37-7h3g-55p8, restoring a green nightly CI audit
on the staging line

### Changed
- Dependabot now groups routine minor and patch npm updates into one production
and one development pull request per week instead of one pull request per
package; security updates are unaffected and continue to open individually

---

## [3.1.0] - 2026-08-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion VERSION.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.0
3.1.1
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "modelseed-ui",
"version": "3.1.0",
"version": "3.1.1",
"private": true,
"scripts": {
"predev": "node scripts/sync-version-from-env.mjs",
Expand Down