Skip to content

Commit

Permalink
Merge pull request #43 from rok4/develop
Browse files Browse the repository at this point in the history
Release 6.1.0
  • Loading branch information
Dolite authored Oct 1, 2024
2 parents e463583 + 0941a43 commit 6ae3bae
Show file tree
Hide file tree
Showing 24 changed files with 1,421 additions and 311 deletions.
28 changes: 20 additions & 8 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,31 @@
ci-cd:
- .github/**/*
- changed-files:
- any-glob-to-any-file:
- .github/**

dependencies:
- cmake/**/*
- changed-files:
- any-glob-to-any-file:
- cmake/**

documentation:
- docs/**/*
- changed-files:
- any-glob-to-any-file:
- docs/**

enhancement:
- src/**/*
- changed-files:
- any-glob-to-any-file:
- src/**

quality:
- tests/**/*
- changed-files:
- any-glob-to-any-file:
- tests/**

tooling:
- CMakeLists.txt
- config.h.in
- '**/CMakeLists.txt'
- changed-files:
- any-glob-to-any-file:
- CMakeLists.txt
- config.h.in
- '**/CMakeLists.txt'
13 changes: 5 additions & 8 deletions .github/workflows/pr-auto-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@ name: "🏷 PR Labeler"
on:
- pull_request

permissions:
contents: read
pull-requests: write

jobs:
triage:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/labeler@v5
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
## 6.0.0
## 6.1.0

### [Added]

* OGC API Tiles :
* ajout des routes de découvertes pour connaître les éventuels styles, TMS et tuiles limites pour les couches
* ajout des routes de lecture des TMS
* ajout d'une route de découverte de ce service
* ajout de la route de conformité aux classes

### [Changed]

* Les CRS et TMS additionnels dans le descripteur de couche sont à la racine pour pouvoir être exploités dans plusieurs services

## 6.0.1

### [Added]

Expand Down
24 changes: 12 additions & 12 deletions config/layer.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,6 @@
"properties": {
"enabled": {
"type": "boolean"
},
"crs": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
Expand All @@ -205,12 +199,6 @@
"properties": {
"enabled": {
"type": "boolean"
},
"tms": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
Expand All @@ -229,6 +217,18 @@
"type": "boolean"
}
}
},
"extra_crs": {
"type": "array",
"items": {
"type": "string"
}
},
"extra_tilematrixsets": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
Expand Down
3 changes: 2 additions & 1 deletion config/services.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
"abstract": "Ce service permet la visulation de couches de données raster IGN au travers d'un flux OGC API Tiles",
"keywords": [
"OGC API Tiles"
]
],
"reprojection": true
}
}
5 changes: 5 additions & 0 deletions config/services.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,11 @@
"metadata": {
"$ref": "#/$defs/metadata",
"description": "OGC API Tiles service's metadata"
},
"reprojection": {
"type": "boolean",
"default": false,
"description": "OGC API Tiles reprojection activation"
}
}
}
Expand Down
Loading

0 comments on commit 6ae3bae

Please sign in to comment.