@knapsack/rendering-utils 4.77.0--canary.5778.a80dc8b.0 → 4.77.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-lint.log +1 -1
- package/CHANGELOG.md +33 -0
- package/package.json +7 -7
package/.turbo/turbo-build.log
CHANGED
package/.turbo/turbo-lint.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
|
1
|
+
# v4.77.0 (Thu Mar 13 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- KSP-6200: proper var name in var ref [#5778](https://github.com/knapsack-labs/app-monorepo/pull/5778) ([@illepic](https://github.com/illepic))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Merge branch 'latest' into feature/ksp-6069-fix-and-test-bitbucket-dc-provider ([@freneticpixel](https://github.com/freneticpixel))
|
|
10
|
+
|
|
11
|
+
#### 🏠 Internal
|
|
12
|
+
|
|
13
|
+
- Bitbucket DC updates [#5652](https://github.com/knapsack-labs/app-monorepo/pull/5652) ([@freneticpixel](https://github.com/freneticpixel))
|
|
14
|
+
|
|
15
|
+
#### Authors: 2
|
|
16
|
+
|
|
17
|
+
- Christopher Bloom ([@illepic](https://github.com/illepic))
|
|
18
|
+
- Jim Frenette ([@freneticpixel](https://github.com/freneticpixel))
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
# v4.76.3 (Mon Mar 10 2025)
|
|
23
|
+
|
|
24
|
+
#### 🏠 Internal
|
|
25
|
+
|
|
26
|
+
- Update sds_extended view ddl generator [#5443](https://github.com/knapsack-labs/app-monorepo/pull/5443) ([@greylabel](https://github.com/greylabel))
|
|
27
|
+
|
|
28
|
+
#### Authors: 1
|
|
29
|
+
|
|
30
|
+
- Grant Gaudet ([@greylabel](https://github.com/greylabel))
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
1
34
|
# v4.76.1 (Wed Mar 05 2025)
|
|
2
35
|
|
|
3
36
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/rendering-utils",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "4.77.0
|
|
4
|
+
"version": "4.77.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"lint": "eslint ./"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@knapsack/utils": "4.77.0
|
|
21
|
+
"@knapsack/utils": "4.77.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@knapsack/eslint-config-starter": "4.77.0
|
|
25
|
-
"@knapsack/prettier-config": "4.77.0
|
|
26
|
-
"@knapsack/types": "4.77.0
|
|
27
|
-
"@knapsack/typescript-config-starter": "4.77.0
|
|
24
|
+
"@knapsack/eslint-config-starter": "4.77.0",
|
|
25
|
+
"@knapsack/prettier-config": "4.77.0",
|
|
26
|
+
"@knapsack/types": "4.77.0",
|
|
27
|
+
"@knapsack/typescript-config-starter": "4.77.0",
|
|
28
28
|
"eslint": "^8.57.0",
|
|
29
29
|
"typescript": "^5.7.3"
|
|
30
30
|
},
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"directory": "libs/rendering-utils",
|
|
38
38
|
"type": "git"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "c0a38469e19fe1f41b33f7eb137ab4301f4001a1"
|
|
41
41
|
}
|