Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update go dependencies #555

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

chore: update go dependencies #555

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 4, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
cloud.google.com/go/profiler v0.3.0 -> v0.4.1 age adoption passing confidence require minor
cloud.google.com/go/storage v1.36.0 -> v1.43.0 age adoption passing confidence require minor
github.com/99designs/gqlgen v0.17.43 -> v0.17.49 age adoption passing confidence require patch
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.21.0 -> v1.24.1 age adoption passing confidence require minor
github.com/avast/retry-go/v4 v4.0.4 -> v4.6.0 age adoption passing confidence require minor
github.com/aws/aws-sdk-go-v2 v1.25.3 -> v1.30.4 age adoption passing confidence require minor
github.com/aws/aws-sdk-go-v2/config v1.27.7 -> v1.27.31 age adoption passing confidence require patch
github.com/aws/aws-sdk-go-v2/service/s3 v1.52.0 -> v1.60.1 age adoption passing confidence require minor
github.com/gavv/httpexpect/v2 v2.3.1 -> v2.16.0 age adoption passing confidence require minor
github.com/goccy/go-yaml v1.11.3 -> v1.12.0 age adoption passing confidence require minor
github.com/joho/godotenv v1.4.0 -> v1.5.1 age adoption passing confidence require minor
github.com/labstack/echo/v4 v4.11.4 -> v4.12.0 age adoption passing confidence require minor
github.com/paulmach/go.geojson v1.4.0 -> v1.5.0 age adoption passing confidence require minor
github.com/ravilushqa/otelgqlgen v0.15.0 -> v0.16.0 age adoption passing confidence require minor
github.com/samber/lo v1.39.0 -> v1.47.0 age adoption passing confidence require minor
github.com/stretchr/testify v1.8.4 -> v1.9.0 age adoption passing confidence require minor
github.com/twpayne/go-kml v1.5.2 -> v3.1.1 age adoption passing confidence require major
github.com/vektah/gqlparser/v2 v2.5.11 -> v2.5.16 age adoption passing confidence require patch
github.com/zitadel/oidc v1.13.5 -> v3.28.2 age adoption passing confidence require major
go (source) 1.21.0 -> 1.23.0 age adoption passing confidence toolchain minor
go (source) 1.21 -> 1.23.0 age adoption passing confidence golang minor
go.mongodb.org/mongo-driver v1.13.1 -> v1.16.1 age adoption passing confidence require minor
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.32.0 -> v0.54.0 age adoption passing confidence require minor
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.32.0 -> v0.54.0 age adoption passing confidence require minor
go.opentelemetry.io/otel v1.22.0 -> v1.29.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/sdk v1.22.0 -> v1.29.0 age adoption passing confidence require minor
golang.org/x/net v0.20.0 -> v0.28.0 age adoption passing confidence require minor
golang.org/x/oauth2 v0.16.0 -> v0.22.0 age adoption passing confidence require minor
golang.org/x/text v0.14.0 -> v0.17.0 age adoption passing confidence require minor
golang.org/x/tools v0.17.0 -> v0.24.0 age adoption passing confidence require minor
google.golang.org/api v0.161.0 -> v0.194.0 age adoption passing confidence require minor

Release Notes

googleapis/google-cloud-go (cloud.google.com/go/profiler)

