Skip to content

Commit 622ae6c

Browse files
Version Packages (#124)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## [email protected] ### Patch Changes - [#122](#122) [`c2dfcc1`](c2dfcc1) Thanks [@imolorhe](https://github.com/imolorhe)! - fix demo highlighting - [#123](#123) [`2356a94`](2356a94) Thanks [@imolorhe](https://github.com/imolorhe)! - updated json-schema-library to get upstream fixes Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 2356a94 commit 622ae6c

10 files changed

+76
-78
lines changed

.changeset/funny-ligers-call.md

-5
This file was deleted.

.changeset/green-dogs-sniff.md

-5
This file was deleted.

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# codemirror-json-schema
22

3+
## 0.7.8
4+
5+
### Patch Changes
6+
7+
- [#122](https://github.com/jsonnext/codemirror-json-schema/pull/122) [`c2dfcc1`](https://github.com/jsonnext/codemirror-json-schema/commit/c2dfcc154abfc0dea0d3c0646a8b681565acf0f3) Thanks [@imolorhe](https://github.com/imolorhe)! - fix demo highlighting
8+
9+
- [#123](https://github.com/jsonnext/codemirror-json-schema/pull/123) [`2356a94`](https://github.com/jsonnext/codemirror-json-schema/commit/2356a94de080c00869a8b1b41763dbc577530894) Thanks [@imolorhe](https://github.com/imolorhe)! - updated json-schema-library to get upstream fixes
10+
311
## 0.7.7
412

513
### Patch Changes

docs/README.md

+21-21
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Full featured cm6 extension for json, including `@codemirror/lang-json`
7474

7575
#### Defined in
7676

77-
[json/bundled.ts:15](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/json/bundled.ts#L15)
77+
[json/bundled.ts:15](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/json/bundled.ts#L15)
7878

7979
## Codemirror Extensions
8080

@@ -108,7 +108,7 @@ provides a JSON schema enabled autocomplete extension for codemirror
108108

109109
#### Defined in
110110

111-
[features/completion.ts:949](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/features/completion.ts#L949)
111+
[features/completion.ts:949](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/completion.ts#L949)
112112

113113
___
114114

@@ -144,7 +144,7 @@ provides a JSON schema enabled tooltip extension for codemirror
144144

145145
#### Defined in
146146

147-
[features/hover.ts:46](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/features/hover.ts#L46)
147+
[features/hover.ts:46](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/hover.ts#L46)
148148

149149
___
150150

@@ -178,7 +178,7 @@ Helper for simpler class instantiaton
178178

179179
#### Defined in
180180

181-
[features/validation.ts:58](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/features/validation.ts#L58)
181+
[features/validation.ts:58](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/validation.ts#L58)
182182

183183
## Utilities
184184

@@ -201,7 +201,7 @@ retrieve a Map of all the json pointers in a document
201201

202202
#### Defined in
203203

204-
[utils/json-pointers.ts:85](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/utils/json-pointers.ts#L85)
204+
[utils/json-pointers.ts:85](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/json-pointers.ts#L85)
205205

206206
___
207207

@@ -226,7 +226,7 @@ retrieve a JSON pointer for a given position in the editor
226226

227227
#### Defined in
228228

229-
[utils/json-pointers.ts:68](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/utils/json-pointers.ts#L68)
229+
[utils/json-pointers.ts:68](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/json-pointers.ts#L68)
230230

231231
___
232232

@@ -253,7 +253,7 @@ Mimics the behavior of `json-source-map`'s `parseJSONDocument` function using co
253253

254254
#### Defined in
255255

256-
[utils/parse-json-document.ts:24](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/utils/parse-json-document.ts#L24)
256+
[utils/parse-json-document.ts:24](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/parse-json-document.ts#L24)
257257

258258
___
259259

@@ -280,7 +280,7 @@ Return parsed data and json pointers for a given codemirror EditorState
280280

281281
#### Defined in
282282

283-
[utils/parse-json-document.ts:10](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/utils/parse-json-document.ts#L10)
283+
[utils/parse-json-document.ts:10](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/parse-json-document.ts#L10)
284284

285285
## Functions
286286

@@ -300,7 +300,7 @@ Return parsed data and json pointers for a given codemirror EditorState
300300

301301
#### Defined in
302302

303-
[features/state.ts:25](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/features/state.ts#L25)
303+
[features/state.ts:25](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/state.ts#L25)
304304

305305
___
306306

@@ -322,7 +322,7 @@ ___
322322

323323
#### Defined in
324324

325-
[utils/json-pointers.ts:31](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/utils/json-pointers.ts#L31)
325+
[utils/json-pointers.ts:31](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/json-pointers.ts#L31)
326326

327327
___
328328

@@ -342,7 +342,7 @@ ___
342342

343343
#### Defined in
344344

345-
[features/validation.ts:48](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/features/validation.ts#L48)
345+
[features/validation.ts:48](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/validation.ts#L48)
346346

347347
___
348348

@@ -363,7 +363,7 @@ ___
363363

364364
#### Defined in
365365

366-
[utils/json-pointers.ts:18](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/utils/json-pointers.ts#L18)
366+
[utils/json-pointers.ts:18](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/json-pointers.ts#L18)
367367

368368
___
369369

@@ -383,7 +383,7 @@ ___
383383

384384
#### Defined in
385385

386-
[features/state.ts:29](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/features/state.ts#L29)
386+
[features/state.ts:29](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/state.ts#L29)
387387

388388
___
389389

@@ -404,7 +404,7 @@ ___
404404

405405
#### Defined in
406406

407-
[features/state.ts:19](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/features/state.ts#L19)
407+
[features/state.ts:19](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/state.ts#L19)
408408

409409
## Type Aliases
410410

@@ -421,7 +421,7 @@ ___
421421

422422
#### Defined in
423423

424-
[features/hover.ts:19](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/features/hover.ts#L19)
424+
[features/hover.ts:19](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/hover.ts#L19)
425425

426426
___
427427

@@ -431,7 +431,7 @@ ___
431431

432432
#### Defined in
433433

434-
[features/hover.ts:21](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/features/hover.ts#L21)
434+
[features/hover.ts:21](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/hover.ts#L21)
435435

436436
___
437437

@@ -450,7 +450,7 @@ ___
450450

451451
#### Defined in
452452

453-
[features/hover.ts:25](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/features/hover.ts#L25)
453+
[features/hover.ts:25](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/hover.ts#L25)
454454

455455
___
456456

@@ -467,7 +467,7 @@ ___
467467

468468
#### Defined in
469469

470-
[types.ts:6](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/types.ts#L6)
470+
[types.ts:6](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/types.ts#L6)
471471

472472
___
473473

@@ -486,7 +486,7 @@ ___
486486

487487
#### Defined in
488488

489-
[types.ts:11](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/types.ts#L11)
489+
[types.ts:11](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/types.ts#L11)
490490

491491
___
492492

@@ -496,7 +496,7 @@ ___
496496

497497
#### Defined in
498498

499-
[types.ts:20](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/types.ts#L20)
499+
[types.ts:20](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/types.ts#L20)
500500

501501
## Variables
502502

@@ -506,4 +506,4 @@ ___
506506

507507
#### Defined in
508508

509-
[features/state.ts:6](https://github.com/jsonnext/codemirror-json-schema/blob/edafa8f/src/features/state.ts#L6)
509+
[features/state.ts:6](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/state.ts#L6)

0 commit comments

Comments
 (0)