diff --git a/CHANGELOG.md b/CHANGELOG.md index cf0edb4d..158f7c65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,16 +2,17 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## Unreleased +## 2.8.2 ( October 19th, 2022 ) - Added the ability to prevent the automatic loading of WebID's and Profiles from SessionProvider, this is useful when building provisioning applications where the user has logged in, but doesn't yet have a WebID or Pod or Profile documents. +- Fixed issue with sourcemaps not being included in our package tarballs -## 2.8.1 ( October 10, 2022) +## 2.8.1 ( October 10, 2022 ) - Upgrade Inrupt SDKs to latest versions - Upgrade typescript to ^4.8.4, this should help with sporadic issues with mismatches in the `fetch` type definitions -## 2.8.0 ( June 6, 2022) +## 2.8.0 ( June 6, 2022 ) ### Breaking Changes diff --git a/package-lock.json b/package-lock.json index d47cd0b5..9d03afa4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@inrupt/solid-ui-react", - "version": "2.8.1", + "version": "2.8.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@inrupt/solid-ui-react", - "version": "2.8.1", + "version": "2.8.2", "license": "MIT", "dependencies": { "@inrupt/solid-client": "^1.23.3", diff --git a/package.json b/package.json index bd0b9b38..2c069628 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@inrupt/solid-ui-react", - "version": "2.8.1", + "version": "2.8.2", "description": "Set of UI libraries using @solid/core", "main": "dist/index.js", "types": "dist/src/index.d.ts", diff --git a/src/context/sessionContext/index.tsx b/src/context/sessionContext/index.tsx index 317ad312..be303375 100644 --- a/src/context/sessionContext/index.tsx +++ b/src/context/sessionContext/index.tsx @@ -76,7 +76,7 @@ export interface ISessionProvider { /** @since 2.3.0 */ onSessionRestore?: (url: string) => void; /** - * @since unreleased + * @since 2.8.2 * @experimental * */ skipLoadingProfile?: boolean;