Skip to content

Commit 5c217a5

Browse files
navigraph-botSkySails
authored andcommitted
ci(changesets): version packages [no ci]
1 parent 8abe396 commit 5c217a5

File tree

11 files changed

+48
-18
lines changed

11 files changed

+48
-18
lines changed

.changeset/rare-ducks-drum.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

examples/msfs-panel/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# msfs-panel
22

3+
## 1.0.33
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
9+
310
## 1.0.32
411

512
### Patch Changes

examples/msfs-panel/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "msfs-panel",
3-
"version": "1.0.32",
3+
"version": "1.0.33",
44
"private": true,
55
"homepage": "./",
66
"files": [
77
"dist"
88
],
99
"dependencies": {
10-
"navigraph": "1.2.31",
10+
"navigraph": "1.2.32",
1111
"react": "^17.0.1",
1212
"react-dom": "^17.0.1",
1313
"react-router-dom": "^5.2.0"

packages/auth/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @navigraph/auth
22

3+
## 2.5.0
4+
5+
### Minor Changes
6+
7+
- [`b1ecbc8`](https://github.com/Navigraph/navigraph-js-sdk/commit/b1ecbc89f6fe1c951bcf9a04d8cd03eba2342037) Thanks [@SkySails](https://github.com/SkySails)! - Changed the functionality of the user `verify` parameter that is passed to `getUser()`. The SDK will now always try to grab new credentials from the server when this option is passed, instead of first checking the validity of the access token.
8+
9+
This fixes an issue in `@navigraph/leaflet` where a complete refresh is _required_ in order to grab new credentials when tiles fail to load.
10+
311
## 2.4.3
412

513
### Patch Changes

packages/auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@navigraph/auth",
3-
"version": "2.4.3",
3+
"version": "2.5.0",
44
"license": "MIT",
55
"description": "Authentication with Navigraph services as part of the Navigraph SDK",
66
"author": "Navigraph <[email protected]> (https://navigraph.com)",

packages/charts/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @navigraph/charts
22

3+
## 2.0.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b1ecbc8`](https://github.com/Navigraph/navigraph-js-sdk/commit/b1ecbc89f6fe1c951bcf9a04d8cd03eba2342037)]:
8+
- @navigraph/auth@2.5.0
9+
310
## 2.0.2
411

512
### Patch Changes

packages/charts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@navigraph/charts",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"license": "MIT",
55
"description": "Allows interaction with the Navigraph Charts API as part of the Navigraph SDK",
66
"author": "Navigraph <[email protected]> (https://navigraph.com)",
@@ -35,7 +35,7 @@
3535
"postpack": "clean-package restore"
3636
},
3737
"dependencies": {
38-
"@navigraph/auth": "2.4.3",
38+
"@navigraph/auth": "2.5.0",
3939
"@navigraph/app": "1.3.4"
4040
},
4141
"devDependencies": {

packages/leaflet/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @navigraph/leaflet
22

3+
## 1.1.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b1ecbc8`](https://github.com/Navigraph/navigraph-js-sdk/commit/b1ecbc89f6fe1c951bcf9a04d8cd03eba2342037)]:
8+
- @navigraph/auth@2.5.0
9+
310
## 1.1.1
411

512
### Patch Changes

packages/leaflet/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@navigraph/leaflet",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"license": "MIT",
55
"description": "Facilitates easy integration of Navigraph Enroute Charts into Leaflet-based projects.",
66
"author": "Navigraph <[email protected]> (https://navigraph.com)",
@@ -34,13 +34,13 @@
3434
"postpack": "clean-package restore"
3535
},
3636
"dependencies": {
37-
"@navigraph/auth": "2.4.2",
37+
"@navigraph/auth": "2.5.0",
3838
"@navigraph/app": "1.3.4"
3939
},
4040
"peerDependencies": {
4141
"leaflet": "^1.9.4"
4242
},
4343
"devDependencies": {
44-
"@navigraph/auth": "2.4.3"
44+
"@navigraph/auth": "2.5.0"
4545
}
4646
}

packages/navigraph/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# navigraph
22

3+
## 1.2.32
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b1ecbc8`](https://github.com/Navigraph/navigraph-js-sdk/commit/b1ecbc89f6fe1c951bcf9a04d8cd03eba2342037)]:
8+
- @navigraph/auth@2.5.0
9+
- @navigraph/charts@2.0.3
10+
311
## 1.2.31
412

513
### Patch Changes

0 commit comments

Comments
 (0)