Skip to content

Bump date-fns from 4.3.0 to 4.4.0 - #9

Closed
dependabot[bot] wants to merge 25 commits into
mainfrom
dependabot/npm_and_yarn/date-fns-4.4.0
Closed

Bump date-fns from 4.3.0 to 4.4.0#9
dependabot[bot] wants to merge 25 commits into
mainfrom
dependabot/npm_and_yarn/date-fns-4.4.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 16, 2026

Copy link
Copy Markdown

Bumps date-fns from 4.3.0 to 4.4.0.

Release notes

Sourced from date-fns's releases.

v4.4.0

This release revisits the approach to CDN usage and introduces a new package, @date-fns/cdn and deprecates the date-fns CDN scripts. It allowed reducing the zipped package size from 5.83 MB down to 3.96 MB without introducing any breaking changes.

In v5.0.0-alpha.0 where CDN scripts are completely removed from date-fns the change is more significant and brings the zipped package size down to 2.89 MB.

It is just the first step in optimizing the package size. Expect further size reduction in the future v4 and v5 versions.

Changed

  • DEPRECATED: The date-fns CDN scripts are now deprecated and will be removed in the next major release. Please switch to the new @date-fns/cdn package for CDN usage.

  • Removed CDN source maps to reduce the package size. If you rely on them, please switch to the new @date-fns/cdn package that still includes them.

Commits
  • cd53d25 Promote to v4.4.0
  • d948ec1 Preserve but deprecate CDN versions for v4, set up v5 with polyfills
  • ee65753 Add root mise :format task
  • 9f5bdf5 Add positional argument to test/smoke.sh script
  • 651ead6 Split CDN bundles into separate @​date-fns/cdn package
  • 224c1a2 Deprecate type tests as attw hangs on date-fns package
  • 7bb2842 Switch PACKAGE_OUTPUT_PATH to --dist flag in the package build script
  • b6ad5ac Add flags to control package build script
  • 424a783 Fix docs release after moving to monorepo setup
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

WentTheFox and others added 25 commits May 19, 2025 21:41
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Replace yarn with pnpm@11.5.2 (workspace:* refs, pnpm-workspace.yaml)
- Add minimumReleaseAge of 14 days to pnpm-workspace.yaml
- Update CI workflow to use pnpm and pin actions to commit SHAs (v6)
- Add .github/dependabot.yml for weekly npm and github-actions updates

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…sks)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Key changes:
- Next.js 16, React 19, RTK v2, reactstrap v9, next-i18next v16, date-fns v4, bootstrap-scss v5
- TypeScript 6: moduleResolution bundler, removed baseUrl
- Replace urlcat with native URLSearchParams
- Replace next-seo with native <Head> meta tags
- Replace @seinopsys-forks/openapi-to-typescript with openapi-typescript v7
- Fix CSS module class names to camelCase for Turbopack compatibility (asIs convention)
- Fix Bootstrap 5 SCSS: color-yiq() → color-contrast(), remove ~ import prefix
- Suppress DEP0169 url.parse warning from transitive json-schema-ref-parser dep

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…schema

- Replace node-fetch (not installed) with Node.js 24 built-in fetch
- Add explicit error when API_JSON_PATH is unset
- Disable matrix fail-fast so all OS builds run independently

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Use shallow routing for pagination links so router.query updates
synchronously on click, avoiding a stale-query race between the two
pageable lists during the SSR data round trip.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Swaps the i18n stack for next-intl across the Celestia frontend, converting
all translation message files to ICU MessageFormat (interpolation, plurals,
named rich-text tags) and updating every useTranslation/Trans call site to
useTranslations/t.rich.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
The custom \$theme-colors map in _vars.scss was overwriting Bootstrap's
default map entirely instead of extending it, since !default has no
effect once a variable is already assigned. This dropped warning,
danger, etc. from \$theme-colors, so Bootstrap never generated
.alert-warning/.alert-danger/etc., leaving alerts with transparent
backgrounds and inherited text color.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Next 16 removed the `next lint` CLI, so lint now runs via `eslint .`
against an eslint.config.mjs. ESLint 10 isn't yet supported by
eslint-plugin-react/eslint-config-next's bundled parser, so eslint is
pinned to ^9.39.1. Also drops typescript-eslint's type-checked rules
(false positives from a typescript-eslint/TS 6 interaction with
next-intl's TFunction type) and the new React Compiler-oriented
react-hooks v7 rules, neither of which were previously enforced, and
fixes the handful of real violations (disallowed default React
imports, no-param-reassign) the new config surfaced.
The previous fix made _vars.scss map-merge onto Bootstrap's \$theme-colors,
but several CSS modules import _vars.scss without first importing
bootstrap-scss/variables, leaving \$theme-colors undefined in that context.
Import Bootstrap's functions/variables partials before the map-merge so
\$theme-colors is always defined.
Bumps [date-fns](https://github.com/date-fns/date-fns) from 4.3.0 to 4.4.0.
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Commits](date-fns/date-fns@v4.3.0...v4.4.0)

---
updated-dependencies:
- dependency-name: date-fns
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 16, 2026
@WentTheFox WentTheFox closed this Aug 27, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 27, 2026

Copy link
Copy Markdown
Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/date-fns-4.4.0 branch August 27, 2026 16:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Development

Successfully merging this pull request may close these issues.

1 participant