8000 Comparing v3.5.1...v3.6.0 · felt/geo · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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: felt/geo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.5.1
Choose a base ref
...
head repository: felt/geo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.6.0
Choose a head ref
  • 14 commits
  • 29 files changed
  • 6 contributors

Commits on Sep 14, 2023

  1. Correct docs links (#182)

    Now that the package lives under the Felt org, I've updated all the links to point to their new home.
    s3cur3 authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    cda5bba View commit details
    Browse the repository at this point in the history
  2. Add GitHub Actions CI (#181)

    * Add GitHub Actions CI
    
    Adds GitHub Actions for:
    
    - build & test for all combinations of Elixir 1.10, 1.11, 1.12, 1.13, 1.14, and 1.15, plus OTP 22, 23, 24, 25, and 26
    - basic code quality checks (and a formatting fix and unused dependency removal to match)
    - checking for retired Hex dependencies
    
    Also updates the maintainers list and URL to reflect the new Felt org.
    
    * Run mix format
    
    * Fix build & test action
    
    * Test a failure case discovered by the test matrix
    s3cur3 authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    219e76d View commit details
    Browse the repository at this point in the history
  3. Bump ex_doc from 0.29.4 to 0.30.6 (#185)

    Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.29.4 to 0.30.6.
    - [Changelog](https://github.com/elixir-lang/ex_doc/blob/main/CHANGELOG.md)
    - [Commits](elixir-lang/ex_doc@v0.29.4...v0.30.6)
    
    ---
    updated-dependencies:
    - dependency-name: ex_doc
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    5a27f21 View commit details
    Browse the repository at this point in the history
  4. Update README.md (#177)

    typo fix
    ghecho authored Sep 14, 2023
  5. Support for Empty Point (#172)

    * Support for Empty Point
    
    Adds support for (E)WKB and GeoJSON conversion for Empty Point.
    
    An Empty Point in
      - in WKB is represented as `Point(NaN NaN)`.
      - in GeoJson is represented as `{"type" => "Point", "coordinates" => []}`
    
    This PR implements an Empty Point in Geo as `%Geo.Point{coordinates: nil}`
    
    * Make empty point happy with WKB
    bolek authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    78ac946 View commit details
    Browse the repository at this point in the history
  6. Bump jason from 1.4.0 to 1.4.1 (#183)

    Bumps [jason](https://github.com/michalmuskala/jason) from 1.4.0 to 1.4.1.
    - [Release notes](https://github.com/michalmuskala/jason/releases)
    - [Changelog](https://github.com/michalmuskala/jason/blob/master/CHANGELOG.md)
    - [Commits](michalmuskala/jason@v1.4.0...v1.4.1)
    
    ---
    updated-dependencies:
    - dependency-name: jason
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    d86acd7 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2023

  1. Bump stream_data from 0.5.0 to 0.6.0 (#184)

    Bumps [stream_data](https://github.com/whatyouhide/stream_data) from 0.5.0 to 0.6.0.
    - [Changelog](https://github.com/whatyouhide/stream_data/blob/main/CHANGELOG.md)
    - [Commits](whatyouhide/stream_data@v0.5.0...v0.6.0)
    
    ---
    updated-dependencies:
    - dependency-name: stream_data
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 18, 2023
    Configuration menu
    Copy the full SHA
    90ebeb5 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2023

  1. Run CI on merge to master (#187)

    * Run CI on merge to master
    
    I had copied these templates from a project where the main branch was named `main`. For the time being, I've just updated the name here to match the project's main branch name of `master`. (Longer term, we should look into what might break in people's workflows if we moved to `main`.)
    
    * Retry on CI failures so we don't refuse to merge due to WKT instability
    s3cur3 authored Sep 19, 2023
    Configuration menu
    Copy the full SHA
    726667a View commit details
    Browse the repository at this point in the history
  2. Fix compile warnings (#186)

    This was breaking the build because we were unintentionally duplicating these function clauses (see the `for {endian, endian_atom, modifier} . . .` stuff).
    s3cur3 authored Sep 19, 2023
    Configuration menu
    Copy the full SHA
    d56d8a4 View commit details
    Browse the repository at this point in the history
  3. Decode MultiLineStringZ (#179)

    * Decode MultiLineStringZ
    
    * Update json_test.exs
    
    * Run mix format
    
    ---------
    
    Co-authored-by: Tyler A. Young <tyler@tylerayoung.com>
    caspg and s3cur3 authored Sep 19, 2023
    Configuration menu
    Copy the full SHA
    c85ebc0 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2023

  1. Support for LineStringZM (#171)

    * Document where to find WKB magic numbers
    
    * Add support for LineStringZM
    
    * comply with geojson spec
    
    * Make tests match desired behavior, and run mix format
    
    ---------
    
    Co-authored-by: Tyler A. Young <tyler@tylerayoung.com>
    kanatohodets and s3cur3 authored Oct 9, 2023
    Configuration menu
    Copy the full SHA
    f989295 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2023

  1. Bump ex_doc from 0.30.6 to 0.30.7 (#190)

    Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.30.6 to 0.30.7.
    - [Changelog](https://github.com/elixir-lang/ex_doc/blob/main/CHANGELOG.md)
    - [Commits](elixir-lang/ex_doc@v0.30.6...v0.30.7)
    
    ---
    updated-dependencies:
    - dependency-name: ex_doc
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 16, 2023
    Configuration menu
    Copy the full SHA
    febe6a1 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2023

  1. Bump ex_doc from 0.30.7 to 0.30.8 (#191)

    Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.30.7 to 0.30.8.
    - [Changelog](https://github.com/elixir-lang/ex_doc/blob/main/CHANGELOG.md)
    - [Commits](elixir-lang/ex_doc@v0.30.7...v0.30.8)
    
    ---
    updated-dependencies:
    - dependency-name: ex_doc
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 17, 2023
    Configuration menu
    Copy the full SHA
    9ca8177 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Prepare to release v3.6.0 (#189)

    * Prepare to release v3.6.0
    
    * Add release date
    s3cur3 authored Oct 19, 2023
    Configuration menu
    Copy the full SHA
    e44d48b View commit details
    Browse the repository at this point in the history
Loading
0