Skip to content

Commit

Permalink
Use this project's own dependency lodash.groupby (#157)
Browse files Browse the repository at this point in the history
* Fix `lodash.groupby` typo

* Bump version to `4.3.1`
  • Loading branch information
danyalaytekin authored Nov 15, 2023
1 parent 6040923 commit 5c1c499
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 4.3.1 (2023-11-15)

* Fix bug in naming when requiring `lodash.groupby`

## 4.3.0 (2023-11-14)

* Set dependency `pa11y` to `^6.2.3` from `~6.2.3` to permit minor level upgrades to take place at installation time.
Expand Down
4 changes: 2 additions & 2 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": "pa11y-webservice",
"version": "4.3.0",
"version": "4.3.1",
"engines": {
"node": ">=12"
},
Expand Down
2 changes: 1 addition & 1 deletion route/tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/* eslint camelcase: 'off' */
'use strict';

const groupBy = require('lodash/groupby');
const groupBy = require('lodash.groupby');
const Joi = require('joi');
const {isValidAction} = require('pa11y');

Expand Down

0 comments on commit 5c1c499

Please sign in to comment.