- feat: broaden Next.js peer dependency to
^15.0.0 || ^16.0.0so the plugin can be installed alongside Next.js 16
- BREAKING: The Google Maps API key is now a required plugin configuration option:
// Before (<0.2.0):
plugins: [payloadGeocodingPlugin({})]
// After (>=0.2.0):
plugins: [
payloadGeocodingPlugin({
googleMapsApiKey: process.env.NEXT_PUBLIC_GOOGLE_MAPS_API_KEY!,
}),
]- fix: display asterisk for required geodata fields in UI (87413ba)
- Initial release