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: spatie/laravel-sitemap
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6.2.4
Choose a base ref
...
head repository: spatie/laravel-sitemap
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 759 additions and 330 deletions.
  1. +2 −9 .github/workflows/dependabot-auto-merge.yml
  2. +2 −2 .github/workflows/php-cs-fixer.yml
  3. +8 −13 .github/workflows/run-tests.yml
  4. +2 −2 .github/workflows/update-changelog.yml
  5. +1 −0 .phpunit.cache/test-results
  6. +211 −0 CHANGELOG.md
  7. +50 −34 README.md
  8. +4 −0 UPGRADING.md
  9. +14 −15 composer.json
  10. +12 −22 phpunit.xml.dist
  11. +11 −0 resources/views/news.blade.php
  12. +1 −1 resources/views/sitemap.blade.php
  13. +3 −6 resources/views/url.blade.php
  14. +23 −0 resources/views/video.blade.php
  15. +5 −3 src/Crawler/Observer.php
  16. +4 −2 src/Sitemap.php
  17. +4 −4 src/SitemapGenerator.php
  18. +4 −2 src/SitemapIndex.php
  19. +79 −0 src/Tags/News.php
  20. +28 −5 src/Tags/Url.php
  21. +112 −0 src/Tags/Video.php
  22. +1 −4 tests/ImageTest.php
  23. +40 −0 tests/NewsTest.php
  24. +12 −1 tests/SitemapIndexTest.php
  25. +23 −0 tests/SitemapTest.php
  26. +4 −12 tests/UrlTest.php
  27. +40 −0 tests/VideoTest.php
  28. +1 −19 tests/__snapshots__/SitemapGeneratorTest__it_can_generate_a_sitemap__1.xml
  29. +1 −19 ...napshots__/SitemapGeneratorTest__it_can_modify_the_attributes_while_generating_the_sitemap__1.xml
  30. +1 −4 tests/__snapshots__/SitemapGeneratorTest__it_can_use_a_custom_profile__1.xml
  31. +0 −33 ...apGeneratorTest__it_will_not_add_the_url_to_the_site_map_if_has_crawled_does_not_return_it__1.xml
  32. +1 −6 ...apGeneratorTest__it_will_not_add_the_url_to_the_sitemap_if_hasCrawled()_does_not_return_it__1.xml
  33. +18 −0 ...apGeneratorTest__it_will_not_add_the_url_to_the_sitemap_if_hasCrawled___does_not_return_it__1.xml
  34. +0 −27 ...__snapshots__/SitemapGeneratorTest__it_will_not_crawl_an_url_if_should_crawl_returns_false__1.xml
  35. +1 −5 ..._snapshots__/SitemapGeneratorTest__it_will_not_crawl_an_url_of_shouldCrawl()_returns_false__1.xml
  36. +15 −0 ..._snapshots__/SitemapGeneratorTest__it_will_not_crawl_an_url_of_shouldCrawl___returns_false__1.xml
  37. +0 −4 ....xml → SitemapIndexTest__it_can_write_a_sitemap_to_a_storage_disk_with_private_visibility__1.xml}
  38. +3 −0 ...pshots__/SitemapIndexTest__it_can_write_a_sitemap_to_a_storage_disk_with_public_visibility__1.xml
  39. +0 −9 tests/__snapshots__/SitemapTest__a_url_object_can_not_be_added_twice_to_the_sitemap__1.xml
  40. +1 −4 tests/__snapshots__/SitemapTest__a_url_object_cannot_be_added_twice_to_the_sitemap__1.xml
  41. +1 −4 tests/__snapshots__/SitemapTest__an_url_cannot_be_added_twice_to_the_sitemap__1.xml
  42. +1 −4 tests/__snapshots__/SitemapTest__an_url_object_can_be_added_to_the_sitemap__1.xml
  43. +1 −4 tests/__snapshots__/SitemapTest__an_url_string_can_be_added_to_the_sitemap__1.xml
  44. +1 −4 tests/__snapshots__/SitemapTest__an_url_with_an_alternate_can_be_added_to_the_sitemap__1.xml
  45. +1 −1 tests/__snapshots__/SitemapTest__it_can_render_an_empty_sitemap__1.xml
  46. +1 −3 tests/__snapshots__/SitemapTest__it_can_render_an_url_with_all_its_set_properties__1.xml
  47. +2 −4 ..._be_added_twice_to_the_sitemap__1.xml → SitemapTest__it_can_render_an_url_with_priority_0__1.xml}
  48. +1 −1 tests/__snapshots__/SitemapTest__it_can_write_a_sitemap_to_a_file__1.xml
  49. +1 −1 tests/__snapshots__/SitemapTest__it_can_write_a_sitemap_to_a_storage_disk__1.xml
  50. +3 −0 ...__snapshots__/SitemapTest__it_can_write_a_sitemap_to_a_storage_disk_with_public_visibility__1.xml
  51. +1 −7 tests/__snapshots__/SitemapTest__multiple_urls_can_be_added_in_one_call__1.xml
  52. +1 −7 tests/__snapshots__/SitemapTest__multiple_urls_can_be_added_to_the_sitemap__1.xml
  53. +1 −13 tests/__snapshots__/SitemapTest__sitemapable_object_can_be_added__1.xml
  54. +1 −10 tests/__snapshots__/SitemapTest__sitemapable_objects_can_be_added__1.xml
