Skip to content

Commit

Permalink
v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bakerkretzmar committed Oct 17, 2024
1 parent 406e956 commit ab39cd9
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 8 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ Breaking changes are marked with ⚠️.

## [Unreleased]

## [v2.3.1] - 2024-10-17

**Fixed**

- Escape special regex characters when matching routes by @aguingand in https://github.com/tighten/ziggy/pull/766
- Fix params sometimes being double-decoded by @bakerkretzmar in https://github.com/tighten/ziggy/pull/778

**Changed**

- Optimize has() by @thomas-brx in https://github.com/tighten/ziggy/pull/770

## [v2.3.0] - 2024-07-21

**Added**
Expand Down Expand Up @@ -418,7 +429,8 @@ See [UPGRADING](UPGRADING.md#upgrading-from-1x-to-2x) for detailed upgrade instr

For previous changes see the [Releases](https://github.com/tighten/ziggy/releases) page.

[Unreleased]: https://github.com/tighten/ziggy/compare/v2.3.0...HEAD
[Unreleased]: https://github.com/tighten/ziggy/compare/v2.3.1...HEAD
[v2.3.1]: https://github.com/tighten/ziggy/compare/v2.3.0...v2.3.1
[v2.3.0]: https://github.com/tighten/ziggy/compare/v2.2.1...v2.3.0
[v2.2.1]: https://github.com/tighten/ziggy/compare/v2.2.0...v2.2.1
[v2.2.0]: https://github.com/tighten/ziggy/compare/v2.1.0...v2.2.0
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ See also [`tighten/ziggy-type-testing`](https://github.com/tighten/ziggy-type-te
To create and release a new version of Ziggy:

- Update the `version` field in `package.json` and `package-lock.json` to the new version number **not prefixed with `v`** by running `npm version <version>` (e.g. `npm version 2.1.0`).
- Update the `version` field in `package.json` and `package-lock.json` to the new version number **not prefixed with `v`** by running `npm version <version> --no-git-tag-version` (e.g. `npm version 2.1.0 --no-git-tag-version`).
- Update the Changelog.
- Rebuild Ziggy's assets with `npm run build`.
- Commit the changes and push them to the corresponding branch (e.g. `2.x` or `main`).
Expand Down
2 changes: 1 addition & 1 deletion dist/index.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/route.umd.js

Large diffs are not rendered by default.

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": "ziggy-js",
"version": "2.3.0",
"version": "2.3.1",
"description": "Use your Laravel named routes in JavaScript.",
"keywords": [
"laravel",
Expand Down

0 comments on commit ab39cd9

Please sign in to comment.