Skip to content

Commit

Permalink
Gardening: Fix errant dependency update (compare-versions) (#40864)
Browse files Browse the repository at this point in the history
* Use named export

* Add changelog

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/12652710964

Upstream-Ref: Automattic/jetpack@cd6eda4
  • Loading branch information
tbradsha authored and matticbot committed Jan 7, 2025
1 parent ee4acdc commit bd9fba7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ This is an alpha version! The changes listed here are not final.
- Support references: stop gathering p2 comments in list of support references.
- Updated package dependencies.

### Fixed
- Ensure use of named export for compare-versions.

## [6.0.0] - 2024-12-04
### Added
- Board Triage: automatically add the issue type to our project board when a Type label can be found in the issue. [#40110]
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52318,7 +52318,7 @@ module.exports = getFiles;
/***/ 1006:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

const compareVersions = __nccwpck_require__( 5701 );
const { compareVersions } = __nccwpck_require__( 5701 );
const moment = __nccwpck_require__( 8496 );

/* global GitHub, OktokitIssuesListMilestonesForRepoResponseItem */
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/utils/get-next-valid-milestone.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const compareVersions = require( 'compare-versions' );
const { compareVersions } = require( 'compare-versions' );
const moment = require( 'moment' );

/* global GitHub, OktokitIssuesListMilestonesForRepoResponseItem */
Expand Down

0 comments on commit bd9fba7

Please sign in to comment.