11 changes: 2 additions & 9 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
@@ -8,15 +8,15 @@ permissions:
jobs:
dependabot:
runs-on: ubuntu-latest
timeout-minutes: 5
if: ${{ github.actor == 'dependabot[bot]' }}
steps:

- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1.3.5
uses: dependabot/fetch-metadata@v2.3.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
compat-lookup: true

- name: Auto-merge Dependabot PRs for semver-minor updates
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
@@ -31,10 +31,3 @@ jobs:
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: Auto-merge Dependabot PRs for Action major versions when compatibility is higher than 90%
if: ${{steps.metadata.outputs.package-ecosystem == 'github_actions' && steps.metadata.outputs.update-type == 'version-update:semver-major' && steps.metadata.outputs.compatibility-score >= 90}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
4 changes: 2 additions & 2 deletions .github/workflows/php-cs-fixer.yml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

@@ -18,6 +18,6 @@ jobs:
args: --config=.php_cs.dist.php --allow-risky=yes

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Fix styling
21 changes: 8 additions & 13 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -8,26 +8,21 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.2, 8.1, '8.0']
laravel: [9.*, 8.*, 10.*]
php: [8.2, 8.3, 8.4]
laravel: [11.*, 12.*]
dependency-version: [prefer-stable]
os: [ubuntu-latest]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: ^6.23
exclude:
- laravel: 10.*
php: 8.0
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
testbench: 10.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install and start test server
run: |
@@ -39,7 +34,7 @@ jobs:
run: sleep 5

- name: Cache dependencies
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.composer/cache/files
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
4 changes: 2 additions & 2 deletions .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main

@@ -21,7 +21,7 @@ jobs:
release-notes: ${{ github.event.release.body }}

