Remove crawl API endpoint (#733)#1065
Open
dduugg wants to merge 1 commit into
Open
Conversation
The crawl endpoint is no longer used by any known clients or crawlers (per investigation in shift-org#620), so remove it along with its view, test, and documentation. - Delete app/endpoints/crawl.js, app/views/crawl.html, app/test/crawl_test.js - Unregister the endpoint and drop the crawl config block - Remove the "Crawling an event" section and note from CALENDAR_API.md - Bump API version to 3.61.0 and add a changelog entry
carrythebanner
approved these changes
May 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #733.
Following the investigation in #620, the
crawlendpoint is no longer used by any known clients or crawlers, so this removes it along with its view, test, and documentation.Changes
app/endpoints/crawl.js,app/views/crawl.html, andapp/test/crawl_test.js.app/appEndpoints.jsand removed the now-unusedcrawlconfig block (plus stale comments) inapp/config.js.docs/CALENDAR_API.md. The historical3.4.0changelog line that mentions Crawl is left intact as a record.3.61.0with a changelog entry.A note on versioning
Removing a documented public endpoint is technically a breaking change, which under strict semver would warrant a major bump (
4.0.0). I went with a minor bump (3.61.0) to stay consistent with the existing changelog cadence and to avoid churning the manyApi-Versiontest assertions that are pinned to/^3\./. Happy to switch this to4.0.0(and update those assertions to be major-version-agnostic) if maintainers prefer the stricter interpretation.