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

Update from template #6

Merged
merged 26 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
d52ba2d
Initial commit
m-mohr Mar 2, 2021
4a97ad1
Add template
m-mohr Mar 2, 2021
34f3174
Validate fields in item assets, item assets defintion and collection …
m-mohr Mar 2, 2021
b6739b5
Add empty changelog (#1)
jisantuc Mar 2, 2021
6d3ba9a
Add template prefix, make schema more strict (https://github.com/radi…
m-mohr Mar 2, 2021
6f7e8a7
Clarify/Fix JSON Schema
m-mohr Mar 3, 2021
1ad51ba
add .remarkignore file to ignore CHANGELOG in markdown checks
matthewhanson Mar 24, 2021
ff150b0
Add testing instructions and contributing links (#2)
jisantuc Mar 30, 2021
699c8a8
Fixed CI issues, made test chapter a bit more comprehensive
m-mohr Mar 30, 2021
b4ce5e0
Clarify schema
m-mohr Mar 30, 2021
dd675fa
Updating files from template
constantinius Mar 31, 2021
8d2ff8d
Deleting remarkignore
constantinius Mar 31, 2021
ce23671
Fixing remark linting
constantinius Mar 31, 2021
c0f506b
Improve schema to better validate assets, item assets, summaries. Don…
m-mohr Jul 26, 2021
4b774f8
chore: Fix whitespace (#19)
l0b0 Nov 27, 2021
64afb5b
chore: Ignore Editor configurations (#15)
l0b0 Nov 29, 2021
ed66517
Update Node version in CI tests
m-mohr Dec 11, 2021
7dfc84f
Update version number in examples to 1.0.0
m-mohr Feb 8, 2022
019f348
Spelling correction (#22)
tschaub Aug 1, 2022
12f9873
Clearly state where the fields can be used #21 (#23)
m-mohr Aug 31, 2022
82c71bf
update github ci and npm package versions (#26)
Oct 2, 2023
605ace2
Merge branch 'main' into update-from-template
constantinius Aug 23, 2024
dc43faa
Merge remote-tracking branch 'template/main' into update-from-template
constantinius Aug 23, 2024
73a530f
Fixing markdown lint issues
constantinius Aug 23, 2024
78004cd
Update version numbers
m-mohr Aug 23, 2024
1a45407
Update schema
m-mohr Aug 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/pull_request_template.md

This file was deleted.

6 changes: 4 additions & 2 deletions .github/remark.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
plugins:
# GitHub Flavored Markdown
- remark-gfm
# Check links
- validate-links
# Apply some recommended defaults for consistency
Expand All @@ -8,6 +10,7 @@ plugins:
# General formatting
- - remark-lint-emphasis-marker
- '*'
- remark-lint-no-undefined-references
- remark-lint-hard-break-spaces
- remark-lint-blockquote-indentation
- remark-lint-no-consecutive-blank-lines
Expand All @@ -21,7 +24,6 @@ plugins:
- 'fenced'
# Headings
- remark-lint-heading-increment
- remark-lint-no-duplicate-headings
- remark-lint-no-multiple-toplevel-headings
- remark-lint-no-heading-punctuation
- - remark-lint-maximum-heading-length
Expand All @@ -38,7 +40,7 @@ plugins:
- - remark-lint-unordered-list-marker-style
- '-'
- - remark-lint-list-item-indent
- space
- space
# Tables
- remark-lint-table-pipes
- remark-lint-no-literal-urls
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Inject env variables
uses: rlespinasse/github-slug-action@v3.x
- uses: actions/checkout@v2
uses: rlespinasse/github-slug-action@v4.4.1
- uses: actions/checkout@v4
- name: deploy JSON Schema for version ${{ env.GITHUB_REF_SLUG }}
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v3.9.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: json-schema
destination_dir: ${{ env.GITHUB_REF_SLUG }}
destination_dir: ${{ env.GITHUB_REF_SLUG }}
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: |
npm install
npm test
14 changes: 12 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
/package-lock.json
/node_modules
# OS files
.DS_Store
Thumbs.db

# Editors
/.idea/
/.vscode/

# Node / npm
.npm
/node_modules/
package-lock.json
1 change: 0 additions & 1 deletion .remarkignore

This file was deleted.

13 changes: 6 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [v1.0.0]

### Added

- Added descrption of extension in the Readme
- Initial json-schema for tiled-assets
- Examples for tiled assed and assets with dimensions

### Changed

### Deprecated
Expand All @@ -16,9 +20,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

[Unreleased]: <https://github.com/stac-extensions/template/compare/v1.0.0...HEAD>

## [v1.0.0-beta.1] - 2020-05-29
Copy link
Contributor

Choose a reason for hiding this comment

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

You either need to use v1.0.0 or change the URLs pointing to v1.0.0 in the README and potentially other places.


### Added
- [Tiled Assets extension](extensions/tiled-assets/README.md), for representing data that has been split into tiles
[v1.0.0]: <https://github.com/stac-extensions/tiled-assets/compare/v1.0.0...HEAD>
145 changes: 88 additions & 57 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/example-tiled-assets-dimension.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.1",
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/tiled-assets/v1.0.0/schema.json",
"https://stac-extensions.github.io/eo/v1.0.0/schema.json"
Expand Down
2 changes: 1 addition & 1 deletion examples/example-tiled-assets-tiled.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.1",
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/tiled-assets/v1.0.0/schema.json",
"https://stac-extensions.github.io/eo/v1.0.0/schema.json"
Expand Down
Loading
Loading