Skip to content

Commit fa8586e

Browse files
committed
defect: Corrected import paths in .proto files
1 parent 12ef31a commit fa8586e

36 files changed

Lines changed: 4587 additions & 18 deletions

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,18 @@ Date format: `YYYY-MM-DD`
1717
### Fixed
1818
### Security
1919

20+
---
21+
22+
## [1.57.1] - 2025-12-29
23+
24+
### Added
25+
### Changed
26+
- **defect:** Corrected import paths in `.proto` files.
27+
28+
### Deprecated
29+
### Removed
30+
### Fixed
31+
### Security
2032

2133
---
2234

@@ -449,7 +461,8 @@ Date format: `YYYY-MM-DD`
449461
### Fixed
450462
### Security
451463

452-
[Unreleased]: https://github.com/sixafter/types/compare/v1.57.0...HEAD
464+
[Unreleased]: https://github.com/sixafter/types/compare/v1.57.1...HEAD
465+
[1.57.1]: https://github.com/sixafter/types/compare/v1.57.0...v1.57.1
453466
[1.57.0]: https://github.com/sixafter/types/compare/v1.56.0...v1.57.0
454467
[1.56.0]: https://github.com/sixafter/types/compare/v1.55.0...v1.56.0
455468
[1.55.0]: https://github.com/sixafter/types/compare/v1.54.0...v1.55.0

buf.gen.docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ managed:
3838
enabled: false
3939

4040
# Only generate code for your service’s protos
41-
inputs:
42-
- directory: proto/v1
41+
#inputs:
42+
# - directory: proto/v1
4343

4444
plugins:
4545
# Docs (HTML)

buf.gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ managed:
3838
enabled: false
3939

4040
# Only generate code for your service's protos
41-
inputs:
42-
- directory: proto/v1
41+
#inputs:
42+
# - directory: proto/v1
4343

4444
plugins:
4545
# Go models + gRPC

buf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ version: v2
1717

1818
# Define the module for this proto package
1919
modules:
20-
- path: proto/v1
20+
- path: .
2121
lint:
2222
use: [STANDARD]
2323
except:

proto/v1/country_subdivision.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ syntax = "proto3";
1919

2020
package proto.v1;
2121

22-
import "country.proto";
22+
import "proto/v1/country.proto";
2323

2424
option cc_enable_arenas = true;
2525
option csharp_namespace = "SixAfter.Types.V1.WellKnownTypes";

proto/v1/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
// limitations under the License.
1717

1818
// Package v1 provides the version 1 protocol buffer definitions.
19-
package v1
19+
package v1

proto/v1/entity_metadata.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ package proto.v1;
2121

2222
import "google/protobuf/struct.proto";
2323
import "google/protobuf/timestamp.proto";
24-
import "version.proto";
24+
import "proto/v1/version.proto";
2525

2626
option cc_enable_arenas = true;
2727
option csharp_namespace = "SixAfter.Types.V1.WellKnownTypes";

proto/v1/geofence.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ syntax = "proto3";
1919

2020
package proto.v1;
2121

22-
import "map_polygon.proto";
22+
import "proto/v1/map_polygon.proto";
2323

2424
option cc_enable_arenas = true;
2525
option csharp_namespace = "SixAfter.Types.V1.WellKnownTypes";

proto/v1/geospatial_coordinate.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ syntax = "proto3";
1919

2020
package proto.v1;
2121

22-
import "geospatial_elevation.proto";
22+
import "proto/v1/geospatial_elevation.proto";
2323

2424
option cc_enable_arenas = true;
2525
option csharp_namespace = "SixAfter.Types.V1.WellKnownTypes";

proto/v1/geospatial_location.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ syntax = "proto3";
1919

2020
package proto.v1;
2121

22-
import "compass_heading.proto";
23-
import "geospatial_coordinate.proto";
22+
import "proto/v1/compass_heading.proto";
23+
import "proto/v1/geospatial_coordinate.proto";
2424
import "google/protobuf/timestamp.proto";
2525

2626
option cc_enable_arenas = true;

0 commit comments

Comments
 (0)