v0.4.0

  • bigquery:
    -NewGCSReference is now a function, not a method on Client.

    • Table.LoaderFrom now accepts a ReaderSource, enabling
      loading data into a table from a file or any io.Reader.
    • Client.Table and Client.OpenTable have been removed.
      Replace

      client.OpenTable("project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table")
    • Client.CreateTable has been removed.
      Replace

      client.CreateTable(ctx, "project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table").Create(ctx)
    • Dataset.ListTables have been replaced with Dataset.Tables.
      Replace

      tables, err := ds.ListTables(ctx)

      with

      it := ds.Tables(ctx)
      for {
          table, err := it.Next()
          if err == iterator.Done {
              break
          }
          if err != nil {
              // TODO: Handle error.
          }
          // TODO: use table.
      }
    • Client.Read has been replaced with Job.Read, Table.Read and Query.Read.
      Replace

      it, err := client.Read(ctx, job)

      with

      it, err := job.Read(ctx)

      and similarly for reading from tables or queries.

    • The iterator returned from the Read methods is now named RowIterator. Its
      behavior is closer to the other iterators in these libraries. It no longer
      supports the Schema method; see the next item.
      Replace

      for it.Next(ctx) {
          var vals ValueList
          if err := it.Get(&vals); err != nil {
              // TODO: Handle error.
          }
          // TODO: use vals.
      }
      if err := it.Err(); err != nil {
          // TODO: Handle error.
      }

      with
      for {
      var vals ValueList
      err := it.Next(&vals)
      if err == iterator.Done {
      break
      }
      if err != nil {
      // TODO: Handle error.
      }
      // TODO: use vals.
      }
      Instead of the RecordsPerRequest(n) option, write

      it.PageInfo().MaxSize = n

      Instead of the StartIndex(i) option, write

      it.StartIndex = i
    • ValueLoader.Load now takes a Schema in addition to a slice of Values.
      Replace

      func (vl *myValueLoader) Load(v []bigquery.Value)

      with

      func (vl *myValueLoader) Load(v []bigquery.Value, s bigquery.Schema)
    • Table.Patch is replace by Table.Update.
      Replace

      p := table.Patch()
      p.Description("new description")
      metadata, err := p.Apply(ctx)

      with

      metadata, err := table.Update(ctx, bigquery.TableMetadataToUpdate{
          Description: "new description",
      })
    • Client.Copy is replaced by separate methods for each of its four functions.
      All options have been replaced by struct fields.

      • To load data from Google Cloud Storage into a table, use Table.LoaderFrom.

        Replace

        client.Copy(ctx, table, gcsRef)

        with

        table.LoaderFrom(gcsRef).Run(ctx)

        Instead of passing options to Copy, set fields on the Loader:

        loader := table.LoaderFrom(gcsRef)
        loader.WriteDisposition = bigquery.WriteTruncate
      • To extract data from a table into Google Cloud Storage, use
        Table.ExtractorTo. Set fields on the returned Extractor instead of
        passing options.

        Replace

        client.Copy(ctx, gcsRef, table)

        with

        table.ExtractorTo(gcsRef).Run(ctx)
      • To copy data into a table from one or more other tables, use
        Table.CopierFrom. Set fields on the returned Copier instead of passing options.

        Replace

        client.Copy(ctx, dstTable, srcTable)

        with

        dst.Table.CopierFrom(srcTable).Run(ctx)
      • To start a query job, create a Query and call its Run method. Set fields
        on the query instead of passing options.

        Replace

        client.Copy(ctx, table, query)

        with

        query.Run(ctx)
    • Table.NewUploader has been renamed to Table.Uploader. Instead of options,
      configure an Uploader by setting its fields.
      Replace

      u := table.NewUploader(bigquery.UploadIgnoreUnknownValues())

      with

      u := table.NewUploader(bigquery.UploadIgnoreUnknownValues())
      u.IgnoreUnknownValues = true
  • pubsub: remove pubsub.Done. Use iterator.Done instead, where iterator is the package
    google.golang.org/api/iterator.

99designs/gqlgen (github.com/99designs/gqlgen)

v0.17.49

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.48...v0.17.49

v0.17.48

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.47...v0.17.48

v0.17.47

Compare Source

What's Changed

Full Changelog: 99designs/gqlgen@v0.17.46...v0.17.47

v0.17.46

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.45...v0.17.46

v0.17.45

Compare Source

