All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
- Update to Geo 3.4.0
Geo.PostGIS.Extension
now uses the:binary
format instead of:text
- Geo dependency to 3.3
- Support for Ecto 3.0
- Use
Geo.PostGIS.Geometry
when defining structs instead ofGeo.Geometry
#instead of
schema "test" do
field :name, :string
field :geom, Geo.Geometry # or Geo.Point, Geo.LineString, etc
end
#now use
schema "test" do
field :name, :string
field :geom, Geo.PostGIS.Geometry
end
- PostGIS extension for Postgrex