diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b636b1ec..71b059556 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.40.1] - 2024-04-29 + +### CI changes + +- Changed an internal test script to fix a dependency issue in CI + ## [0.40.0] - 2024-04-15 ### Breaking Changes diff --git a/lib/build/genericComponentOverrideContext.js b/lib/build/genericComponentOverrideContext.js index c18ce954a..3c53e8b67 100644 --- a/lib/build/genericComponentOverrideContext.js +++ b/lib/build/genericComponentOverrideContext.js @@ -265,7 +265,7 @@ var SSR_ERROR = * License for the specific language governing permissions and limitations * under the License. */ -var package_version = "0.40.0"; +var package_version = "0.40.1"; /* Copyright (c) 2021, VRAI Labs and/or its affiliates. All rights reserved. * diff --git a/lib/build/version.d.ts b/lib/build/version.d.ts index 6dc2e7779..adabe8637 100644 --- a/lib/build/version.d.ts +++ b/lib/build/version.d.ts @@ -1 +1 @@ -export declare const package_version = "0.40.0"; +export declare const package_version = "0.40.1"; diff --git a/lib/ts/version.ts b/lib/ts/version.ts index ec81fec84..3be3af5b9 100644 --- a/lib/ts/version.ts +++ b/lib/ts/version.ts @@ -12,4 +12,4 @@ * License for the specific language governing permissions and limitations * under the License. */ -export const package_version = "0.40.0"; +export const package_version = "0.40.1"; diff --git a/package-lock.json b/package-lock.json index 293345c30..35d0460d3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "supertokens-auth-react", - "version": "0.40.0", + "version": "0.40.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "supertokens-auth-react", - "version": "0.40.0", + "version": "0.40.1", "license": "Apache-2.0", "dependencies": { "intl-tel-input": "^17.0.19", @@ -23889,9 +23889,9 @@ "integrity": "sha512-r0JFBjkMIdep3Lbk3JA+MpnpuOtw4RSyrlRAbrzMcxwiYco3GFWl/daimQZ5b1forOiUODpOlXbSOljP/oyurg==" }, "node_modules/supertokens-web-js": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/supertokens-web-js/-/supertokens-web-js-0.10.0.tgz", - "integrity": "sha512-Osqqcjx8Y4mHmUfw5hbDAmtkZDFHwU/oiNXfpQeLdsmrmKFZk+8pVuFSv7i4yDGdEvJ9TIc+yiiyq4vY3XRpkQ==", + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/supertokens-web-js/-/supertokens-web-js-0.10.1.tgz", + "integrity": "sha512-Z5Xx0Nsjl/SY2SeQzdONArMzakEEu3LNKCjSi3eK11zIGgjE7fGEU0KoEZT/aBOqwLJzTfNRasYpTTIjkOH6KQ==", "peer": true, "dependencies": { "supertokens-js-override": "0.0.4", @@ -43370,9 +43370,9 @@ "integrity": "sha512-r0JFBjkMIdep3Lbk3JA+MpnpuOtw4RSyrlRAbrzMcxwiYco3GFWl/daimQZ5b1forOiUODpOlXbSOljP/oyurg==" }, "supertokens-web-js": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/supertokens-web-js/-/supertokens-web-js-0.10.0.tgz", - "integrity": "sha512-Osqqcjx8Y4mHmUfw5hbDAmtkZDFHwU/oiNXfpQeLdsmrmKFZk+8pVuFSv7i4yDGdEvJ9TIc+yiiyq4vY3XRpkQ==", + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/supertokens-web-js/-/supertokens-web-js-0.10.1.tgz", + "integrity": "sha512-Z5Xx0Nsjl/SY2SeQzdONArMzakEEu3LNKCjSi3eK11zIGgjE7fGEU0KoEZT/aBOqwLJzTfNRasYpTTIjkOH6KQ==", "peer": true, "requires": { "supertokens-js-override": "0.0.4", diff --git a/package.json b/package.json index 7133798ae..a98495d49 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "supertokens-auth-react", - "version": "0.40.0", + "version": "0.40.1", "description": "ReactJS SDK that provides login functionality with SuperTokens.", "main": "./index.js", "engines": { diff --git a/test/prepTestApp.sh b/test/prepTestApp.sh index 9ad591206..d42f26602 100755 --- a/test/prepTestApp.sh +++ b/test/prepTestApp.sh @@ -14,7 +14,7 @@ rm ../../supertokens-auth-react-*.tgz cd node_modules/supertokens-auth-react # install prod dependencies only -npm i --production || exit $? +npm i --force --omit=dev || exit $? rm -rf node_modules/react # We need this because we do local install instead which doesn't take the parent dir into account rm -rf node_modules/.cache @@ -27,4 +27,4 @@ ln -s ../../../../../node_modules/supertokens-web-js node_modules/supertokens-we # We symlink the supertokens-website dep to ensure it's the same version (maybe linked locally) ln -s ../../../../../node_modules/supertokens-website node_modules/supertokens-website -echo "$1 prepped." \ No newline at end of file +echo "$1 prepped."