Skip to content

Commit 30c8387

Browse files
authored
Merge pull request #434 from Peefy/docs-2024-08-07-newsletter
docs: add 2024-08-07 newsletter blogs
2 parents 95b8134 + 2ff74fb commit 30c8387

File tree

4 files changed

+207
-4
lines changed
  • blog
  • i18n/zh-CN/docusaurus-plugin-content-blog

4 files changed

+207
-4
lines changed

blog/2024-07-24-newsletter/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Special thanks to all community contributors over the past two weeks. The follow
2828

2929
## Overview
3030

31-
Thanks to all contributors for their outstanding work over the past two weeks (2024.06.12 - 2024.06.27). Here is an overview of the key content:
31+
Thanks to all contributors for their outstanding work over the past two weeks. Here is an overview of the key content:
3232

3333
**📦️ Modules Updates**
3434

@@ -78,7 +78,7 @@ Thanks to all contributors for their outstanding work over the past two weeks (2
7878

7979
**📚️ Documentation Updates**
8080

81-
- Added Python, Java, NodeJs, Rust, Wasm, .NET, C/C++ and other multi-language API documents.
81+
- Added Python, Java, Node.js, Rust, Wasm, .NET, C/C++ and other multi-language API documents.
8282
- Updated the IDE Quick Start document.
8383
- Added New Blog [A Comparative Overview of Jsonnet and KCL](https://www.kcl-lang.io/blog/2024-07-22-jsonnet-kcl-comparison).
8484
- Updated the crd in [Adapt From Kubernetes](https://www.kcl-lang.io/docs/user_docs/guides/working-with-k8s/adapt-from-kubernetes).

blog/2024-08-07-newsletter/index.md

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
---
2+
slug: 2024-08-07-newsletter
3+
title: KCL Newsletter (2024.07.25 - 2024.08.07)
4+
authors:
5+
name: KCL Team
6+
title: KCL Team
7+
tags: [KCL, Newsletter]
8+
image: /img/biweekly-newsletter.png
9+
---
10+
11+
![](/img/biweekly-newsletter.png)
12+
13+
[KCL](https://github.com/kcl-lang/kcl) is an open-source configuration and policy language hosted by the Cloud Native Computing Foundation (CNCF) as a Sandbox Project. Built on a foundation of constraints and functional programming principles, KCL enhances the process of writing complex configurations, particularly in cloud-native environments. By leveraging advanced programming language techniques, KCL promotes improved modularity, scalability, and stability in configuration management. It simplifies logic writing, offers easy-to-use automation APIs, and seamlessly integrates with existing systems.
14+
15+
This section will update the KCL language community's latest news, including features, website updates, and the latest community news, helping everyone better understand the KCL community!
16+
17+
**_KCL Website: [https://kcl-lang.io](https://kcl-lang.io)_**
18+
19+
## Special Thanks
20+
21+
Special thanks to all community contributors over the past two weeks. The following list is in no particular order:
22+
23+
- Thanks @briheet for the contribution to the formatted output of the kcl.mod file. 🙌
24+
- Thanks @Vishalk91-4 for the ongoing contribution to the KCL tree-sitter. 🙌
25+
- Thanks @liangyuanpeng for the ongoing contribution to the CI of repositories such as KCL cli, kpm, and modules. 🙌
26+
- Thanks @kukacz for the ongoing contribution to the KCL model repository. 🙌
27+
- Thanks @Moulick for the contribution to the Crossplane KCL Function. 🙌
28+
- Thanks @stmcginnis for the contribution to the KCL documentation. 🙌
29+
- Thanks @YvanDaSilva for the contribution to the KCL Nix Package. 🙌
30+
- Thanks @DavidChevallier for the ongoing contribution to the KCL model repository. 🙌
31+
- Thanks @Manoramsharma for the contribution to the alias feature and external Git dependency functionality of the KCL package management tool. 🙌
32+
- Thanks @NishantBansal2003, @varshith257 for the research and contribution to the checksum check of third-party dependencies in the KCL package management tool. 🙌
33+
- Thanks to Harsh4902, @Gmin2, @shishir-11, @RehanChalana for the research and contribution to the Intellij IDE KCL LSP plugin. 🙌
34+
- Thanks @Shruti78 for the contribution to the KCL documentation. 🙌
35+
- Thanks @jianzs for the contribution to the KCL Playground. 🙌
36+
- Thanks @vinayakjaas for the contribution to the error messages of KPM. 🙌
37+
- Thanks to @wmcnamee-coreweave, @dennybaa, @bozaro, @eshepelyuk, @liangyuanpeng, @vietanhtwdk, @hoangndst, @sschne, @patpicos, @metacoma, @YvanDaSilva, @ovk, @karlderkaefer, @kukacz, @Matthew Hodgkins, @Gao Jun, and @Zack Zhang for their valuable suggestions and feedback while using KCL in recent times. 🙌
38+
39+
## Overview
40+
41+
Thanks to all contributors for their outstanding work over the past two weeks. Here is an overview of the key content:
42+
43+
**📦️ Modules Updates**
44+
45+
- `cluster-api-provider-azure` updated to v1.16.0
46+
- `cluster-api` updated to v1.7.4
47+
- `konfig` updated to v0.6.0
48+
- `karmada` updated to v0.1.1
49+
- New modules
50+
- `fluxcd-kcl-controller`
51+
- `fluxcd-kustomize-controller`
52+
- `fluxcd-helm-controller`
53+
- `fluxcd-source-controller`
54+
- `fluxcd-image-reflector-controller`
55+
- `fluxcd-image-automation-controller`
56+
- `fluxcd-notification-controller`
57+
- `kwok`
58+
59+
**🏄 Language Updates**
60+
61+
- Assignment statements support attribute access and index access for the assigned target.
62+
- Fixed KCL nested multi-level config block semantic check costing too long time.
63+
- Removed the unwrap() in the semantic resolver to reduce panic issues.
64+
- Fixed the error merge of the list index field by merge operation.
65+
66+
- Fixed type conversion error with the `as` keyword in the presence of external packages.
67+
- Fixed type check error from config to schema in the `lambda` function.
68+
- Added `file.current()` function to retrieve the full path of the currently running KCL file.
69+
- Assignment statements support syntax such as `_config["key"] = "value"` or `_config.key = "value"` for in-place modification of configurations.
70+
71+
**💻 IDE Updates**
72+
73+
- Fixed completion of attribute instantiation using `:` operator in Schema.
74+
- Fixed unexpected completion in Schema Doc
75+
- Fixed display issues with the `kcl-language-server` command-line version.
76+
- Support for disabling formatting on save in plugins like NeoVim, VS Code.
77+
- Fine-grained completion for distinguishing between property and value semantics during Schema instantiation.
78+
- Removal of default key bindings in KCL NeoVim plugin, support for user customization.
79+
80+
**📬️ Toolchain Updates**
81+
82+
- `kcl test` tool supports output of print function in test cases
83+
- Fixed compilation error in `kcl import` when importing Schema from Kubernetes CRD and OpenAPI
84+
- Improved formatting of output for `kcl mod init`
85+
86+
**⛵️ API Updates**
87+
88+
- Fixed unexpected data formatting error in KCL C API.
89+
- `OverrideFile` API supports automatic merging and modification of configurations using the `:` operator during compilation.
90+
91+
**🔥 SDK Updates**
92+
93+
- KCL Go SDK supports interaction with KCL core Rust API through build tags, defaulting to CGO mode and can be switched to RPC mode with `-tags rpc`.
94+
- Alpha version v0.10.0 of KCL SDKs released
95+
- Initial release of KCL Kotlin and Swift language SDKs, with no official dependency package yet, contributions are welcome.
96+
97+
## Resources
98+
99+
❤️ See [here](https://github.com/kcl-lang/community) to join us!
100+
101+
For more resources, please refer to
102+
103+
- [KCL Website](https://kcl-lang.io/)
104+
- [KusionStack Website](https://kusionstack.io/)

i18n/zh-CN/docusaurus-plugin-content-blog/2024-07-24-newsletter/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ image: /img/biweekly-newsletter.png
2828

2929
## 内容概述
3030

31-
感谢所有贡献者过去一段时间 (2024.07.10 - 2024.07.24) 的杰出工作,以下是重点内容概述
31+
感谢所有贡献者过去两周的杰出工作,以下是重点内容概述
3232

3333
**📦️ 三方库更新**
3434

@@ -79,7 +79,7 @@ image: /img/biweekly-newsletter.png
7979

8080
**📚️ 文档更新**
8181

82-
- 新增 Python, Java, NodeJs, Rust, Wasm, .NET, C/C++ 等多语言 API 文档。
82+
- 新增 Python, Java, Node.js, Rust, Wasm, .NET, C/C++ 等多语言 API 文档。
8383
- 更新了 IDE Quick Start 文档。
8484
- 新增博客 [A Comparative Overview of Jsonnet and KCL](https://www.kcl-lang.io/blog/2024-07-22-jsonnet-kcl-comparison)
8585
- 更新文档[Adapt From Kubernetes](https://www.kcl-lang.io/docs/user_docs/guides/working-with-k8s/adapt-from-kubernetes)中的 crd 资源。
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
---
2+
slug: 2024-08-07-newsletter
3+
title: KCL 最新动态速递 (2024.07.25 - 2024.08.07)
4+
authors:
5+
name: KCL 团队
6+
title: KCL 团队
7+
tags: [KCL, Newsletter]
8+
image: /img/biweekly-newsletter.png
9+
---
10+
11+
![](/img/biweekly-newsletter-zh.png)
12+
13+
[KCL](https://github.com/kcl-lang) 是一个 CNCF 基金会托管的基于约束的记录及函数语言,期望通过成熟的编程语言技术和实践来改进对大量繁杂配置比如云原生 Kubernetes 配置场景的编写,致力于构建围绕配置的更好的模块化、扩展性和稳定性,更简单的逻辑编写,以及更简单的自动化和生态工具集成。
14+
15+
本栏目将会双周更新 KCL 语言社区最新动态,包括功能、官网更新和最新的社区动态等,帮助大家更好地了解 KCL 社区!
16+
17+
**_KCL 官网:[https://kcl-lang.io](https://kcl-lang.io)_**
18+
19+
## 特别鸣谢
20+
21+
感谢过去两周所有的社区参与者,以下排名不分先后
22+
23+
- 感谢 @briheet 对 kcl.mod 文件格式化输出的贡献。🙌
24+
- 感谢 @Vishalk91-4 对 KCL tree-sitter 的持续贡献。🙌
25+
- 感谢 @liangyuanpeng 对 KCL cli, kpm 和 modules 等仓库 CI 的持续贡献。🙌
26+
- 感谢 @kukacz 对 KCL 模型库的持续贡献。🙌
27+
- 感谢 @Moulick 对 Crossplane KCL Function 的贡献。🙌
28+
- 感谢 @stmcginnis 对 KCL 文档的贡献。🙌
29+
- 感谢 @YvanDaSilva 对 KCL Nix Package 的贡献。🙌
30+
- 感谢 @DavidChevallier 对 KCL 模型库的持续贡献。🙌
31+
- 感谢 @Manoramsharma 对 KCL 包管理工具依赖别名特性和外部 Git 依赖功能的贡献。🙌
32+
- 感谢 @NishantBansal2003, @varshith257 对 KCL 包管理工具三方依赖 checksum 检查的调研和贡献。🙌
33+
- 感谢 Harsh4902, @Gmin2, @shishir-11, @RehanChalana 对 Intellij IDE KCL LSP 插件的调研和贡献。🙌
34+
- 感谢 @Shruti78 对 KCL 文档的贡献。🙌
35+
- 感谢 @jianzs 对 KCL Playground 的贡献。🙌
36+
- 感谢 @vinayakjaas 对 KPM 错误信息的贡献。🙌
37+
- 感谢 @wmcnamee-coreweave, @dennybaa, @bozaro, @eshepelyuk, @liangyuanpeng, @vietanhtwdk, @hoangndst, @sschne, @patpicos, @metacoma, @YvanDaSilva, @ovk, @karlderkaefer, @kukacz, @Matthew Hodgkins, @Gao Jun 和 @Zack Zhang 等在近段时间使用 KCL 过程中提供的宝贵建议与反馈 🙌
38+
39+
## 内容概述
40+
41+
感谢所有贡献者过去两周的杰出工作,以下是重点内容概述
42+
43+
**📦️ 模型更新**
44+
45+
- `cluster-api-provider-azure` 更新至 v1.16.0
46+
- `cluster-api` 更新至 v1.7.4
47+
- `konfig` 更新至 v0.6.0
48+
- `karmada` 更新至 v0.1.1
49+
- 新增模型列表
50+
- `fluxcd-kcl-controller`
51+
- `fluxcd-kustomize-controller`
52+
- `fluxcd-helm-controller`
53+
- `fluxcd-source-controller`
54+
- `fluxcd-image-reflector-controller`
55+
- `fluxcd-image-automation-controller`
56+
- `fluxcd-notification-controller`
57+
- `kwok`
58+
59+
**🏄 语言更新**
60+
61+
- 修复 `as` 关键字在外部包存在时类型转换的错误
62+
- 修复在 `lambda` 函数中 config 到 schema 的类型检查错误
63+
- 新增 `file.current()` 函数用以获取当前运行 KCL 文件的全路径
64+
- 赋值语句支持形如 `_config["key"] = "value"``_config.key = "value"`的语法对配置进行原地修改
65+
66+
**💻 IDE 更新**
67+
68+
- 修复 Schema 使用 `:` 合并运算符定义属性实例化时的补全
69+
- 修复在 Schema Doc 中非预期的补全
70+
- 修复 `kcl-language-server` 命令行版本显示问题
71+
- 支持 NeoVim, VS Code 等插件禁用保存时格式化配置
72+
- 支持 Schema 实例化时区分属性和值语义的细粒度补全
73+
- KCL NeoVim 插件移除默认的 key bindings, 支持用户自定以
74+
75+
**📬️ 工具更新**
76+
77+
- `kcl test` 测试工具支持测试用例中的 `print` 函数输出
78+
- 修复 `kcl import` 在 Kubernetes CRD 和 OpenAPI 导入 Schema 的编译错误
79+
- 优化 `kcl mod init` 的输出格式
80+
81+
**⛵️ API 更新**
82+
83+
- 修复 KCL C API 非预期的数据格式化错误
84+
- `OverrideFile` API 支持使用 `:` 合并运算符在编译时对配置进行自动合并修改
85+
86+
**🔥 SDK 更新**
87+
88+
- KCL Go SDK 支持通过 build tags 区分以 RPC 模式还是 CGO 模式与 KCL 核心 Rust API 进行交互,默认为 CGO 模式,可以通过 `-tags rpc` 开启 RPC 模式
89+
- KCL 多语言 SDK 发布 v0.10.0 预览版本
90+
- 新增 KCL Kotlin 和 Swift 语言初版 SDK,尚未正式发布依赖包,欢迎参与贡献
91+
92+
## 其他资源
93+
94+
❤️ 查看 _[KCL 社区](https://github.com/kcl-lang/community)_ 加入我们。
95+
96+
更多其他资源请参考:
97+
98+
- [KCL 网站](https://kcl-lang.io/)
99+
- [KusionStack 网站](https://kusionstack.io/)

0 commit comments

Comments
 (0)