a854eb65 Bump golang.org/x/tools from 0.18.0 to 0.19.0 (#​2963)
  • Bump golang.org/x/tools from 0.18.0 to 0.19.0

Bumps golang.org/x/tools from 0.18.0 to 0.19.0.


updated-dependencies:

  • dependency-name: golang.org/x/tools
    dependency-type: direct:production
    update-type: version-update:semver-minor
    ...
  • Go mod tidy examples and websocket

908498e3 Bump typescript from 5.3.3 to 5.4.2 in /i

@renovate renovate bot requested a review from rot1024 as a code owner July 4, 2023 00:56
@netlify
Copy link

netlify bot commented Jul 4, 2023

Deploy Preview for reearth-web ready!

Name Link
🔨 Latest commit c78853d
🔍 Latest deploy log https://app.netlify.com/sites/reearth-web/deploys/66cce18729c9a20008baa2b0
😎 Deploy Preview https://deploy-preview-555--reearth-web.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@github-actions github-actions bot added the server label Jul 4, 2023
@renovate renovate bot force-pushed the renovate/gomod branch 20 times, most recently from d441bd8 to 1d0a051 Compare July 10, 2023 12:31
@renovate renovate bot force-pushed the renovate/gomod branch 7 times, most recently from 7212b26 to f5fb762 Compare July 12, 2023 00:41
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between f5d120c and 2bd0f26.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (4)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
  • server/pkg/layer/encoding/kml_test.go

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 2bd0f26 and 2338b2c.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (4)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
  • server/pkg/layer/encoding/kml_test.go

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 2338b2c and 9ccdb3b.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (3)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
Additional comments not posted (2)
server/pkg/layer/encoding/kml_test.go (2)

Line range hint 13-94:
LGTM! Ensure tests pass with go-kml/v3.

The test logic for TestKMLEncoder_Encode remains unchanged and looks good. Ensure that all tests pass with the new version of the go-kml library.


11-11: Verify compatibility with go-kml/v3.

The import statement has been updated to use go-kml/v3. Ensure that there are no breaking changes or deprecated features affecting the current test cases.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 9ccdb3b and cfacdf7.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (2)
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
Additional comments not posted (5)
server/pkg/layer/encoding/kml_test.go (1)

11-11: Verify compatibility with go-kml/v3.

The import path has been updated to github.com/twpayne/go-kml/v3. Ensure that the changes in the new major version are compatible with the existing code and that any breaking changes have been addressed.

server/go.mod (4)

4-5: Verify updates for Google Cloud dependencies.

The cloud.google.com/go/profiler and cloud.google.com/go/storage packages have been updated. Ensure that these updates are compatible with the current implementation and that any breaking changes have been addressed.


187-187: Update Go version to 1.23.0.

The Go version has been updated. Ensure that the codebase is compatible with any new language features or changes introduced in Go 1.23.0.


6-7: Verify updates for GraphQL and AWS SDK dependencies.

The github.com/99designs/gqlgen and github.com/aws/aws-sdk-go-v2 packages have been updated. Ensure compatibility with the new versions and address any breaking changes.


35-36: Verify updates for MongoDB and OpenTelemetry dependencies.

The go.mongodb.org/mongo-driver and go.opentelemetry.io packages have been updated. Ensure compatibility with the new versions and address any breaking changes.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between cfacdf7 and 3922b9b.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (3)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml_test.go
Additional comments not posted (1)
server/pkg/layer/encoding/kml.go (1)

9-9: LGTM! But verify the impact of the library update.

The import path has been updated to github.com/twpayne/go-kml/v3, indicating a major version upgrade. Ensure that the new version does not introduce breaking changes or require adjustments in the code.

To verify, check the release notes or changelog of the library for any breaking changes or new features that might affect the current implementation.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 3922b9b and 6c59917.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (4)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
  • server/pkg/layer/encoding/kml_test.go

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 6c59917 and f3be05f.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (4)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
  • server/pkg/layer/encoding/kml_test.go

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between f3be05f and e61c9cd.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (3)
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
  • server/pkg/layer/encoding/kml_test.go
Additional comments not posted (10)
server/go.mod (10)

4-4: Verify release notes for cloud.google.com/go/profiler.

The dependency has been updated from v0.3.0 to v0.4.1. Ensure there are no breaking changes by reviewing the release notes.


5-5: Verify release notes for cloud.google.com/go/storage.

The dependency has been updated from v1.36.0 to v1.43.0. Ensure there are no breaking changes by reviewing the release notes.


6-6: Verify release notes for github.com/99designs/gqlgen.

The dependency has been updated from v0.17.43 to v0.17.49. Ensure there are no breaking changes by reviewing the release notes.


35-35: Verify release notes for go.mongodb.org/mongo-driver.

The dependency has been updated from v1.13.1 to v1.16.1. Ensure there are no breaking changes by reviewing the release notes.


8-10: Verify release notes for github.com/aws/aws-sdk-go-v2 and sub-packages.

The dependencies have been updated. Ensure there are no breaking changes by reviewing the release notes for each sub-package.


34-34: Verify release notes for github.com/zitadel/oidc.

The dependency has been updated to v1.13.5. Ensure there are no breaking changes by reviewing the release notes.


38-39: Verify release notes for go.opentelemetry.io/otel.

The dependency has been updated to v1.28.0. Ensure there are no breaking changes by reviewing the release notes.


41-41: Verify release notes for golang.org/x/net.

The dependency has been updated to v0.28.0. Ensure there are no breaking changes by reviewing the release notes.


45-45: Verify release notes for google.golang.org/api.

The dependency has been updated to v0.193.0. Ensure there are no breaking changes by reviewing the release notes.


187-187: Verify Go version update to 1.23.0.

The Go version has been updated from 1.21 to 1.23.0. Review the release notes for any new features or breaking changes.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between e61c9cd and 9145af4.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (3)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
Additional comments not posted (1)
server/pkg/layer/encoding/kml_test.go (1)

11-11: Verify compatibility with go-kml/v3.

The import statement has been updated to use go-kml/v3. Ensure that the new version is compatible with the existing code and that any breaking changes have been addressed.

Run the following script to check for breaking changes or updates in the go-kml/v3 library:

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 9145af4 and 8e95f5e.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review due to trivial changes (1)
  • server/pkg/layer/encoding/kml_test.go
Files skipped from review as they are similar to previous changes (3)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 8e95f5e and c79da5b.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review due to trivial changes (1)
  • server/pkg/layer/encoding/kml_test.go
Files skipped from review as they are similar to previous changes (3)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between c79da5b and 36767c1.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (4)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
  • server/pkg/layer/encoding/kml_test.go

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 36767c1 and 3c8fe54.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (4)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
  • server/pkg/layer/encoding/kml_test.go

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 3c8fe54 and 9c8b569.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (4)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
  • server/pkg/layer/encoding/kml_test.go

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 9c8b569 and c78853d.

Files ignored due to path filters (1)
  • server/go.sum is excluded by !**/*.sum
Files selected for processing (4)
  • server/go.mod (1 hunks)
  • server/internal/app/auth_server.go (1 hunks)
  • server/pkg/layer/encoding/kml.go (1 hunks)
  • server/pkg/layer/encoding/kml_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (4)
  • server/go.mod
  • server/internal/app/auth_server.go
  • server/pkg/layer/encoding/kml.go
  • server/pkg/layer/encoding/kml_test.go

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants