Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: laravel/jetstream
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.3.0
Choose a base ref
...
head repository: laravel/jetstream
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.3.1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 27, 2024

  1. Update CHANGELOG

    driesvints authored and github-actions[bot] committed Feb 27, 2024
    Copy the full SHA
    b422860 View commit details

Commits on Feb 29, 2024

  1. Copy the full SHA
    1cb2b30 View commit details
Showing with 6 additions and 2 deletions.
  1. +6 −1 CHANGELOG.md
  2. +0 −1 stubs/inertia/resources/js/Components/Modal.vue
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Release Notes

## [Unreleased](https://github.com/laravel/jetstream/compare/v4.2.2...4.x)
## [Unreleased](https://github.com/laravel/jetstream/compare/v4.3.0...4.x)

## [v4.3.0](https://github.com/laravel/jetstream/compare/v4.2.2...v4.3.0) - 2024-02-23

* Update to Ziggy v2 by [@bakerkretzmar](https://github.com/bakerkretzmar) in https://github.com/laravel/jetstream/pull/1442
* [4.x] Change Inertia Modal.vue component to use a native <dialog> by [@Smef](https://github.com/Smef) in https://github.com/laravel/jetstream/pull/1431

## [v4.2.2](https://github.com/laravel/jetstream/compare/v4.2.1...v4.2.2) - 2024-01-17

1 change: 0 additions & 1 deletion stubs/inertia/resources/js/Components/Modal.vue
Original file line number Diff line number Diff line change
@@ -37,7 +37,6 @@ watch(() => props.show, () => {
const close = () => {
if (props.closeable) {
emit('close');
e.preventDefault();
}
};