- name: Commit updated CHANGELOG
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: main
commit_message: Update CHANGELOG
1 change: 1 addition & 0 deletions .phpunit.cache/test-results
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"version":"pest_2.36.0","defects":[],"times":{"P\\Tests\\AlternateTest::__pest_evaluable_url_can_be_set":0.005,"P\\Tests\\AlternateTest::__pest_evaluable_locale_can_be_set":0,"P\\Tests\\CrawlProfileTest::__pest_evaluable_it_can_use_default_profile":0.001,"P\\Tests\\CrawlProfileTest::__pest_evaluable_it_can_use_the_custom_profile":0,"P\\Tests\\CrawlProfileTest::__pest_evaluable_it_can_use_the_subdomain_profile":0,"P\\Tests\\CrawlProfileTest::__pest_evaluable_it_can_use_the_internal_profile":0,"P\\Tests\\ImageTest::__pest_evaluable_XML_has_image":0.004,"P\\Tests\\NewsTest::__pest_evaluable_XML_has_News_tag":0.001,"P\\Tests\\SitemapGeneratorTest::__pest_evaluable_it_can_generate_a_sitemap":0.011,"P\\Tests\\SitemapGeneratorTest::__pest_evaluable_it_will_create_new_sitemaps_if_the_maximum_amount_is_crossed":0.007,"P\\Tests\\SitemapGeneratorTest::__pest_evaluable_it_can_modify_the_attributes_while_generating_the_sitemap":0.004,"P\\Tests\\SitemapGeneratorTest::__pest_evaluable_it_will_not_add_the_url_to_the_sitemap_if_hasCrawled___does_not_return_it":0.004,"P\\Tests\\SitemapGeneratorTest::__pest_evaluable_it_will_not_crawl_an_url_of_shouldCrawl___returns_false":0.003,"P\\Tests\\SitemapGeneratorTest::__pest_evaluable_it_will_not_crawl_an_url_if_listed_in_robots_txt":0.003,"P\\Tests\\SitemapGeneratorTest::__pest_evaluable_it_will_crawl_an_url_if_robots_txt_check_is_disabled":0.004,"P\\Tests\\SitemapGeneratorTest::__pest_evaluable_it_can_use_a_custom_profile":0.002,"P\\Tests\\SitemapIndexTest::__pest_evaluable_it_provides_a__create__method":0,"P\\Tests\\SitemapIndexTest::__pest_evaluable_it_can_render_an_empty_index":0,"P\\Tests\\SitemapIndexTest::__pest_evaluable_it_can_write_an_index_to_a_file":0.001,"P\\Tests\\SitemapIndexTest::__pest_evaluable_it_can_write_a_sitemap_to_a_storage_disk_with_private_visibility":0.004,"P\\Tests\\SitemapIndexTest::__pest_evaluable_it_can_write_a_sitemap_to_a_storage_disk_with_public_visibility":0.001,"P\\Tests\\SitemapIndexTest::__pest_evaluable_an_url_string_can_be_added_to_the_index":0.001,"P\\Tests\\SitemapIndexTest::__pest_evaluable_a_sitemap_object_can_be_added_to_the_index":0.001,"P\\Tests\\SitemapIndexTest::__pest_evaluable_multiple_sitemaps_can_be_added_to_the_index":0,"P\\Tests\\SitemapIndexTest::__pest_evaluable_it_can_render_a_sitemap_with_all_its_set_properties":0.001,"P\\Tests\\SitemapIndexTest::__pest_evaluable_it_can_determine_if_it_contains_a_given_sitemap":0,"P\\Tests\\SitemapIndexTest::__pest_evaluable_it_can_get_a_specific_sitemap":0,"P\\Tests\\SitemapIndexTest::__pest_evaluable_it_returns_null_when_getting_a_non_existing_sitemap":0,"P\\Tests\\SitemapIndexTest::__pest_evaluable_an_instance_can_return_a_response":0.002,"P\\Tests\\SitemapTest::__pest_evaluable_it_provides_a_create_method":0,"P\\Tests\\SitemapTest::__pest_evaluable_it_can_render_an_empty_sitemap":0,"P\\Tests\\SitemapTest::__pest_evaluable_it_can_write_a_sitemap_to_a_file":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_it_can_write_a_sitemap_to_a_storage_disk":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_it_can_write_a_sitemap_to_a_storage_disk_with_public_visibility":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_an_url_string_can_be_added_to_the_sitemap":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_an_url_cannot_be_added_twice_to_the_sitemap":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_an_url_with_an_alternate_can_be_added_to_the_sitemap":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_an_url_object_can_be_added_to_the_sitemap":0,"P\\Tests\\SitemapTest::__pest_evaluable_multiple_urls_can_be_added_to_the_sitemap":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_it_can_render_an_url_with_all_its_set_properties":0.002,"P\\Tests\\SitemapTest::__pest_evaluable_it_can_render_an_url_with_priority_0":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_it_can_determine_if_it_contains_a_given_url":0,"P\\Tests\\SitemapTest::__pest_evaluable_it_can_get_a_specific_url":0,"P\\Tests\\SitemapTest::__pest_evaluable_it_returns_null_when_getting_a_non_existing_url":0,"P\\Tests\\SitemapTest::__pest_evaluable_a_url_object_cannot_be_added_twice_to_the_sitemap":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_an_instance_can_return_a_response":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_multiple_urls_can_be_added_in_one_call":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_sitemapable_object_can_be_added":0.001,"P\\Tests\\SitemapTest::__pest_evaluable_sitemapable_objects_can_be_added":0.001,"P\\Tests\\UrlTest::__pest_evaluable_it_provides_a__create__method":0,"P\\Tests\\UrlTest::__pest_evaluable_url_can_be_set":0,"P\\Tests\\UrlTest::__pest_evaluable_last_modification_date_can_be_set":0,"P\\Tests\\UrlTest::__pest_evaluable_priority_can_be_set":0,"P\\Tests\\UrlTest::__pest_evaluable_priority_is_clamped":0,"P\\Tests\\UrlTest::__pest_evaluable_change_frequency_can_be_set":0,"P\\Tests\\UrlTest::__pest_evaluable_alternate_can_be_added":0,"P\\Tests\\UrlTest::__pest_evaluable_it_can_determine_its_type":0,"P\\Tests\\UrlTest::__pest_evaluable_it_can_determine_the_path":0,"P\\Tests\\UrlTest::__pest_evaluable_it_can_get_all_segments_from_a_relative_url":0,"P\\Tests\\UrlTest::__pest_evaluable_it_can_get_all_segments_from_an_absolute_url":0,"P\\Tests\\UrlTest::__pest_evaluable_it_can_get_a_specific_segment":0,"P\\Tests\\UrlTest::__pest_evaluable_it_will_return_null_for_non_existing_segment":0,"P\\Tests\\VideoTest::__pest_evaluable_XML_has_Video_tag":0.001}}
211 changes: 211 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,217 @@

All notable changes to `laravel-sitemap` will be documented in this file

## 7.3.5 - 2025-02-21

### What's Changed

* Update README.md According to Commit cfa3184 by @mahdirezaei-dev in https://github.com/spatie/laravel-sitemap/pull/565
* Support for Laravel 12 by @pascalbaljet in https://github.com/spatie/laravel-sitemap/pull/568

### New Contributors

* @mahdirezaei-dev made their first contribution in https://github.com/spatie/laravel-sitemap/pull/565

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/7.3.4...7.3.5

## 7.3.4 - 2025-01-31

### What's Changed

* Make `$response` param explicitly nullable by @JonPurvis in https://github.com/spatie/laravel-sitemap/pull/564

### New Contributors

* @JonPurvis made their first contribution in https://github.com/spatie/laravel-sitemap/pull/564

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/7.3.3...7.3.4

## 7.3.3 - 2025-01-27

### What's Changed

* Bump dependabot/fetch-metadata from 2.2.0 to 2.3.0 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/561
* Making possible to add Crawl Observers by @noith in https://github.com/spatie/laravel-sitemap/pull/560

### New Contributors

* @noith made their first contribution in https://github.com/spatie/laravel-sitemap/pull/560

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/7.3.2...7.3.3

## 7.3.2 - 2025-01-13

### What's Changed

* Revert PR 558 by @freekmurze in https://github.com/spatie/laravel-sitemap/pull/559

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/7.3.1...7.3.2

## 7.3.1 - 2025-01-06

### What's Changed

* Make BrowserShot Optional in SitemapGenerator by @antonioribeiro in https://github.com/spatie/laravel-sitemap/pull/558

### New Contributors

* @antonioribeiro made their first contribution in https://github.com/spatie/laravel-sitemap/pull/558

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/7.3.0...7.3.1

## 7.3.0 - 2024-12-02

### What's Changed

* Bump dependabot/fetch-metadata from 1.6.0 to 2.1.0 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/544
* Bump dependabot/fetch-metadata from 2.1.0 to 2.2.0 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/553
* Update PHP version constraints to support PHP 8.4 by @Robinvm in https://github.com/spatie/laravel-sitemap/pull/555

### New Contributors

* @Robinvm made their first contribution in https://github.com/spatie/laravel-sitemap/pull/555

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/7.2.1...7.3.0

## 7.2.1 - 2024-06-04

### What's Changed

* remove deprecated tgas from url blade by @rivassh in https://github.com/spatie/laravel-sitemap/pull/545
* Update README.md by @kamilkozak in https://github.com/spatie/laravel-sitemap/pull/547

### New Contributors

* @rivassh made their first contribution in https://github.com/spatie/laravel-sitemap/pull/545
* @kamilkozak made their first contribution in https://github.com/spatie/laravel-sitemap/pull/547

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/7.2.0...7.2.1

## 7.2.0 - 2024-02-15

### What's Changed

* Add Laravel 11 Support by @Jubeki in https://github.com/spatie/laravel-sitemap/pull/538

### New Contributors

* @Jubeki made their first contribution in https://github.com/spatie/laravel-sitemap/pull/538

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/7.1.1...7.2.0

## 7.1.1 - 2024-01-26

### What's Changed

* Symfony Dom Crawler Version Upgrade to 7.0 by @karakhanyans in https://github.com/spatie/laravel-sitemap/pull/537

### New Contributors

* @karakhanyans made their first contribution in https://github.com/spatie/laravel-sitemap/pull/537

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/7.1.0...7.1.1

## 7.1.0 - 2024-01-24

### What's Changed

* Update README.md by @DannyCooper in https://github.com/spatie/laravel-sitemap/pull/528
* Bump actions/cache from 3 to 4 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/535
* Add public for ->writeToDisk() as option by @bmckay959 in https://github.com/spatie/laravel-sitemap/pull/534

### New Contributors

* @DannyCooper made their first contribution in https://github.com/spatie/laravel-sitemap/pull/528
* @bmckay959 made their first contribution in https://github.com/spatie/laravel-sitemap/pull/534

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/7.0.0...7.1.0

## 7.0.0 - 2023-10-24

- add compatibility with spatie/crawler v8

## 6.4.0 - 2023-10-18

### What's Changed

- Bump dependabot/fetch-metadata from 1.5.1 to 1.6.0 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/513
- Fix `lastmod` tests by @bakerkretzmar in https://github.com/spatie/laravel-sitemap/pull/516
- Bump actions/checkout from 3 to 4 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/518
- Add video tags as separate list by @Briareos17 in https://github.com/spatie/laravel-sitemap/pull/525
- Allow priority value of `0` by @bakerkretzmar in https://github.com/spatie/laravel-sitemap/pull/517
- Bump stefanzweifel/git-auto-commit-action from 4 to 5 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/523
- Add Google News support by @Briareos17 in https://github.com/spatie/laravel-sitemap/pull/526

### New Contributors

- @bakerkretzmar made their first contribution in https://github.com/spatie/laravel-sitemap/pull/516
- @Briareos17 made their first contribution in https://github.com/spatie/laravel-sitemap/pull/525

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/6.3.1...6.4.0

## 6.3.1 - 2023-06-27

### What's Changed

- Bump dependabot/fetch-metadata from 1.4.0 to 1.5.1 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/506
- Remove default lastModificationDate = now() by @robindirksen1 in https://github.com/spatie/laravel-sitemap/pull/510
- Update README.md by @s-light in https://github.com/spatie/laravel-sitemap/pull/499

### New Contributors

- @robindirksen1 made their first contribution in https://github.com/spatie/laravel-sitemap/pull/510
- @s-light made their first contribution in https://github.com/spatie/laravel-sitemap/pull/499

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/6.3.0...6.3.1

## 6.3.0 - 2023-04-28

### What's Changed

- Bump dependabot/fetch-metadata from 1.3.5 to 1.3.6 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/491
- Bump actions/cache from 1 to 3 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/482
- Bump dependabot/fetch-metadata from 1.3.6 to 1.4.0 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/504
- Add video tag by @erfansahaf in https://github.com/spatie/laravel-sitemap/pull/503

### New Contributors

- @erfansahaf made their first contribution in https://github.com/spatie/laravel-sitemap/pull/503

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/6.2.5...6.3.0

## 6.2.5 - 2023-01-26

### What's Changed

- Revert "fix for maximum crawl limit (#470)" by @BoGnY in https://github.com/spatie/laravel-sitemap/pull/490

### New Contributors

- @BoGnY made their first contribution in https://github.com/spatie/laravel-sitemap/pull/490

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/6.2.4...6.2.5

## 6.2.4 - 2023-01-24

### What's Changed

- Refactor tests to Pest by @alexmanase in https://github.com/spatie/laravel-sitemap/pull/476
- Add Dependabot Automation by @patinthehat in https://github.com/spatie/laravel-sitemap/pull/480
- Add PHP 8.2 Support by @patinthehat in https://github.com/spatie/laravel-sitemap/pull/479
- Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/spatie/laravel-sitemap/pull/483
- Fix github badges by @Tofandel in https://github.com/spatie/laravel-sitemap/pull/488
- Add laravel 10.x Compactibility by @njoguamos in https://github.com/spatie/laravel-sitemap/pull/489

### New Contributors

- @alexmanase made their first contribution in https://github.com/spatie/laravel-sitemap/pull/476
- @patinthehat made their first contribution in https://github.com/spatie/laravel-sitemap/pull/480
- @dependabot made their first contribution in https://github.com/spatie/laravel-sitemap/pull/483
- @Tofandel made their first contribution in https://github.com/spatie/laravel-sitemap/pull/488
- @njoguamos made their first contribution in https://github.com/spatie/laravel-sitemap/pull/489

**Full Changelog**: https://github.com/spatie/laravel-sitemap/compare/6.2.3...6.2.4

## 6.2.3 - 2022-10-24

### What's Changed
Loading