Skip to content

verison bump #263

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 3 commits into from
Jan 20, 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
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)


Copyright (c) 2016-2024 Contentstack
Copyright (c) 2016-2025 Contentstack

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2,053 changes: 882 additions & 1,171 deletions package-lock.json

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "contentstack",
"version": "3.23.1",
"version": "3.23.2",
"description": "Contentstack Javascript SDK",
"homepage": "https://www.contentstack.com/",
"author": {
Expand Down Expand Up @@ -65,45 +65,45 @@
"tmp": "tmp/contentstack-3.15.0.tgz_1477830884275_0.9869455888401717"
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@babel/runtime": "^7.25.9",
"@slack/bolt": "^3.22.0",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@slack/bolt": "^4.2.0",
"@types/jest": "^26.0.24",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"dotenv": "^16.4.5",
"compression-webpack-plugin": "^11.1.0",
"dotenv": "^16.4.7",
"es3ify-loader": "0.2.0",
"fetch-mock-jest": "^1.5.1",
"http-proxy-agent": "^3.0.0",
"http-proxy-agent": "^7.0.2",
"jest": "^29.7.0",
"jest-html-reporters": "^2.1.7",
"jest-html-reporters": "^3.1.7",
"jsdoc": "^4.0.4",
"jshint": "^2.13.6",
"minami": "^1.2.3",
"node-request-interceptor": "^0.6.3",
"nodemailer": "^6.9.15",
"nodemailer": "^6.9.16",
"string-replace-loader": "^3.1.0",
"tap-html": "^1.1.0",
"tap-json": "1.0.0",
"tape": "4.17.0",
"terser-webpack-plugin": "^5.3.10",
"terser-webpack-plugin": "^5.3.11",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5",
"uglify-js": "2.8.29",
"webpack": "^5.95.0",
"webpack-cli": "^4.10.0",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "4.1.5",
"uglify-js": "3.19.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-md5-hash": "0.0.6",
"webpack-merge": "6.0.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@contentstack/utils": "^1.3.12",
"@contentstack/utils": "^1.3.15",
"cheerio": "^1.0.0",
"es6-promise": "^4.2.8",
"fetch-mock": "^11.1.5",
"fetch-mock": "^12.2.0",
"localStorage": "1.0.4",
"qs": "^6.13.0"
"qs": "^6.14.0"
}
}
4 changes: 2 additions & 2 deletions sanity-report.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const fs = require('fs');
const Slack = require('@slack/bolt')
const { App } = require('@slack/bolt');
const dotenv = require('dotenv')
dotenv.config()

Expand Down Expand Up @@ -39,7 +39,7 @@ const slackMessage = `
• Total Duration: *${durationInMinutes}m ${durationInSeconds}s*
`

const app = new Slack.App({
const app = new App({
token: process.env.SLACK_BOT_TOKEN,
signingSecret: process.env.SLACK_SIGNING_SECRET
})
Expand Down
4 changes: 2 additions & 2 deletions webpack/webpack.nativescript.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
'use strict';

const path = require('path');
const webpackMerge = require('webpack-merge');
const { merge } = require('webpack-merge');
var nodeExternals = require('webpack-node-externals');

const commonConfig = require('./webpack.common.js');

module.exports = function(options) {
return webpackMerge(commonConfig(), {
return merge(commonConfig(), {
output: {
libraryTarget: "commonjs2",
path: path.join(__dirname, "../dist/nativescript"),
Expand Down
4 changes: 2 additions & 2 deletions webpack/webpack.node.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
'use strict';
const path = require('path');
const webpackMerge = require('webpack-merge');
const { merge } = require('webpack-merge');
var nodeExternals = require('webpack-node-externals');

const commonConfig = require('./webpack.common.js');

module.exports = function(options) {
return webpackMerge(commonConfig(), {
return merge(commonConfig(), {
output: {
libraryTarget: "commonjs2",
path: path.join(__dirname, "../dist/node"),
Expand Down
4 changes: 2 additions & 2 deletions webpack/webpack.react-native.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
'use strict';

const path = require('path');
const webpackMerge = require('webpack-merge');
const { merge } = require('webpack-merge');
const TerserPlugin = require("terser-webpack-plugin");
var nodeExternals = require('webpack-node-externals');

const commonConfig = require('./webpack.common.js');

module.exports = function(options) {
return webpackMerge(commonConfig(), {
return merge(commonConfig(), {
output: {
libraryTarget: "commonjs2",
path: path.join(__dirname, "../dist/react-native"),
Expand Down
4 changes: 2 additions & 2 deletions webpack/webpack.web.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
'use strict';

const path = require('path');
const webpackMerge = require('webpack-merge');
const { merge } = require('webpack-merge');

const commonConfig = require('./webpack.common.js');
const webpack = require('webpack');

module.exports = function(options) {
return webpackMerge(commonConfig(), {
return merge(commonConfig(), {
output: {
library: "Contentstack",
libraryTarget: "umd",
Expand Down
Loading