Skip to content

Commit e6ba51d

Browse files
authored
Bump several packages to address security vulnerabilities (#77)
1 parent d0ac47a commit e6ba51d

File tree

12 files changed

+213
-224
lines changed

12 files changed

+213
-224
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
python-version: ${{ matrix.python }}
3838
- uses: snok/install-poetry@v1
3939
with:
40-
version: '1.7.1'
40+
version: '1.8.3'
4141
virtualenvs-create: true
4242
virtualenvs-in-project: true
4343
- id: poetry-cache

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repos:
2424
hooks:
2525
- id: flake8
2626
- repo: https://github.com/python/black
27-
rev: 22.3.0
27+
rev: 24.3.0
2828
hooks:
2929
- id: black
3030
- repo: https://github.com/pre-commit/mirrors-eslint

CHANGELOG.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,19 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1111
- `Deprecated` for soon-to-be removed features.
1212
- `Developer` for changes to the developer experience.
1313
- `Fixed` for bug fixes.
14+
- `Pinned packages updated` to list pinned packages that have been updated. Do not write changelog entries for third-party dependencies.
1415
- `Removed` for now removed features.
15-
- `Security` in case of vulnerabilities.
1616

1717
## Unreleased
1818

19+
## [2.0.1](https://github.com/torchbox/tbxforms/releases/tag/v2.0.1)
20+
21+
### Pinned packages updated
22+
23+
- `vite` from 2.9.17 to 2.9.18 [#77]
24+
- `black` from 22.3.0 to 24.3.0 [#77]
25+
- `poetry` from 1.7.1 to 1.8.3 [#77]
26+
1927
## [2.0.0](https://github.com/torchbox/tbxforms/releases/tag/v2.0.0)
2028

2129
### Added
@@ -25,9 +33,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
2533

2634
### Changed
2735

28-
- `django-crispy-forms` updated to 2.x [#61]
36+
- `|safe` is no longer applied within templates [#61]
2937

30-
### Deprecated
38+
### Removed
3139

3240
- Django support for 2.2, 3.0, and 3.1 [#61]
3341
- `TBXFORMS_ALLOW_HTML_LABEL`, `TBXFORMS_ALLOW_HTML_HELP_TEXT`, and `TBXFORMS_ALLOW_HTML_BUTTON` settings (developers must now mark strings as safe to render markup) [#61] [#62]
@@ -37,9 +45,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
3745

3846
- Documentation referencing an incorrect CSS import path
3947

40-
### Security
48+
### Pinned packages updated
4149

42-
- `|safe` is no longer applied within templates [#61]
50+
- `django` from 2.2.x to 3.2.x [#61]
51+
- `django-crispy-forms` from 1.13.x to 2.1.x [#61]
52+
- `flake8` from 4.0.1 to 5.0.4 [#61]
4353

4454
## [1.1.0](https://github.com/torchbox/tbxforms/releases/tag/v1.1.0)
4555

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ We welcome all support, whether on bug reports, code, design, reviews, tests, do
88

99
### Installation
1010

11-
With Python 3.8 or up, Node 20, [pre-commit](https://pre-commit.com/), and [Poetry 1.7.1](https://python-poetry.org/docs/#installing-with-the-official-installer)
11+
With Python 3.8+, Node 20, and [Poetry 1.8.3](https://python-poetry.org/docs/#installing-with-the-official-installer) installed, run:
1212

1313
```bash
1414
git clone [email protected]:torchbox/tbxforms.git

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tbxforms",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"main": "./dist/tbxforms.umd.js",
55
"module": "./dist/tbxforms.es.js",
66
"files": [
@@ -34,7 +34,7 @@
3434
"eslint": "^7.32.0",
3535
"prettier": "^2.3.2",
3636
"sass": "^1.69.7",
37-
"vite": "^2.9.17"
37+
"vite": "^2.9.18"
3838
},
3939
"scripts": {
4040
"lint:js": "eslint --report-unused-disable-directives .",

0 commit comments

Comments
 (0)