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

Changesets: Versioning & Publication #95

Merged
merged 1 commit into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 0 additions & 5 deletions .changeset/twelve-starfishes-thank.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# codemirror-json-schema

## 0.7.2

### Patch Changes

- [#94](https://github.com/acao/codemirror-json-schema/pull/94) [`0dc3749`](https://github.com/acao/codemirror-json-schema/commit/0dc37498d7276becceb48d92dc367648f4676415) Thanks [@xdavidwu](https://github.com/xdavidwu)! - Add support for YAML flow sequences and flow mappings

## 0.7.1

### Patch Changes
Expand Down
42 changes: 21 additions & 21 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Full featured cm6 extension for json, including `@codemirror/lang-json`

#### Defined in

[bundled.ts:15](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/bundled.ts#L15)
[bundled.ts:15](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/bundled.ts#L15)

## Codemirror Extensions

Expand Down Expand Up @@ -101,7 +101,7 @@ provides a JSON schema enabled autocomplete extension for codemirror

#### Defined in

[json-completion.ts:936](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/json-completion.ts#L936)
[json-completion.ts:936](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/json-completion.ts#L936)

___

Expand Down Expand Up @@ -137,7 +137,7 @@ provides a JSON schema enabled tooltip extension for codemirror

#### Defined in

[json-hover.ts:45](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/json-hover.ts#L45)
[json-hover.ts:45](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/json-hover.ts#L45)

___

Expand Down Expand Up @@ -171,7 +171,7 @@ Helper for simpler class instantiaton

#### Defined in

[json-validation.ts:58](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/json-validation.ts#L58)
[json-validation.ts:58](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/json-validation.ts#L58)

## Utilities

Expand All @@ -194,7 +194,7 @@ retrieve a Map of all the json pointers in a document

#### Defined in

[utils/jsonPointers.ts:85](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/utils/jsonPointers.ts#L85)
[utils/jsonPointers.ts:85](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/utils/jsonPointers.ts#L85)

___

Expand All @@ -219,7 +219,7 @@ retrieve a JSON pointer for a given position in the editor

#### Defined in

[utils/jsonPointers.ts:68](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/utils/jsonPointers.ts#L68)
[utils/jsonPointers.ts:68](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/utils/jsonPointers.ts#L68)

___

Expand All @@ -246,7 +246,7 @@ Mimics the behavior of `json-source-map`'s `parseJSONDocument` function using co

#### Defined in

[utils/parseJSONDocument.ts:24](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/utils/parseJSONDocument.ts#L24)
[utils/parseJSONDocument.ts:24](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/utils/parseJSONDocument.ts#L24)

___

Expand All @@ -273,7 +273,7 @@ Return parsed data and json pointers for a given codemirror EditorState

#### Defined in

[utils/parseJSONDocument.ts:10](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/utils/parseJSONDocument.ts#L10)
[utils/parseJSONDocument.ts:10](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/utils/parseJSONDocument.ts#L10)

## Functions

Expand All @@ -293,7 +293,7 @@ Return parsed data and json pointers for a given codemirror EditorState

#### Defined in

[state.ts:25](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/state.ts#L25)
[state.ts:25](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/state.ts#L25)

___

Expand All @@ -315,7 +315,7 @@ ___

#### Defined in

[utils/jsonPointers.ts:31](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/utils/jsonPointers.ts#L31)
[utils/jsonPointers.ts:31](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/utils/jsonPointers.ts#L31)

___

Expand All @@ -335,7 +335,7 @@ ___

#### Defined in

[json-validation.ts:48](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/json-validation.ts#L48)
[json-validation.ts:48](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/json-validation.ts#L48)

___

Expand All @@ -356,7 +356,7 @@ ___

#### Defined in

[utils/jsonPointers.ts:18](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/utils/jsonPointers.ts#L18)
[utils/jsonPointers.ts:18](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/utils/jsonPointers.ts#L18)

___

Expand All @@ -376,7 +376,7 @@ ___

#### Defined in

[state.ts:29](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/state.ts#L29)
[state.ts:29](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/state.ts#L29)

___

Expand All @@ -397,7 +397,7 @@ ___

#### Defined in

[state.ts:19](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/state.ts#L19)
[state.ts:19](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/state.ts#L19)

## Type Aliases

Expand All @@ -414,7 +414,7 @@ ___

#### Defined in

[json-hover.ts:18](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/json-hover.ts#L18)
[json-hover.ts:18](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/json-hover.ts#L18)

___

Expand All @@ -424,7 +424,7 @@ ___

#### Defined in

[json-hover.ts:20](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/json-hover.ts#L20)
[json-hover.ts:20](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/json-hover.ts#L20)

___

Expand All @@ -443,7 +443,7 @@ ___

#### Defined in

[json-hover.ts:24](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/json-hover.ts#L24)
[json-hover.ts:24](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/json-hover.ts#L24)

___

Expand All @@ -460,7 +460,7 @@ ___

#### Defined in

[types.ts:6](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/types.ts#L6)
[types.ts:6](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/types.ts#L6)

___

Expand All @@ -479,7 +479,7 @@ ___

#### Defined in

[types.ts:11](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/types.ts#L11)
[types.ts:11](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/types.ts#L11)

___

Expand All @@ -489,7 +489,7 @@ ___

#### Defined in

[types.ts:20](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/types.ts#L20)
[types.ts:20](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/types.ts#L20)

## Variables

Expand All @@ -499,4 +499,4 @@ ___

#### Defined in

[state.ts:6](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/state.ts#L6)
[state.ts:6](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/state.ts#L6)
6 changes: 3 additions & 3 deletions docs/interfaces/JSONValidationOptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Return parsed data and json pointers for a given codemirror EditorState

#### Defined in

[json-validation.ts:43](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/json-validation.ts#L43)
[json-validation.ts:43](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/json-validation.ts#L43)

## Properties

Expand All @@ -66,7 +66,7 @@ Return parsed data and json pointers for a given codemirror EditorState

#### Defined in

[json-validation.ts:42](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/json-validation.ts#L42)
[json-validation.ts:42](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/json-validation.ts#L42)

---

Expand All @@ -76,4 +76,4 @@ Return parsed data and json pointers for a given codemirror EditorState

#### Defined in

[json-validation.ts:41](https://github.com/acao/codemirror-json-schema/blob/8b311fe/src/json-validation.ts#L41)
[json-validation.ts:41](https://github.com/acao/codemirror-json-schema/blob/0dc3749/src/json-validation.ts#L41)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codemirror-json-schema",
"license": "MIT",
"version": "0.7.1",
"version": "0.7.2",
"description": "Codemirror 6 extensions that provide full JSONSchema support for `@codemirror/lang-json` and `codemirror-json5`",
"contributors": [
{
Expand Down