Skip to content

Release version 2.6.0 #379

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

Merged
merged 5 commits into from
May 28, 2025
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: 3 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
]
}
},
"postCreateCommand": "bash -i -c 'nvm install $(cat .nvmrc) -y && nvm use && corepack enable && pnpm clean && pnpm install'",
"postCreateCommand": "bash -i -c 'nvm install $(cat .nvmrc) -y && nvm use && corepack enable && pnpm clean && pnpm install && pnpm prepare; npm i -g corepack@latest && corepack enable'",
"remoteUser": "node",
"runArgs": ["--network=host"],
"mounts": [
"type=bind,src=${localEnv:HOME}/.npmrc,dst=/home/node/.npmrc",
"type=bind,src=${localEnv:HOME}/.ssh,dst=/home/node/.ssh",
"type=bind,src=${localEnv:HOME}/movai/src/feapps,dst=/workspaces/"
"type=bind,src=${localEnv:HOME}/movai/src/feapps,dst=/workspaces/",
"type=bind,src=${localEnv:HOME}/.gitconfig,dst=/home/node/.gitconfig"
]
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.6.0

- [FP-3138](https://movai.atlassian.net/browse/FP-3138): Not able to use dev container in all frontend repos

# v1.3.11

- [FP-2206](https://movai.atlassian.net/browse/FP-2206): IDE- 'current password' field behaves as mandatory but does not marked with asterisk
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mov-ai/mov-fe-lib-react",
"version": "1.3.11-1",
"version": "2.6.0-0",
"description": "The Mov.AI's frontend library for React.",
"keywords": [
"frontend",
Expand Down
Loading