Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 648 Bytes

File metadata and controls

29 lines (19 loc) · 648 Bytes

Changelog

0.2.2

  • feat: broaden Next.js peer dependency to ^15.0.0 || ^16.0.0 so the plugin can be installed alongside Next.js 16

0.2.0

  • 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!,
  }),
]

0.1.6

  • fix: display asterisk for required geodata fields in UI (87413ba)

0.1.0

  • Initial release