Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
e61f10c
added Jenkins file
ishaan1607 Apr 22, 2025
b8e2732
changes in Jenkinfiles
ishaan1607 Apr 22, 2025
e73a847
changes in Jenkinfiles
ishaan1607 Apr 22, 2025
e27b645
changes in Jenkinfiles
ishaan1607 Apr 22, 2025
c0e6f31
changes in Jenkinfiles
ishaan1607 Apr 22, 2025
601ff38
changes in Jenkinfiles after git 404
ishaan1607 Apr 22, 2025
e983a1f
version update
ishaan1607 Apr 22, 2025
94abebc
changes in Jenkinfiles after git 404
ishaan1607 Apr 22, 2025
5a5f5ed
chore: updated creds as per prod jenkins
ishaan1607 Apr 23, 2025
e473ba4
chore: updated creds as per prod jenkins
ishaan1607 Apr 23, 2025
56caf69
chore: updated creds as per prod jenkins
ishaan1607 Apr 23, 2025
30cbb21
chore: updated creds as per prod jenkins
ishaan1607 Apr 23, 2025
b0966b3
chore: updated creds as per prod jenkins
ishaan1607 Apr 23, 2025
f9c9726
chore: updated jenkinsfile as per node error
ishaan1607 Apr 23, 2025
96a912e
chore: updated jenkinsfile as per git error
ishaan1607 Apr 23, 2025
4ea8a7f
chore: updated jenkinsfile as per git error
ishaan1607 Apr 23, 2025
95b9ea2
chore: updated jenkinsfile as per git token error
ishaan1607 Apr 23, 2025
e8b249c
chore: updated jenkinsfile as per slack error
ishaan1607 Apr 23, 2025
bb97e1e
chore: updated jenkinsfile as per slack error
ishaan1607 Apr 23, 2025
eabbdb4
chore: updated jenkinsfile as per toLong error
ishaan1607 Apr 23, 2025
8a79ad2
chore: formatting done
ishaan1607 Apr 23, 2025
8675de0
chore: version increase
ishaan1607 Apr 23, 2025
bff871c
chore: git token error fixed
ishaan1607 Apr 23, 2025
d62c647
chore: git token error fixed
ishaan1607 Apr 23, 2025
055dad3
chore: git token error fixed 2
ishaan1607 Apr 23, 2025
8e5dbb7
chore: git token error fixed 2
ishaan1607 Apr 23, 2025
805721e
chore: added pr template
ishaan1607 Apr 23, 2025
2bbd741
chore: added pr template
ishaan1607 Apr 23, 2025
a3b9878
chore: versions corrected and increased
ishaan1607 Apr 23, 2025
e69dbb5
chore: added branch name check
ishaan1607 Apr 23, 2025
a95a5ff
Merge pull request #135 from LikeMindsCommunity/feature/LM-13590_crea…
ishaan1607 Apr 24, 2025
72551a1
fix: slack message and Release name in git
ishaan1607 Apr 24, 2025
666e520
chore: increased versions
ishaan1607 Apr 24, 2025
3d36479
chore: conflicts resolved
ishaan1607 Apr 24, 2025
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
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ pipeline {
script {
def version = sh(script: "node -p \"require('./package.json').version\"", returnStdout: true).trim()
def tagName = "v${version}"
def releaseName = "Release ${version}"
def releaseName = "v${version}"

sh '''
git config user.name 'Ishaan Jain'
Expand Down Expand Up @@ -130,7 +130,7 @@ pipeline {
"attachments": [
{
"color": "#36a64f",
"title": "✅ ReactJS SDK Deployed",
"title": "✅ ReactJS Feed Core SDK Deployed",
"title_link": "https://github.com/${REPO}/releases/tag/${version}",
"text": "A new version of the React SDK has been deployed and released.",
"fields": [
Expand Down
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@likeminds.community/likeminds-feed-reactjs",
"version": "1.11.0",
"version": "1.11.1",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
Expand Down
2 changes: 1 addition & 1 deletion core/src/shared/getClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { LMFeedClient } from "@likeminds.community/feed-js";
export function initiateFeedClient() {
const lmFeedClient = LMFeedClient.Builder()
.setPlatformCode("rt")
.setVersionCode(22)
.setVersionCode(23)
.build();
return lmFeedClient;
}