Berom0227/Detecting-Semantic-Concerns-in-Tangled-Code-Changes-Using-SLMs · Datasets at Fast360
{
// 获取包含Hugging Face文本的span元素
const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap');
spans.forEach(span => {
if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) {
span.textContent = 'AI快站';
}
});
});
// 替换logo图片的alt属性
document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => {
if (img.alt.match(/Hugging\s*Face/i)) {
img.alt = 'AI快站 logo';
}
});
}
// 替换导航栏中的链接
function replaceNavigationLinks() {
// 已替换标记,防止重复运行
if (window._navLinksReplaced) {
return;
}
// 已经替换过的链接集合,防止重复替换
const replacedLinks = new Set();
// 只在导航栏区域查找和替换链接
const headerArea = document.querySelector('header') || document.querySelector('nav');
if (!headerArea) {
return;
}
// 在导航区域内查找链接
const navLinks = headerArea.querySelectorAll('a');
navLinks.forEach(link => {
// 如果已经替换过,跳过
if (replacedLinks.has(link)) return;
const linkText = link.textContent.trim();
const linkHref = link.getAttribute('href') || '';
// 替换Spaces链接 - 仅替换一次
if (
(linkHref.includes('/spaces') || linkHref === '/spaces' ||
linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) &&
linkText !== 'OCR模型免费转Markdown' &&
linkText !== 'OCR模型免费转Markdown'
) {
link.textContent = 'OCR模型免费转Markdown';
link.href = 'https://fast360.xyz';
link.setAttribute('target', '_blank');
link.setAttribute('rel', 'noopener noreferrer');
replacedLinks.add(link);
}
// 删除Posts链接
else if (
(linkHref.includes('/posts') || linkHref === '/posts' ||
linkText === 'Posts' || linkText.match(/^s*Postss*$/i))
) {
if (link.parentNode) {
link.parentNode.removeChild(link);
}
replacedLinks.add(link);
}
// 替换Docs链接 - 仅替换一次
else if (
(linkHref.includes('/docs') || linkHref === '/docs' ||
linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) &&
linkText !== '模型下载攻略'
) {
link.textContent = '模型下载攻略';
link.href = '/';
replacedLinks.add(link);
}
// 删除Enterprise链接
else if (
(linkHref.includes('/enterprise') || linkHref === '/enterprise' ||
linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i))
) {
if (link.parentNode) {
link.parentNode.removeChild(link);
}
replacedLinks.add(link);
}
});
// 查找可能嵌套的Spaces和Posts文本
const textNodes = [];
function findTextNodes(element) {
if (element.nodeType === Node.TEXT_NODE) {
const text = element.textContent.trim();
if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') {
textNodes.push(element);
}
} else {
for (const child of element.childNodes) {
findTextNodes(child);
}
}
}
// 只在导航区域内查找文本节点
findTextNodes(headerArea);
// 替换找到的文本节点
textNodes.forEach(node => {
const text = node.textContent.trim();
if (text === 'Spaces') {
node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown');
} else if (text === 'Posts') {
// 删除Posts文本节点
if (node.parentNode) {
node.parentNode.removeChild(node);
}
} else if (text === 'Enterprise') {
// 删除Enterprise文本节点
if (node.parentNode) {
node.parentNode.removeChild(node);
}
}
});
// 标记已替换完成
window._navLinksReplaced = true;
}
// 替换代码区域中的域名
function replaceCodeDomains() {
// 特别处理span.hljs-string和span.njs-string元素
document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => {
if (span.textContent && span.textContent.includes('huggingface.co')) {
span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com');
}
});
// 替换hljs-string类的span中的域名(移除多余的转义符号)
document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => {
if (span.textContent && span.textContent.includes('huggingface.co')) {
span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com');
}
});
// 替换pre和code标签中包含git clone命令的域名
document.querySelectorAll('pre, code').forEach(element => {
if (element.textContent && element.textContent.includes('git clone')) {
const text = element.innerHTML;
if (text.includes('huggingface.co')) {
element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com');
}
}
});
// 处理特定的命令行示例
document.querySelectorAll('pre, code').forEach(element => {
const text = element.innerHTML;
if (text.includes('huggingface.co')) {
// 针对git clone命令的专门处理
if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) {
element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com');
}
}
});
// 特别处理模型下载页面上的代码片段
document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => {
const content = container.innerHTML;
if (content && content.includes('huggingface.co')) {
container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com');
}
});
// 特别处理模型仓库克隆对话框中的代码片段
try {
// 查找包含"Clone this model repository"标题的对话框
const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]');
if (cloneDialog) {
// 查找对话框中所有的代码片段和命令示例
const codeElements = cloneDialog.querySelectorAll('pre, code, span');
codeElements.forEach(element => {
if (element.textContent && element.textContent.includes('huggingface.co')) {
if (element.innerHTML.includes('huggingface.co')) {
element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com');
} else {
element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com');
}
}
});
}
// 更精确地定位克隆命令中的域名
document.querySelectorAll('[data-target]').forEach(container => {
const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string');
codeBlocks.forEach(block => {
if (block.textContent && block.textContent.includes('huggingface.co')) {
if (block.innerHTML.includes('huggingface.co')) {
block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com');
} else {
block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com');
}
}
});
});
} catch (e) {
// 错误处理但不打印日志
}
}
// 当DOM加载完成后执行替换
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', () => {
replaceHeaderBranding();
replaceNavigationLinks();
replaceCodeDomains();
// 只在必要时执行替换 - 3秒后再次检查
setTimeout(() => {
if (!window._navLinksReplaced) {
console.log('[Client] 3秒后重新检查导航链接');
replaceNavigationLinks();
}
}, 3000);
});
} else {
replaceHeaderBranding();
replaceNavigationLinks();
replaceCodeDomains();
// 只在必要时执行替换 - 3秒后再次检查
setTimeout(() => {
if (!window._navLinksReplaced) {
console.log('[Client] 3秒后重新检查导航链接');
replaceNavigationLinks();
}
}, 3000);
}
// 增加一个MutationObserver来处理可能的动态元素加载
const observer = new MutationObserver(mutations => {
// 检查是否导航区域有变化
const hasNavChanges = mutations.some(mutation => {
// 检查是否存在header或nav元素变化
return Array.from(mutation.addedNodes).some(node => {
if (node.nodeType === Node.ELEMENT_NODE) {
// 检查是否是导航元素或其子元素
if (node.tagName === 'HEADER' || node.tagName === 'NAV' ||
node.querySelector('header, nav')) {
return true;
}
// 检查是否在导航元素内部
let parent = node.parentElement;
while (parent) {
if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') {
return true;
}
parent = parent.parentElement;
}
}
return false;
});
});
// 只在导航区域有变化时执行替换
if (hasNavChanges) {
// 重置替换状态,允许再次替换
window._navLinksReplaced = false;
replaceHeaderBranding();
replaceNavigationLinks();
}
});
// 开始观察document.body的变化,包括子节点
if (document.body) {
observer.observe(document.body, { childList: true, subtree: true });
} else {
document.addEventListener('DOMContentLoaded', () => {
observer.observe(document.body, { childList: true, subtree: true });
});
}
})();
\\n \\n\"]"},"concern_count":{"kind":"number","value":2,"string":"2"},"shas":{"kind":"string","value":"[\"9a25fe59dfb63d32505afcea3a164ff0b8ea4c71\", \"c3b5dc77ff3d89d389f6f3a868b17d0a8ca63074\"]"},"types":{"kind":"string","value":"[\"build\", \"test\"]"}}},{"rowIdx":556,"cells":{"commit_message":{"kind":"string","value":"added resize observer, this will replace window.resize if available,do not check mkdocs for older versions used in deployments"},"diff":{"kind":"string","value":"[\"diff --git a/engine/src/Utils/EventListeners.ts b/engine/src/Utils/EventListeners.ts\\nindex 9e7b189..a29cab4 100644\\n--- a/engine/src/Utils/EventListeners.ts\\n+++ b/engine/src/Utils/EventListeners.ts\\n@@ -47,6 +47,7 @@ export class EventListeners {\\n \\n private canPush: boolean;\\n private resizeTimeout?: NodeJS.Timeout;\\n+ private resizeObserver?: ResizeObserver;\\n \\n /**\\n * Events listener constructor\\n@@ -144,7 +145,31 @@ export class EventListeners {\\n }\\n \\n if (options.interactivity.events.resize) {\\n- manageListener(window, Constants.resizeEvent, this.resizeHandler, add);\\n+ if (typeof ResizeObserver !== \\\"undefined\\\") {\\n+ if (this.resizeObserver && !add) {\\n+ if (container.canvas.element) {\\n+ this.resizeObserver.unobserve(container.canvas.element);\\n+ }\\n+\\n+ this.resizeObserver.disconnect();\\n+\\n+ delete this.resizeObserver;\\n+ } else if (!this.resizeObserver && add && container.canvas.element) {\\n+ this.resizeObserver = new ResizeObserver((entries) => {\\n+ const entry = entries.find((e) => e.target === container.canvas.element);\\n+\\n+ if (!entry) {\\n+ return;\\n+ }\\n+\\n+ this.handleWindowResize();\\n+ });\\n+\\n+ this.resizeObserver.observe(container.canvas.element);\\n+ }\\n+ } else {\\n+ manageListener(window, Constants.resizeEvent, this.resizeHandler, add);\\n+ }\\n }\\n \\n if (document) {\\n\", \"diff --git a/.github/workflows/ibis-docs-lint.yml b/.github/workflows/ibis-docs-lint.yml\\nindex 57d94a4..04de03b 100644\\n--- a/.github/workflows/ibis-docs-lint.yml\\n+++ b/.github/workflows/ibis-docs-lint.yml\\n@@ -206,7 +206,7 @@ jobs:\\n - name: build and push dev docs\\n run: |\\n nix develop --ignore-environment -c \\\\\\n- mkdocs gh-deploy --message 'docs: ibis@${{ github.sha }}'\\n+ mkdocs gh-deploy --message 'docs: ibis@${{ github.sha }}' --ignore-version\\n \\n simulate_release:\\n runs-on: ubuntu-latest\\n\"]"},"concern_count":{"kind":"number","value":2,"string":"2"},"shas":{"kind":"string","value":"[\"4197f2654e8767039dbfd66eca34f261ee3d88c8\", \"21228c55b7045d9b2225f65e6231184ff332b071\"]"},"types":{"kind":"string","value":"[\"feat\", \"ci\"]"}}},{"rowIdx":557,"cells":{"commit_message":{"kind":"string","value":"remove duplicated code,fixa few issues"},"diff":{"kind":"string","value":"[\"diff --git a/packages/core/src/components/action-sheet/action-sheet.tsx b/packages/core/src/components/action-sheet/action-sheet.tsx\\nindex 7166508..dad7daf 100644\\n--- a/packages/core/src/components/action-sheet/action-sheet.tsx\\n+++ b/packages/core/src/components/action-sheet/action-sheet.tsx\\n@@ -1,9 +1,9 @@\\n import { Component, CssClassMap, Element, Event, EventEmitter, Listen, Method, Prop } from '@stencil/core';\\n-import { Animation, AnimationBuilder, AnimationController, Config, DomController, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n+import { Animation, AnimationBuilder, Config, DomController, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n \\n-import { domControllerAsync, isDef, playAnimationAsync } from '../../utils/helpers';\\n+import { domControllerAsync } from '../../utils/helpers';\\n import { createThemedClasses, getClassMap } from '../../utils/theme';\\n-import { OverlayInterface, BACKDROP } from '../../utils/overlays';\\n+import { OverlayInterface, BACKDROP, overlayAnimation } from '../../utils/overlays';\\n \\n import iosEnterAnimation from './animations/ios.enter';\\n import iosLeaveAnimation from './animations/ios.leave';\\n@@ -23,15 +23,15 @@ import mdLeaveAnimation from './animations/md.leave';\\n })\\n export class ActionSheet implements OverlayInterface {\\n \\n+ private presented = false;\\n+\\n mode: string;\\n color: string;\\n-\\n- private presented = false;\\n- private animation: Animation | null = null;\\n+ animation: Animation;\\n \\n @Element() private el: HTMLElement;\\n \\n- @Prop({ connect: 'ion-animation-controller' }) animationCtrl: AnimationController;\\n+ @Prop({ connect: 'ion-animation-controller' }) animationCtrl: HTMLIonAnimationControllerElement;\\n @Prop({ context: 'config' }) config: Config;\\n @Prop({ context: 'dom' }) dom: DomController;\\n @Prop() overlayId: number;\\n@@ -178,25 +178,8 @@ export class ActionSheet implements OverlayInterface {\\n });\\n }\\n \\n- private playAnimation(animationBuilder: AnimationBuilder) {\\n- if (this.animation) {\\n- this.animation.destroy();\\n- this.animation = null;\\n- }\\n-\\n- return this.animationCtrl.create(animationBuilder, this.el).then(animation => {\\n- this.animation = animation;\\n- // Check if prop animate is false or if the config for animate is defined/false\\n- if (!this.willAnimate || (isDef(this.config.get('willAnimate')) && this.config.get('willAnimate') === false)) {\\n- // if the duration is 0, it won't actually animate I don't think\\n- // TODO - validate this\\n- this.animation = animation.duration(0);\\n- }\\n- return playAnimationAsync(animation);\\n- }).then((animation) => {\\n- animation.destroy();\\n- this.animation = null;\\n- });\\n+ private playAnimation(animationBuilder: AnimationBuilder): Promise {\\n+ return overlayAnimation(this, animationBuilder, this.willAnimate, this.el, undefined);\\n }\\n \\n protected buttonClick(button: ActionSheetButton) {\\ndiff --git a/packages/core/src/components/alert/alert.tsx b/packages/core/src/components/alert/alert.tsx\\nindex 800b77b..bdf4fc5 100644\\n--- a/packages/core/src/components/alert/alert.tsx\\n+++ b/packages/core/src/components/alert/alert.tsx\\n@@ -1,8 +1,8 @@\\n import { Component, CssClassMap, Element, Event, EventEmitter, Listen, Method, Prop } from '@stencil/core';\\n-import { Animation, AnimationBuilder, AnimationController, Config, DomController, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n-import { domControllerAsync, playAnimationAsync, autoFocus } from '../../utils/helpers';\\n+import { Animation, AnimationBuilder, Config, DomController, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n+import { domControllerAsync, autoFocus } from '../../utils/helpers';\\n import { createThemedClasses, getClassMap } from '../../utils/theme';\\n-import { OverlayInterface, BACKDROP } from '../../utils/overlays';\\n+import { OverlayInterface, BACKDROP, overlayAnimation } from '../../utils/overlays';\\n \\n import iosEnterAnimation from './animations/ios.enter';\\n import iosLeaveAnimation from './animations/ios.leave';\\n@@ -21,18 +21,19 @@ import mdLeaveAnimation from './animations/md.leave';\\n }\\n })\\n export class Alert implements OverlayInterface {\\n- mode: string;\\n- color: string;\\n \\n private presented = false;\\n- private animation: Animation | null = null;\\n private activeId: string;\\n private inputType: string | null = null;\\n private hdrId: string;\\n \\n+ animation: Animation;\\n+ mode: string;\\n+ color: string;\\n+\\n @Element() private el: HTMLElement;\\n \\n- @Prop({ connect: 'ion-animation-controller' }) animationCtrl: AnimationController;\\n+ @Prop({ connect: 'ion-animation-controller' }) animationCtrl: HTMLIonAnimationControllerElement;\\n @Prop({ context: 'config' }) config: Config;\\n @Prop({ context: 'dom' }) dom: DomController;\\n @Prop() overlayId: number;\\n@@ -264,25 +265,10 @@ export class Alert implements OverlayInterface {\\n return values;\\n }\\n \\n- private playAnimation(animationBuilder: AnimationBuilder) {\\n- if (this.animation) {\\n- this.animation.destroy();\\n- this.animation = null;\\n- }\\n-\\n- return this.animationCtrl.create(animationBuilder, this.el).then(animation => {\\n- this.animation = animation;\\n- if (!this.willAnimate) {\\n- animation.duration(0);\\n- }\\n- return playAnimationAsync(animation);\\n- }).then(animation => {\\n- animation.destroy();\\n- this.animation = null;\\n- });\\n+ private playAnimation(animationBuilder: AnimationBuilder): Promise {\\n+ return overlayAnimation(this, animationBuilder, this.willAnimate, this.el, undefined);\\n }\\n \\n-\\n private renderCheckbox(inputs: AlertInput[]) {\\n if (inputs.length === 0) return null;\\n \\ndiff --git a/packages/core/src/components/loading/loading.tsx b/packages/core/src/components/loading/loading.tsx\\nindex f45eaf1..cc4f511 100644\\n--- a/packages/core/src/components/loading/loading.tsx\\n+++ b/packages/core/src/components/loading/loading.tsx\\n@@ -1,13 +1,13 @@\\n import { Component, Element, Event, EventEmitter, Listen, Method, Prop } from '@stencil/core';\\n-import { Animation, AnimationBuilder, AnimationController, Config, DomController, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n-import { domControllerAsync, playAnimationAsync } from '../../utils/helpers';\\n+import { Animation, AnimationBuilder, Config, DomController, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n+import { domControllerAsync } from '../../utils/helpers';\\n import { createThemedClasses, getClassMap } from '../../utils/theme';\\n \\n import iosEnterAnimation from './animations/ios.enter';\\n import iosLeaveAnimation from './animations/ios.leave';\\n import mdEnterAnimation from './animations/md.enter';\\n import mdLeaveAnimation from './animations/md.leave';\\n-import { OverlayInterface, BACKDROP } from '../../utils/overlays';\\n+import { OverlayInterface, BACKDROP, overlayAnimation } from '../../utils/overlays';\\n \\n @Component({\\n tag: 'ion-loading',\\n@@ -21,16 +21,17 @@ import { OverlayInterface, BACKDROP } from '../../utils/overlays';\\n })\\n \\n export class Loading implements OverlayInterface {\\n- color: string;\\n- mode: string;\\n \\n private presented = false;\\n- private animation: Animation;\\n private durationTimeout: any;\\n \\n+ animation: Animation;\\n+ color: string;\\n+ mode: string;\\n+\\n @Element() private el: HTMLElement;\\n \\n- @Prop({ connect: 'ion-animation-controller' }) animationCtrl: AnimationController;\\n+ @Prop({ connect: 'ion-animation-controller' }) animationCtrl: HTMLIonAnimationControllerElement;\\n @Prop({ context: 'config' }) config: Config;\\n @Prop({ context: 'dom' }) dom: DomController;\\n @Prop() overlayId: number;\\n@@ -199,24 +200,8 @@ export class Loading implements OverlayInterface {\\n });\\n }\\n \\n- private playAnimation(animationBuilder: AnimationBuilder) {\\n- if (this.animation) {\\n- this.animation.destroy();\\n- this.animation = null;\\n- }\\n-\\n- return this.animationCtrl.create(animationBuilder, this.el).then(animation => {\\n- this.animation = animation;\\n- if (!this.willAnimate) {\\n- // if the duration is 0, it won't actually animate I don't think\\n- // TODO - validate this\\n- animation.duration(0);\\n- }\\n- return playAnimationAsync(animation);\\n- }).then(animation => {\\n- animation.destroy();\\n- this.animation = null;\\n- });\\n+ private playAnimation(animationBuilder: AnimationBuilder): Promise {\\n+ return overlayAnimation(this, animationBuilder, this.willAnimate, this.el, undefined);\\n }\\n \\n hostData() {\\ndiff --git a/packages/core/src/components/modal/modal.tsx b/packages/core/src/components/modal/modal.tsx\\nindex af50d63..2b7510c 100644\\n--- a/packages/core/src/components/modal/modal.tsx\\n+++ b/packages/core/src/components/modal/modal.tsx\\n@@ -1,10 +1,10 @@\\n import { Component, Element, Event, EventEmitter, Listen, Method, Prop } from '@stencil/core';\\n-import { Animation, AnimationBuilder, AnimationController, Config, DomController, FrameworkDelegate, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n+import { Animation, AnimationBuilder, Config, DomController, FrameworkDelegate, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n \\n import { DomFrameworkDelegate } from '../../utils/dom-framework-delegate';\\n-import { domControllerAsync, playAnimationAsync } from '../../utils/helpers';\\n+import { domControllerAsync } from '../../utils/helpers';\\n import { createThemedClasses } from '../../utils/theme';\\n-import { OverlayInterface, BACKDROP } from '../../utils/overlays';\\n+import { OverlayInterface, BACKDROP, overlayAnimation } from '../../utils/overlays';\\n \\n import iosEnterAnimation from './animations/ios.enter';\\n import iosLeaveAnimation from './animations/ios.leave';\\n@@ -25,14 +25,16 @@ import mdLeaveAnimation from './animations/md.leave';\\n export class Modal implements OverlayInterface {\\n \\n private presented = false;\\n- private animation: Animation;\\n private usersComponentElement: HTMLElement;\\n \\n+ animation: Animation;\\n+\\n @Element() private el: HTMLElement;\\n \\n- @Prop({ connect: 'ion-animation-controller' }) animationCtrl: AnimationController;\\n+ @Prop({ connect: 'ion-animation-controller' }) animationCtrl: HTMLIonAnimationControllerElement;\\n @Prop({ context: 'config' }) config: Config;\\n @Prop({ context: 'dom' }) dom: DomController;\\n+\\n @Prop() overlayId: number;\\n @Prop({ mutable: true }) delegate: FrameworkDelegate;\\n \\n@@ -208,22 +210,8 @@ export class Modal implements OverlayInterface {\\n });\\n }\\n \\n- private playAnimation(animationBuilder: AnimationBuilder) {\\n- if (this.animation) {\\n- this.animation.destroy();\\n- this.animation = null;\\n- }\\n-\\n- return this.animationCtrl.create(animationBuilder, this.el).then(animation => {\\n- this.animation = animation;\\n- if (!this.willAnimate) {\\n- animation.duration(0);\\n- }\\n- return playAnimationAsync(animation);\\n- }).then((animation) => {\\n- animation.destroy();\\n- this.animation = null;\\n- });\\n+ private playAnimation(animationBuilder: AnimationBuilder): Promise {\\n+ return overlayAnimation(this, animationBuilder, this.willAnimate, this.el, undefined);\\n }\\n \\n @Method()\\ndiff --git a/packages/core/src/components/picker/picker.tsx b/packages/core/src/components/picker/picker.tsx\\nindex 13faa3e..d70381e 100644\\n--- a/packages/core/src/components/picker/picker.tsx\\n+++ b/packages/core/src/components/picker/picker.tsx\\n@@ -1,9 +1,9 @@\\n import { Component, CssClassMap, Element, Event, EventEmitter, Listen, Method, Prop, State } from '@stencil/core';\\n-import { Animation, AnimationBuilder, AnimationController, Config, DomController, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n+import { Animation, AnimationBuilder, Config, DomController, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n \\n-import { domControllerAsync, playAnimationAsync } from '../../utils/helpers';\\n+import { domControllerAsync } from '../../utils/helpers';\\n import { getClassMap } from '../../utils/theme';\\n-import { OverlayInterface } from '../../utils/overlays';\\n+import { OverlayInterface, overlayAnimation } from '../../utils/overlays';\\n \\n import iosEnterAnimation from './animations/ios.enter';\\n import iosLeaveAnimation from './animations/ios.leave';\\n@@ -21,16 +21,17 @@ import iosLeaveAnimation from './animations/ios.leave';\\n export class Picker implements OverlayInterface {\\n \\n private presented = false;\\n- private animation: Animation;\\n private durationTimeout: any;\\n private mode: string;\\n \\n+ animation: Animation;\\n+\\n @Element() private el: HTMLElement;\\n \\n @State() private showSpinner: boolean = null;\\n @State() private spinner: string;\\n \\n- @Prop({ connect: 'ion-animation-controller' }) animationCtrl: AnimationController;\\n+ @Prop({ connect: 'ion-animation-controller' }) animationCtrl: HTMLIonAnimationControllerElement;\\n @Prop({ context: 'config' }) config: Config;\\n @Prop({ context: 'dom' }) dom: DomController;\\n @Prop() overlayId: number;\\n@@ -231,22 +232,8 @@ export class Picker implements OverlayInterface {\\n return this.columns;\\n }\\n \\n- private playAnimation(animationBuilder: AnimationBuilder) {\\n- if (this.animation) {\\n- this.animation.destroy();\\n- this.animation = null;\\n- }\\n-\\n- return this.animationCtrl.create(animationBuilder, this.el).then(animation => {\\n- this.animation = animation;\\n- if (!this.willAnimate) {\\n- animation.duration(0);\\n- }\\n- return playAnimationAsync(animation);\\n- }).then(animation => {\\n- animation.destroy();\\n- this.animation = null;\\n- })\\n+ private playAnimation(animationBuilder: AnimationBuilder): Promise {\\n+ return overlayAnimation(this, animationBuilder, this.willAnimate, this.el, undefined);\\n }\\n \\n private buttonClick(button: PickerButton) {\\ndiff --git a/packages/core/src/components/popover/popover.tsx b/packages/core/src/components/popover/popover.tsx\\nindex 65031ff..6a47bf6 100644\\n--- a/packages/core/src/components/popover/popover.tsx\\n+++ b/packages/core/src/components/popover/popover.tsx\\n@@ -1,10 +1,10 @@\\n import { Component, Element, Event, EventEmitter, Listen, Method, Prop } from '@stencil/core';\\n-import { Animation, AnimationBuilder, AnimationController, Config, DomController, FrameworkDelegate, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n+import { Animation, AnimationBuilder, Config, DomController, FrameworkDelegate, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n \\n import { DomFrameworkDelegate } from '../../utils/dom-framework-delegate';\\n-import { domControllerAsync, playAnimationAsync } from '../../utils/helpers';\\n+import { domControllerAsync } from '../../utils/helpers';\\n import { createThemedClasses } from '../../utils/theme';\\n-import { OverlayInterface, BACKDROP } from '../../utils/overlays';\\n+import { OverlayInterface, BACKDROP, overlayAnimation } from '../../utils/overlays';\\n \\n import iosEnterAnimation from './animations/ios.enter';\\n import iosLeaveAnimation from './animations/ios.leave';\\n@@ -24,12 +24,13 @@ import mdLeaveAnimation from './animations/md.leave';\\n export class Popover implements OverlayInterface {\\n \\n private presented = false;\\n- private animation: Animation;\\n private usersComponentElement: HTMLElement;\\n \\n+ animation: Animation;\\n+\\n @Element() private el: HTMLElement;\\n \\n- @Prop({ connect: 'ion-animation-controller' }) animationCtrl: AnimationController;\\n+ @Prop({ connect: 'ion-animation-controller' }) animationCtrl: HTMLIonAnimationControllerElement;\\n @Prop({ context: 'config' }) config: Config;\\n @Prop({ context: 'dom' }) dom: DomController;\\n @Prop({ mutable: true }) delegate: FrameworkDelegate;\\n@@ -224,22 +225,8 @@ export class Popover implements OverlayInterface {\\n });\\n }\\n \\n- private playAnimation(animationBuilder: AnimationBuilder) {\\n- if (this.animation) {\\n- this.animation.destroy();\\n- this.animation = null;\\n- }\\n-\\n- return this.animationCtrl.create(animationBuilder, this.el, this.ev).then((animation) => {\\n- this.animation = animation;\\n- if (!this.willAnimate) {\\n- animation.duration(0);\\n- }\\n- return playAnimationAsync(animation);\\n- }).then(animation => {\\n- animation.destroy();\\n- this.animation = null;\\n- })\\n+ private playAnimation(animationBuilder: AnimationBuilder): Promise {\\n+ return overlayAnimation(this, animationBuilder, this.willAnimate, this.el, this.ev);\\n }\\n \\n hostData() {\\ndiff --git a/packages/core/src/components/toast/toast.tsx b/packages/core/src/components/toast/toast.tsx\\nindex 1afa318..372070a 100644\\n--- a/packages/core/src/components/toast/toast.tsx\\n+++ b/packages/core/src/components/toast/toast.tsx\\n@@ -1,9 +1,9 @@\\n import { Component, Element, Event, EventEmitter, Listen, Method, Prop } from '@stencil/core';\\n-import { Animation, AnimationBuilder, AnimationController, Config, CssClassMap, DomController, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n+import { Animation, AnimationBuilder, Config, CssClassMap, DomController, OverlayDismissEvent, OverlayDismissEventDetail } from '../../index';\\n \\n-import { domControllerAsync, playAnimationAsync } from '../../utils/helpers';\\n+import { domControllerAsync } from '../../utils/helpers';\\n import { createThemedClasses, getClassMap } from '../../utils/theme';\\n-import { OverlayInterface } from '../../utils/overlays';\\n+import { OverlayInterface, overlayAnimation } from '../../utils/overlays';\\n \\n import iosEnterAnimation from './animations/ios.enter';\\n import iosLeaveAnimation from './animations/ios.leave';\\n@@ -24,14 +24,14 @@ import mdLeaveAnimation from './animations/md.leave';\\n export class Toast implements OverlayInterface {\\n \\n private presented = false;\\n- private animation: Animation | null;\\n \\n @Element() private el: HTMLElement;\\n \\n mode: string;\\n color: string;\\n+ animation: Animation | null;\\n \\n- @Prop({ connect: 'ion-animation-controller' }) animationCtrl: AnimationController;\\n+ @Prop({ connect: 'ion-animation-controller' }) animationCtrl: HTMLIonAnimationControllerElement;\\n @Prop({ context: 'config' }) config: Config;\\n @Prop({ context: 'dom' }) dom: DomController;\\n @Prop() overlayId: number;\\n@@ -123,6 +123,22 @@ export class Toast implements OverlayInterface {\\n */\\n @Event() ionToastDidUnload: EventEmitter;\\n \\n+ componentDidLoad() {\\n+ this.ionToastDidLoad.emit();\\n+ }\\n+\\n+ componentDidUnload() {\\n+ this.ionToastDidUnload.emit();\\n+ }\\n+\\n+ @Listen('ionDismiss')\\n+ protected onDismiss(ev: UIEvent) {\\n+ ev.stopPropagation();\\n+ ev.preventDefault();\\n+\\n+ this.dismiss();\\n+ }\\n+\\n /**\\n * Present the toast overlay after it has been created.\\n */\\n@@ -169,38 +185,8 @@ export class Toast implements OverlayInterface {\\n });\\n }\\n \\n- playAnimation(animationBuilder: AnimationBuilder) {\\n- if (this.animation) {\\n- this.animation.destroy();\\n- this.animation = null;\\n- }\\n-\\n- return this.animationCtrl.create(animationBuilder, this.el, this.position).then(animation => {\\n- this.animation = animation;\\n- if (!this.willAnimate) {\\n- animation.duration(0);\\n- }\\n- return playAnimationAsync(animation);\\n- }).then((animation) => {\\n- animation.destroy();\\n- this.animation = null;\\n- });\\n- }\\n-\\n- componentDidLoad() {\\n- this.ionToastDidLoad.emit();\\n- }\\n-\\n- componentDidUnload() {\\n- this.ionToastDidUnload.emit();\\n- }\\n-\\n- @Listen('ionDismiss')\\n- protected onDismiss(ev: UIEvent) {\\n- ev.stopPropagation();\\n- ev.preventDefault();\\n-\\n- this.dismiss();\\n+ private playAnimation(animationBuilder: AnimationBuilder): Promise {\\n+ return overlayAnimation(this, animationBuilder, this.willAnimate, this.el, this.position);\\n }\\n \\n private wrapperClass(): CssClassMap {\\ndiff --git a/packages/core/src/utils/overlays.ts b/packages/core/src/utils/overlays.ts\\nindex 8926544..634df43 100644\\n--- a/packages/core/src/utils/overlays.ts\\n+++ b/packages/core/src/utils/overlays.ts\\n@@ -1,3 +1,5 @@\\n+import { AnimationBuilder, Animation } from \\\"..\\\";\\n+import { playAnimationAsync } from \\\"./helpers\\\";\\n \\n let lastId = 1;\\n \\n@@ -56,8 +58,33 @@ export function removeLastOverlay(overlays: OverlayMap) {\\n return toRemove ? toRemove.dismiss() : Promise.resolve();\\n }\\n \\n+export function overlayAnimation(\\n+ overlay: OverlayInterface,\\n+ animationBuilder: AnimationBuilder,\\n+ animate: boolean,\\n+ baseEl: HTMLElement,\\n+ opts: any\\n+): Promise {\\n+ if (overlay.animation) {\\n+ overlay.animation.destroy();\\n+ overlay.animation = null;\\n+ }\\n+ return overlay.animationCtrl.create(animationBuilder, baseEl, opts).then(animation => {\\n+ overlay.animation = animation;\\n+ if (!animate) {\\n+ animation.duration(0);\\n+ }\\n+ return playAnimationAsync(animation);\\n+ }).then((animation) => {\\n+ animation.destroy();\\n+ overlay.animation = null;\\n+ });\\n+}\\n+\\n export interface OverlayInterface {\\n overlayId: number;\\n+ animation: Animation;\\n+ animationCtrl: HTMLIonAnimationControllerElement;\\n \\n present(): Promise;\\n dismiss(data?: any, role?: string): Promise;\\n\", \"diff --git a/README.md b/README.md\\nindex d944d22..5099f03 100644\\n--- a/README.md\\n+++ b/README.md\\n@@ -10,9 +10,8 @@ React state management with a minimal API. Made with :heart: and ES6 Proxies.\\n \\n \\n \\n-* [Motivation](#motivation)\\n+* [Introduction](#introduction)\\n * [Installation](#installation)\\n- + [Setting up a quick project](#setting-up-a-quick-project)\\n * [Usage](#usage)\\n + [Creating stores](#creating-stores)\\n + [Creating reactive views](#creating-reactive-views)\\n@@ -35,12 +34,14 @@ React state management with a minimal API. Made with :heart: and ES6 Proxies.\\n Easy State consists of two wrapper functions only. `store` creates state stores and `view` creates reactive components, which re-render whenever state stores are mutated. The rest is just plain JavaScript.\\n \\n ```js\\n-import React, from 'react'\\n+import React from 'react'\\n import { store, view } from 'react-easy-state'\\n \\n+// stores are normal objects\\n const clock = store({ time: new Date() })\\n setInterval(() => clock.time = new Date(), 1000)\\n \\n+// reactive components re-render on store mutations\\n function ClockComp () {\\n return {clock.time}
\\n }\\n\"]"},"concern_count":{"kind":"number","value":2,"string":"2"},"shas":{"kind":"string","value":"[\"9e3f295bbfd4098ffda1ae6656699f60b86c1f92\", \"b8a664c1b10f4e30a3e221a14211a3cdaf90b7f4\"]"},"types":{"kind":"string","value":"[\"refactor\", \"docs\"]"}}},{"rowIdx":558,"cells":{"commit_message":{"kind":"string","value":"replace api call which requires auth token in public page\n\nre #4694\n\nSigned-off-by: Pranav C ,auto focus inputs in survey form"},"diff":{"kind":"string","value":"[\"diff --git a/packages/nc-gui/composables/useSharedView.ts b/packages/nc-gui/composables/useSharedView.ts\\nindex cb0c5ea..f67a6c9 100644\\n--- a/packages/nc-gui/composables/useSharedView.ts\\n+++ b/packages/nc-gui/composables/useSharedView.ts\\n@@ -17,7 +17,7 @@ export function useSharedView() {\\n \\n const { appInfo } = $(useGlobal())\\n \\n- const { loadProject } = useProject()\\n+ const { project } = useProject()\\n \\n const appInfoDefaultLimit = appInfo.defaultLimit || 25\\n \\n@@ -76,7 +76,16 @@ export function useSharedView() {\\n \\n await setMeta(viewMeta.model)\\n \\n- await loadProject(true, viewMeta.project_id)\\n+ // if project is not defined then set it with an object containing base\\n+ if (!project.value?.bases)\\n+ project.value = {\\n+ bases: [\\n+ {\\n+ id: viewMeta.base_id,\\n+ type: viewMeta.client,\\n+ },\\n+ ],\\n+ }\\n \\n const relatedMetas = { ...viewMeta.relatedMetas }\\n Object.keys(relatedMetas).forEach((key) => setMeta(relatedMetas[key]))\\n\", \"diff --git a/packages/nc-gui/pages/[projectType]/form/[viewId]/index/survey.vue b/packages/nc-gui/pages/[projectType]/form/[viewId]/index/survey.vue\\nindex b2a90d8..dbad824 100644\\n--- a/packages/nc-gui/pages/[projectType]/form/[viewId]/index/survey.vue\\n+++ b/packages/nc-gui/pages/[projectType]/form/[viewId]/index/survey.vue\\n@@ -6,6 +6,7 @@ import {\\n DropZoneRef,\\n computed,\\n onKeyStroke,\\n+ onMounted,\\n provide,\\n ref,\\n useEventListener,\\n@@ -85,6 +86,8 @@ function transition(direction: TransitionDirection) {\\n \\n setTimeout(() => {\\n isTransitioning.value = false\\n+\\n+ setTimeout(focusInput, 100)\\n }, 1000)\\n }\\n \\n@@ -113,6 +116,19 @@ async function goPrevious() {\\n goToPrevious()\\n }\\n \\n+function focusInput() {\\n+ if (document && typeof document !== 'undefined') {\\n+ const inputEl =\\n+ (document.querySelector('.nc-cell input') as HTMLInputElement) ||\\n+ (document.querySelector('.nc-cell textarea') as HTMLTextAreaElement)\\n+\\n+ if (inputEl) {\\n+ inputEl.select()\\n+ inputEl.focus()\\n+ }\\n+ }\\n+}\\n+\\n useEventListener('wheel', (event) => {\\n if (Math.abs(event.deltaX) < Math.abs(event.deltaY)) {\\n // Scrolling more vertically than horizontally\\n@@ -130,6 +146,8 @@ useEventListener('wheel', (event) => {\\n \\n onKeyStroke(['ArrowLeft', 'ArrowDown'], goPrevious)\\n onKeyStroke(['ArrowRight', 'ArrowUp', 'Enter', 'Space'], goNext)\\n+\\n+onMounted(focusInput)\\n \\n \\n \\n\"]"},"concern_count":{"kind":"number","value":2,"string":"2"},"shas":{"kind":"string","value":"[\"4986a5892fb00bd5a6b2065ad8cfefbc36052dd7\", \"5373c3036866db58b322b424d3be9dedff57a376\"]"},"types":{"kind":"string","value":"[\"fix\", \"feat\"]"}}},{"rowIdx":559,"cells":{"commit_message":{"kind":"string","value":"init environ cache,remove unnecessary import"},"diff":{"kind":"string","value":"[\"diff --git a/src/environment.go b/src/environment.go\\nindex ae5e26a..0c961c5 100644\\n--- a/src/environment.go\\n+++ b/src/environment.go\\n@@ -229,6 +229,7 @@ func (env *environment) environ() map[string]string {\\n \\tif env.environCache != nil {\\n \\t\\treturn env.environCache\\n \\t}\\n+\\tenv.environCache = make(map[string]string)\\n \\tconst separator = \\\"=\\\"\\n \\tvalues := os.Environ()\\n \\tfor value := range values {\\n\", \"diff --git a/transport/src/main/java/io/camunda/zeebe/transport/stream/impl/LogicalId.java b/transport/src/main/java/io/camunda/zeebe/transport/stream/impl/LogicalId.java\\nindex 14c6f30..ebaef60 100644\\n--- a/transport/src/main/java/io/camunda/zeebe/transport/stream/impl/LogicalId.java\\n+++ b/transport/src/main/java/io/camunda/zeebe/transport/stream/impl/LogicalId.java\\n@@ -8,7 +8,6 @@\\n package io.camunda.zeebe.transport.stream.impl;\\n \\n import io.camunda.zeebe.util.buffer.BufferUtil;\\n-import org.agrona.BitUtil;\\n import org.agrona.concurrent.UnsafeBuffer;\\n \\n /**\\n\"]"},"concern_count":{"kind":"number","value":2,"string":"2"},"shas":{"kind":"string","value":"[\"dc50bd35462a49058c91a939fc8830ae7a9eb692\", \"84529bcb10c6fe02e2c0079d069ab6c6ac7683d6\"]"},"types":{"kind":"string","value":"[\"fix\", \"refactor\"]"}}},{"rowIdx":560,"cells":{"commit_message":{"kind":"string","value":"add `to_sql`\n\nCo-authored-by: Gil Forsyth ,better tested publishing flow,switch QA to new testbench-1.x-prod\n\nIn order to use the new Testbench that is compatible with Zeebe 1.x\nversions, this switches the client id and secrets used by the QA stage."},"diff":{"kind":"string","value":"[\"diff --git a/docs/api/expressions/top_level.md b/docs/api/expressions/top_level.md\\nindex efaffbd..34b529e 100644\\n--- a/docs/api/expressions/top_level.md\\n+++ b/docs/api/expressions/top_level.md\\n@@ -28,7 +28,7 @@ These methods and objects are available directly in the `ibis` module.\\n ::: ibis.or_\\n ::: ibis.param\\n ::: ibis.show_sql\\n-::: ibis.sql\\n+::: ibis.to_sql\\n ::: ibis.random\\n ::: ibis.range_window\\n ::: ibis.row_number\\n\", \"diff --git a/Makefile.toml b/Makefile.toml\\nindex e7d2b20..490d6e2 100644\\n--- a/Makefile.toml\\n+++ b/Makefile.toml\\n@@ -82,7 +82,7 @@ end\\n '''\\n \\n [tasks.build-plugins-release]\\n-env = { \\\"CARGO_MAKE_WORKSPACE_SKIP_MEMBERS\\\" = [\\\".\\\"] }\\n+env = { \\\"CARGO_MAKE_WORKSPACE_INCLUDE_MEMBERS\\\" = [\\\"default-plugins/status-bar\\\", \\\"default-plugins/strider\\\", \\\"default-plugins/tab-bar\\\"] }\\n run_task = { name = \\\"build-release\\\", fork = true }\\n \\n [tasks.wasm-opt-plugins]\\n@@ -129,15 +129,16 @@ args = [\\\"install\\\", \\\"cross\\\"]\\n [tasks.publish]\\n clear = true\\n workspace = false\\n-dependencies = [\\\"build-plugins-release\\\", \\\"wasm-opt-plugins\\\", \\\"release-commit\\\", \\\"build-release\\\", \\\"publish-zellij-tile\\\", \\\"publish-zellij-tile-utils\\\", \\\"publish-zellij-utils\\\", \\\"publish-zellij-client\\\", \\\"publish-zellij-server\\\"]\\n+dependencies = [\\\"build-plugins-release\\\", \\\"wasm-opt-plugins\\\", \\\"release-commit\\\"]\\n run_task = \\\"publish-zellij\\\"\\n \\n [tasks.release-commit]\\n dependencies = [\\\"commit-all\\\", \\\"tag-release\\\"]\\n command = \\\"git\\\"\\n-args = [\\\"push\\\", \\\"--atomic\\\", \\\"upstream\\\", \\\"main\\\", \\\"v${CARGO_MAKE_CRATE_VERSION}\\\"]\\n+args = [\\\"push\\\", \\\"--atomic\\\", \\\"origin\\\", \\\"main\\\", \\\"v${CARGO_MAKE_CRATE_VERSION}\\\"]\\n \\n [tasks.commit-all]\\n+ignore_errors = true\\n command = \\\"git\\\"\\n args = [\\\"commit\\\", \\\"-aem\\\", \\\"chore(release): v${CARGO_MAKE_CRATE_VERSION}\\\"]\\n \\n@@ -148,31 +149,32 @@ args = [\\\"tag\\\", \\\"v${CARGO_MAKE_CRATE_VERSION}\\\"]\\n [tasks.publish-zellij-tile]\\n ignore_errors = true\\n cwd = \\\"zellij-tile\\\"\\n-command = \\\"cargo publish && sleep 15\\\"\\n+script = \\\"cargo publish && sleep 15\\\"\\n \\n [tasks.publish-zellij-client]\\n+ignore_errors = true\\n dependencies = [\\\"publish-zellij-utils\\\"]\\n cwd = \\\"zellij-client\\\"\\n-command = \\\"cargo publish && sleep 15\\\"\\n+script = \\\"cargo publish && sleep 15\\\"\\n \\n [tasks.publish-zellij-server]\\n+ignore_errors = true\\n dependencies = [\\\"publish-zellij-utils\\\"]\\n cwd = \\\"zellij-server\\\"\\n-command = \\\"cargo publish && sleep 15\\\"\\n+script = \\\"cargo publish && sleep 15\\\"\\n \\n [tasks.publish-zellij-utils]\\n+ignore_errors = true\\n dependencies = [\\\"publish-zellij-tile\\\"]\\n cwd = \\\"zellij-utils\\\"\\n-command = \\\"cargo publish && sleep 15\\\"\\n+script = \\\"cargo publish && sleep 15\\\"\\n \\n [tasks.publish-zellij-tile-utils]\\n ignore_errors = true\\n cwd = \\\"zellij-tile-utils\\\"\\n-command = \\\"cargo publish && sleep 15\\\"\\n+script = \\\"cargo publish && sleep 15\\\"\\n \\n [tasks.publish-zellij]\\n dependencies = [\\\"publish-zellij-client\\\", \\\"publish-zellij-server\\\", \\\"publish-zellij-utils\\\"]\\n command = \\\"cargo\\\"\\n args = [\\\"publish\\\"]\\n-\\n-\\n\", \"diff --git a/Jenkinsfile b/Jenkinsfile\\nindex 176ab58..bead402 100644\\n--- a/Jenkinsfile\\n+++ b/Jenkinsfile\\n@@ -326,7 +326,7 @@ pipeline {\\n TAG = \\\"${env.VERSION}-${env.GIT_COMMIT}\\\"\\n DOCKER_GCR = credentials(\\\"zeebe-gcr-serviceaccount-json\\\")\\n ZEEBE_AUTHORIZATION_SERVER_URL = 'https://login.cloud.ultrawombat.com/oauth/token'\\n- ZEEBE_CLIENT_ID = 'W5a4JUc3I1NIetNnodo3YTvdsRIFb12w'\\n+ ZEEBE_CLIENT_ID = 'ELL8eP0qDkl6dxXVps0t51x2VkCkWf~p'\\n QA_RUN_VARIABLES = \\\"{\\\\\\\"zeebeImage\\\\\\\": \\\\\\\"${env.IMAGE}:${env.TAG}\\\\\\\", \\\\\\\"generationTemplate\\\\\\\": \\\\\\\"${params.GENERATION_TEMPLATE}\\\\\\\", \\\" +\\n \\\"\\\\\\\"channel\\\\\\\": \\\\\\\"Internal Dev\\\\\\\", \\\\\\\"branch\\\\\\\": \\\\\\\"${env.BRANCH_NAME}\\\\\\\", \\\\\\\"build\\\\\\\": \\\\\\\"${currentBuild.absoluteUrl}\\\\\\\", \\\" +\\n \\\"\\\\\\\"businessKey\\\\\\\": \\\\\\\"${currentBuild.absoluteUrl}\\\\\\\", \\\\\\\"processId\\\\\\\": \\\\\\\"qa-protocol\\\\\\\"}\\\"\\n@@ -341,7 +341,7 @@ pipeline {\\n withVault(\\n [vaultSecrets:\\n [\\n- [path : 'secret/common/ci-zeebe/testbench-secrets-int',\\n+ [path : 'secret/common/ci-zeebe/testbench-secrets-1.x-prod',\\n secretValues:\\n [\\n [envVar: 'ZEEBE_CLIENT_SECRET', vaultKey: 'clientSecret'],\\n\"]"},"concern_count":{"kind":"number","value":3,"string":"3"},"shas":{"kind":"string","value":"[\"e2821a56c7d867b8b591f1777019843a2ffca797\", \"65574eea5da54bf4722ecb551b42f8ff6088f33b\", \"c81a0c2999454c859b4bf4da5779712960d239be\"]"},"types":{"kind":"string","value":"[\"docs\", \"build\", \"ci\"]"}}},{"rowIdx":561,"cells":{"commit_message":{"kind":"string","value":"fix readme,add canonical `_name` to edge packages,reorder startup steps"},"diff":{"kind":"string","value":"[\"diff --git a/crates/dagger-sdk/README.md b/crates/dagger-sdk/README.md\\nindex ed96be1..974fb7f 100644\\n--- a/crates/dagger-sdk/README.md\\n+++ b/crates/dagger-sdk/README.md\\n@@ -29,9 +29,9 @@ fn main() -> eyre::Result<()> {\\n let client = dagger_sdk::connect()?;\\n \\n let version = client\\n- .container(None)\\n- .from(\\\"golang:1.19\\\".into())\\n- .with_exec(vec![\\\"go\\\".into(), \\\"version\\\".into()], None)\\n+ .container()\\n+ .from(\\\"golang:1.19\\\")\\n+ .with_exec(vec![\\\"go\\\", \\\"version\\\"])\\n .stdout()?;\\n \\n println!(\\\"Hello from Dagger and {}\\\", version.trim());\\n\", \"diff --git a/scripts/bump-edge.ts b/scripts/bump-edge.ts\\nindex e92e3c9..0b7a11a 100644\\n--- a/scripts/bump-edge.ts\\n+++ b/scripts/bump-edge.ts\\n@@ -53,6 +53,7 @@ async function loadWorkspace (dir: string) {\\n }\\n \\n const rename = (from: string, to: string) => {\\n+ find(from).data._name = find(from).data.name\\n find(from).data.name = to\\n for (const pkg of packages) {\\n pkg.updateDeps((dep) => {\\n\", \"diff --git a/broker/src/main/java/io/camunda/zeebe/broker/bootstrap/BrokerStartupProcess.java b/broker/src/main/java/io/camunda/zeebe/broker/bootstrap/BrokerStartupProcess.java\\nindex 52fa3a9..d81c27a 100644\\n--- a/broker/src/main/java/io/camunda/zeebe/broker/bootstrap/BrokerStartupProcess.java\\n+++ b/broker/src/main/java/io/camunda/zeebe/broker/bootstrap/BrokerStartupProcess.java\\n@@ -50,21 +50,20 @@ public final class BrokerStartupProcess {\\n // must be executed before any disk space usage listeners are registered\\n result.add(new DiskSpaceUsageMonitorStep());\\n }\\n-\\n result.add(new MonitoringServerStep());\\n result.add(new BrokerAdminServiceStep());\\n+\\n result.add(new ClusterServicesCreationStep());\\n+ result.add(new ClusterServicesStep());\\n \\n result.add(new CommandApiServiceStep());\\n result.add(new SubscriptionApiStep());\\n-\\n- result.add(new ClusterServicesStep());\\n+ result.add(new LeaderManagementRequestHandlerStep());\\n \\n if (config.getGateway().isEnable()) {\\n result.add(new EmbeddedGatewayServiceStep());\\n }\\n \\n- result.add(new LeaderManagementRequestHandlerStep());\\n result.add(new PartitionManagerStep());\\n \\n return result;\\n\"]"},"concern_count":{"kind":"number","value":3,"string":"3"},"shas":{"kind":"string","value":"[\"04e70ce964b343e28b3dbd0c46d10ccda958ab8c\", \"573f87edf9bdc19c9c4c3a978fad6ed3ce788f5f\", \"3e0c4cbf91fe5efc9b93baba93e4df93ef4ab5cd\"]"},"types":{"kind":"string","value":"[\"docs\", \"build\", \"refactor\"]"}}},{"rowIdx":562,"cells":{"commit_message":{"kind":"string","value":"create mock img server,added components pages to typedoc output,selenium java 4.8.1"},"diff":{"kind":"string","value":"[\"diff --git a/scripts/gulp/tasks/test.ts b/scripts/gulp/tasks/test.ts\\nindex 8014b12..d10c1aa 100644\\n--- a/scripts/gulp/tasks/test.ts\\n+++ b/scripts/gulp/tasks/test.ts\\n@@ -26,12 +26,18 @@ task('test.imageserver', () => {\\n function handleRequest(req, res) {\\n const urlParse = url.parse(req.url, true);\\n \\n+ res.setHeader('Access-Control-Allow-Origin', '*');\\n+ res.setHeader('Access-Control-Allow-Methods', 'GET');\\n+ res.setHeader('Connection', 'keep-alive');\\n+ res.setHeader('Age', '0');\\n+ res.setHeader('cache-control', 'no-store');\\n+\\n if (urlParse.pathname === '/reset') {\\n console.log('Image Server Reset');\\n console.log('---------------------------');\\n requestedUrls.length = 0;\\n start = Date.now();\\n- res.setHeader('Access-Control-Allow-Origin', '*');\\n+ res.setHeader('Content-Type', 'text/plain');\\n res.end('reset');\\n return;\\n }\\n@@ -48,9 +54,8 @@ task('test.imageserver', () => {\\n \\n setTimeout(() => {\\n res.setHeader('Content-Type', 'image/svg+xml');\\n- res.setHeader('Access-Control-Allow-Origin', '*');\\n res.end(``);\\n }, delay);\\n\", \"diff --git a/core/main/tsconfig.json b/core/main/tsconfig.json\\nindex c4474a7..7916bc5 100644\\n--- a/core/main/tsconfig.json\\n+++ b/core/main/tsconfig.json\\n@@ -96,11 +96,35 @@\\n \\\"particles\\\": {\\n \\\"groups\\\": [\\n {\\n- \\\"title\\\": \\\"Documentation\\\",\\n+ \\\"title\\\": \\\"Components\\\",\\n \\\"pages\\\": [\\n {\\n- \\\"title\\\": \\\"My Page\\\",\\n- \\\"source\\\": \\\"./markdown/pages/index.md\\\"\\n+ \\\"title\\\": \\\"Angular\\\",\\n+ \\\"source\\\": \\\"../../components/angular/README.md\\\"\\n+ },\\n+ {\\n+ \\\"title\\\": \\\"React\\\",\\n+ \\\"source\\\": \\\"../../components/react/README.md\\\"\\n+ },\\n+ {\\n+ \\\"title\\\": \\\"Vue\\\",\\n+ \\\"source\\\": \\\"../../components/vue/README.md\\\"\\n+ },\\n+ {\\n+ \\\"title\\\": \\\"Svelte\\\",\\n+ \\\"source\\\": \\\"../../components/svelte/README.md\\\"\\n+ },\\n+ {\\n+ \\\"title\\\": \\\"jQuery\\\",\\n+ \\\"source\\\": \\\"../../components/jquery/README.md\\\"\\n+ },\\n+ {\\n+ \\\"title\\\": \\\"Preact\\\",\\n+ \\\"source\\\": \\\"../../components/preact/README.md\\\"\\n+ },\\n+ {\\n+ \\\"title\\\": \\\"Inferno\\\",\\n+ \\\"source\\\": \\\"../../components/inferno/README.md\\\"\\n }\\n ]\\n }\\n\", \"diff --git a/pom.xml b/pom.xml\\nindex f792f3c..477224a 100644\\n--- a/pom.xml\\n+++ b/pom.xml\\n@@ -60,8 +60,8 @@\\n 3.0.11\\n 2.7.0\\n 3.2.14\\n- 4.8.0\\n- 4.8.0\\n+ 4.8.1\\n+ 4.8.1\\n 1.22.0\\n 19.7.0.0\\n 3.8.0\\n\"]"},"concern_count":{"kind":"number","value":3,"string":"3"},"shas":{"kind":"string","value":"[\"32b76173a259ea1993298289b436cf10c1e800bf\", \"fca2c198c6486c4d586b1af1832be46f19667235\", \"66f907f2d6ff0956bb5215518678bc79cab83c17\"]"},"types":{"kind":"string","value":"[\"test\", \"docs\", \"build\"]"}}},{"rowIdx":563,"cells":{"commit_message":{"kind":"string","value":"reintroduce timeout for assertion\n\nThe timeout had been removed by a previous commit. Without the timeout the test might be flaky.\nAlso removed obsolete code,tests,fix typos (#90)"},"diff":{"kind":"string","value":"[\"diff --git a/engine/src/test/java/io/camunda/zeebe/engine/processing/streamprocessor/StreamProcessorReplayModeTest.java b/engine/src/test/java/io/camunda/zeebe/engine/processing/streamprocessor/StreamProcessorReplayModeTest.java\\nindex d0ee4f3..c2ab83c 100644\\n--- a/engine/src/test/java/io/camunda/zeebe/engine/processing/streamprocessor/StreamProcessorReplayModeTest.java\\n+++ b/engine/src/test/java/io/camunda/zeebe/engine/processing/streamprocessor/StreamProcessorReplayModeTest.java\\n@@ -13,6 +13,7 @@ import static io.camunda.zeebe.protocol.record.intent.ProcessInstanceIntent.ACTI\\n import static io.camunda.zeebe.protocol.record.intent.ProcessInstanceIntent.ELEMENT_ACTIVATING;\\n import static java.util.function.Predicate.isEqual;\\n import static org.assertj.core.api.Assertions.assertThat;\\n+import static org.awaitility.Awaitility.await;\\n import static org.mockito.ArgumentMatchers.any;\\n import static org.mockito.ArgumentMatchers.anyLong;\\n import static org.mockito.ArgumentMatchers.eq;\\n@@ -30,7 +31,6 @@ import io.camunda.zeebe.protocol.record.intent.ProcessInstanceIntent;\\n import io.camunda.zeebe.streamprocessor.StreamProcessor;\\n import io.camunda.zeebe.streamprocessor.StreamProcessor.Phase;\\n import io.camunda.zeebe.streamprocessor.StreamProcessorMode;\\n-import org.awaitility.Awaitility;\\n import org.junit.Rule;\\n import org.junit.Test;\\n import org.mockito.InOrder;\\n@@ -71,7 +71,7 @@ public final class StreamProcessorReplayModeTest {\\n // when\\n startStreamProcessor(replayUntilEnd);\\n \\n- Awaitility.await()\\n+ await()\\n .untilAsserted(\\n () -> assertThat(getCurrentPhase(replayUntilEnd)).isEqualTo(Phase.PROCESSING));\\n \\n@@ -163,7 +163,7 @@ public final class StreamProcessorReplayModeTest {\\n command().processInstance(ACTIVATE_ELEMENT, RECORD),\\n event().processInstance(ELEMENT_ACTIVATING, RECORD).causedBy(0));\\n \\n- Awaitility.await(\\\"should have replayed first events\\\")\\n+ await(\\\"should have replayed first events\\\")\\n .until(replayContinuously::getLastSuccessfulProcessedRecordPosition, (pos) -> pos > 0);\\n \\n // when\\n@@ -210,7 +210,7 @@ public final class StreamProcessorReplayModeTest {\\n command().processInstance(ACTIVATE_ELEMENT, RECORD),\\n event().processInstance(ELEMENT_ACTIVATING, RECORD).causedBy(0));\\n \\n- Awaitility.await(\\\"should have replayed first events\\\")\\n+ await(\\\"should have replayed first events\\\")\\n .until(replayContinuously::getLastSuccessfulProcessedRecordPosition, (pos) -> pos > 0);\\n streamProcessor.pauseProcessing().join();\\n replayContinuously.writeBatch(\\n@@ -244,7 +244,7 @@ public final class StreamProcessorReplayModeTest {\\n // then\\n verify(eventApplier, TIMEOUT).applyState(anyLong(), eq(ELEMENT_ACTIVATING), any());\\n \\n- Awaitility.await()\\n+ await()\\n .untilAsserted(\\n () -> {\\n final var lastProcessedPosition = getLastProcessedPosition(replayContinuously);\\n@@ -273,8 +273,7 @@ public final class StreamProcessorReplayModeTest {\\n \\n verify(eventApplier, TIMEOUT).applyState(anyLong(), eq(ELEMENT_ACTIVATING), any());\\n \\n- Awaitility.await()\\n- .until(() -> getLastProcessedPosition(replayContinuously), isEqual(commandPosition));\\n+ await().until(() -> getLastProcessedPosition(replayContinuously), isEqual(commandPosition));\\n \\n // then\\n assertThat(replayContinuously.getLastSuccessfulProcessedRecordPosition())\\n@@ -285,7 +284,6 @@ public final class StreamProcessorReplayModeTest {\\n @Test\\n public void shouldNotSetLastProcessedPositionIfLessThanSnapshotPosition() {\\n // given\\n- final var commandPositionBeforeSnapshot = 1L;\\n final var snapshotPosition = 2L;\\n \\n startStreamProcessor(replayContinuously);\\n@@ -298,23 +296,20 @@ public final class StreamProcessorReplayModeTest {\\n // when\\n startStreamProcessor(replayContinuously);\\n \\n- Awaitility.await()\\n+ await()\\n .untilAsserted(\\n () -> assertThat(getCurrentPhase(replayContinuously)).isEqualTo(Phase.REPLAY));\\n \\n- final var eventPosition =\\n- replayContinuously.writeEvent(\\n- ELEMENT_ACTIVATING,\\n- RECORD,\\n- writer -> writer.sourceRecordPosition(commandPositionBeforeSnapshot));\\n-\\n // then\\n final var lastProcessedPositionState = replayContinuously.getLastProcessedPositionState();\\n \\n- assertThat(lastProcessedPositionState.getLastSuccessfulProcessedRecordPosition())\\n- .describedAs(\\n- \\\"Expected that the last processed position is not less than the snapshot position\\\")\\n- .isEqualTo(snapshotPosition);\\n+ await()\\n+ .untilAsserted(\\n+ () ->\\n+ assertThat(lastProcessedPositionState.getLastSuccessfulProcessedRecordPosition())\\n+ .describedAs(\\n+ \\\"Expected that the last processed position is not less than the snapshot position\\\")\\n+ .isEqualTo(snapshotPosition));\\n }\\n \\n private StreamProcessor startStreamProcessor(final StreamProcessorRule streamProcessorRule) {\\n\", \"diff --git a/client/src/components/Profile/__test__/EducationCard.test.tsx b/client/src/components/Profile/__test__/EducationCard.test.tsx\\nindex 44b6e00..14539dd 100644\\n--- a/client/src/components/Profile/__test__/EducationCard.test.tsx\\n+++ b/client/src/components/Profile/__test__/EducationCard.test.tsx\\n@@ -53,7 +53,7 @@ describe('EducationCard', () => {\\n });\\n \\n describe('filterPermissions', () => {\\n- it('should left only contacts in \\\"permissionsSettings\\\" object', () => {\\n+ it('should left only \\\"isEducationVisible\\\" in \\\"permissionsSettings\\\" object', () => {\\n const permissionsSettings = {\\n isProfileVisible: { all: true },\\n isAboutVisible: { all: true, mentor: true, student: true },\\ndiff --git a/client/src/components/Profile/__test__/MainCard.test.tsx b/client/src/components/Profile/__test__/MainCard.test.tsx\\nindex 8fb2840..552804b 100644\\n--- a/client/src/components/Profile/__test__/MainCard.test.tsx\\n+++ b/client/src/components/Profile/__test__/MainCard.test.tsx\\n@@ -3,6 +3,8 @@ import { shallow } from 'enzyme';\\n import { shallowToJson } from 'enzyme-to-json';\\n import MainCard from '../MainCard';\\n \\n+// TODO: Known Issue: https://stackoverflow.com/questions/59942808/how-can-i-use-jest-coverage-in-next-js-styled-jsx\\n+\\n describe('MainCard', () => {\\n describe('Should render correctly', () => {\\n it('if is editing mode disabled', () => {\\n@@ -21,49 +23,89 @@ describe('MainCard', () => {\\n );\\n expect(shallowToJson(output)).toMatchSnapshot();\\n });\\n+ it('if is editing mode enabled', () => {\\n+ const output = shallow(\\n+ {}}\\n+ onProfileSettingsChange={() => {}}\\n+ />,\\n+ );\\n+ expect(shallowToJson(output)).toMatchSnapshot();\\n+ });\\n });\\n \\n- // const wrapper = shallow(\\n- // {}}\\n- // onProfileSettingsChange={() => {}}\\n- // />);\\n- // const instance = wrapper.instance();\\n- // describe('showVisibilitySettings', () => {\\n- // it('should set \\\"state.isVisibilitySettingsVisible\\\" as \\\"true\\\"', () => {\\n- // expect(instance.state.isVisibilitySettingsVisible).toBe(false);\\n- // instance.showVisibilitySettings();\\n- // expect(instance.state.isVisibilitySettingsVisible).toBe(true);\\n- // });\\n- // });\\n- // describe('hideVisibilitySettings', () => {\\n- // it('should set \\\"state.isVisibilitySettingsVisible\\\" as \\\"false\\\"', () => {\\n- // instance.state.isVisibilitySettingsVisible = true;\\n- // expect(instance.state.isVisibilitySettingsVisible).toBe(true);\\n- // instance.hideVisibilitySettings();\\n- // expect(instance.state.isVisibilitySettingsVisible).toBe(false);\\n- // });\\n- // });\\n- // describe('showProfileSettings', () => {\\n- // it('should set \\\"state.isProfileSettingsVisible\\\" as \\\"true\\\"', () => {\\n- // expect(instance.state.isProfileSettingsVisible).toBe(false);\\n- // instance.showProfileSettings();\\n- // expect(instance.state.isProfileSettingsVisible).toBe(true);\\n- // });\\n- // });\\n- // describe('hideProfileSettings', () => {\\n- // it('should set \\\"state.isProfileSettingsVisible\\\" as \\\"false\\\"', () => {\\n- // instance.state.isProfileSettingsVisible = true;\\n- // expect(instance.state.isProfileSettingsVisible).toBe(true);\\n- // instance.hideProfileSettings();\\n- // expect(instance.state.isProfileSettingsVisible).toBe(false);\\n- // });\\n- // });\\n+ const wrapper = shallow(\\n+ {}}\\n+ onProfileSettingsChange={() => {}}\\n+ />);\\n+ const instance = wrapper.instance();\\n+ describe('showVisibilitySettings', () => {\\n+ it('should set \\\"state.isVisibilitySettingsVisible\\\" as \\\"true\\\"', () => {\\n+ expect(instance.state.isVisibilitySettingsVisible).toBe(false);\\n+ instance.showVisibilitySettings();\\n+ expect(instance.state.isVisibilitySettingsVisible).toBe(true);\\n+ });\\n+ });\\n+ describe('hideVisibilitySettings', () => {\\n+ it('should set \\\"state.isVisibilitySettingsVisible\\\" as \\\"false\\\"', () => {\\n+ instance.state.isVisibilitySettingsVisible = true;\\n+ expect(instance.state.isVisibilitySettingsVisible).toBe(true);\\n+ instance.hideVisibilitySettings();\\n+ expect(instance.state.isVisibilitySettingsVisible).toBe(false);\\n+ });\\n+ });\\n+ describe('showProfileSettings', () => {\\n+ it('should set \\\"state.isProfileSettingsVisible\\\" as \\\"true\\\"', () => {\\n+ expect(instance.state.isProfileSettingsVisible).toBe(false);\\n+ instance.showProfileSettings();\\n+ expect(instance.state.isProfileSettingsVisible).toBe(true);\\n+ });\\n+ });\\n+ describe('hideProfileSettings', () => {\\n+ it('should set \\\"state.isProfileSettingsVisible\\\" as \\\"false\\\"', () => {\\n+ instance.state.isProfileSettingsVisible = true;\\n+ expect(instance.state.isProfileSettingsVisible).toBe(true);\\n+ instance.hideProfileSettings();\\n+ expect(instance.state.isProfileSettingsVisible).toBe(false);\\n+ });\\n+ });\\n+ describe('filterPermissions', () => {\\n+ it('should left only \\\"isProfileVisible\\\" in \\\"permissionsSettings\\\" object', () => {\\n+ const permissionsSettings = {\\n+ isProfileVisible: { all: true },\\n+ isAboutVisible: { all: true, mentor: true, student: true },\\n+ isEducationVisible: { all: true, mentor: true, student: true },\\n+ isEnglishVisible: { all: false, student: false },\\n+ isEmailVisible: { all: true, student: true },\\n+ isTelegramVisible: { all: false, student: false },\\n+ isSkypeVisible: { all: true, student: true },\\n+ isPhoneVisible: { all: false, student: false },\\n+ isContactsNotesVisible: { all: true, student: true },\\n+ isLinkedInVisible: { all: false, mentor: false, student: false },\\n+ isPublicFeedbackVisible: { all: true, mentor: true, student: true },\\n+ isMentorStatsVisible: { all: true, mentor: true, student: true },\\n+ isStudentStatsVisible: { all: true, student: true },\\n+ };\\n+ const instance = wrapper.instance();\\n+ const result = instance.filterPermissions(permissionsSettings);\\n+ expect(result).toEqual({\\n+ isProfileVisible: { all: true },\\n+ });\\n+ });\\n+ });\\n });\\ndiff --git a/client/src/components/Profile/__test__/__snapshots__/MainCard.test.tsx.snap b/client/src/components/Profile/__test__/__snapshots__/MainCard.test.tsx.snap\\nindex 40331eb..fef20dd 100644\\n--- a/client/src/components/Profile/__test__/__snapshots__/MainCard.test.tsx.snap\\n+++ b/client/src/components/Profile/__test__/__snapshots__/MainCard.test.tsx.snap\\n@@ -71,3 +71,158 @@ exports[`MainCard Should render correctly if is editing mode disabled 1`] = `\\n \\n \\n `;\\n+\\n+exports[`MainCard Should render correctly if is editing mode enabled 1`] = `\\n+\\n+ ,\\n+ ,\\n+ ]\\n+ }\\n+ >\\n+ \\n+ \\n+ Petr Pervyi\\n+ \\n+ \\n+ \\n+ \\n+ \\n+ piter\\n+ \\n+ \\n+ \\n+ \\n+ \\n+ \\n+ SPB\\n+ \\n+ \\n+ \\n+ \\n+ \\n+ \\n+ Name:\\n+ \\n+
\\n+ \\n+ \\n+
\\n+ \\n+ \\n+ Location:\\n+ \\n+
\\n+ \\n+ \\n+
\\n+ \\n+ }\\n+ hideSettings={[Function]}\\n+ isSettingsVisible={false}\\n+ />\\n+ \\n+\\n+`;\\ndiff --git a/client/src/jest.config.js b/client/src/jest.config.js\\nindex df39788..654f9f3 100644\\n--- a/client/src/jest.config.js\\n+++ b/client/src/jest.config.js\\n@@ -7,4 +7,5 @@ module.exports = {\\n '^services(.*)$': '/services/$1',\\n '^utils(.*)$': '/utils/$1',\\n },\\n+ verbose: true,\\n };\\n\", \"diff --git a/README.md b/README.md\\nindex de15ac5..5ad8b47 100755\\n--- a/README.md\\n+++ b/README.md\\n@@ -16,13 +16,13 @@ content that will be loaded, similar to Facebook cards loaders.\\n \\n ## Features\\n \\n-* :gear: **Complety customizable:** you can change the colors, speed and sizes;\\n+* :gear: **Completely customizable:** you can change the colors, speed and sizes;\\n * :pencil2: **Create your own loading:** use the\\n [create-react-content-loader](https://danilowoz.github.io/create-react-content-loader/) to create\\n- your customs loadings easily;\\n+ your custom loadings easily;\\n * :ok_hand: **You can use right now:** there are a lot of presets to use the loader, see the\\n [options](#options);\\n-* :rocket: **Perfomance:** react-content-loader uses pure SVG to work, so it's works without any extra scritpt,\\n+* :rocket: **Performance:** react-content-loader uses pure SVG to work, so it works without any extra scripts,\\n canvas, etc;\\n \\n ## Usage\\n\"]"},"concern_count":{"kind":"number","value":3,"string":"3"},"shas":{"kind":"string","value":"[\"0d23f1b3ed22e615b9611bb4eae01d2241e64dff\", \"f87659953e9af59bc7cb314a22dd076d988ef607\", \"88257ee720ed8ba136d49087c0d31373e8397dd5\"]"},"types":{"kind":"string","value":"[\"refactor\", \"test\", \"docs\"]"}}},{"rowIdx":564,"cells":{"commit_message":{"kind":"string","value":"fix `memtable` docstrings,add test for clickhouse-specific `create_table` parameters,add classname and style props for Playground"},"diff":{"kind":"string","value":"[\"diff --git a/ibis/expr/api.py b/ibis/expr/api.py\\nindex 93fabaa..66a2ea9 100644\\n--- a/ibis/expr/api.py\\n+++ b/ibis/expr/api.py\\n@@ -403,15 +403,21 @@ def memtable(\\n >>> import ibis\\n >>> t = ibis.memtable([{\\\"a\\\": 1}, {\\\"a\\\": 2}])\\n >>> t\\n+ PandasInMemoryTable\\n+ data:\\n+ DataFrameProxy:\\n+ a\\n+ 0 1\\n+ 1 2\\n \\n >>> t = ibis.memtable([{\\\"a\\\": 1, \\\"b\\\": \\\"foo\\\"}, {\\\"a\\\": 2, \\\"b\\\": \\\"baz\\\"}])\\n >>> t\\n PandasInMemoryTable\\n data:\\n- ((1, 'foo'), (2, 'baz'))\\n- schema:\\n- a int8\\n- b string\\n+ DataFrameProxy:\\n+ a b\\n+ 0 1 foo\\n+ 1 2 baz\\n \\n Create a table literal without column names embedded in the data and pass\\n `columns`\\n@@ -420,10 +426,22 @@ def memtable(\\n >>> t\\n PandasInMemoryTable\\n data:\\n- ((1, 'foo'), (2, 'baz'))\\n- schema:\\n- a int8\\n- b string\\n+ DataFrameProxy:\\n+ a b\\n+ 0 1 foo\\n+ 1 2 baz\\n+\\n+ Create a table literal without column names embedded in the data. Ibis\\n+ generates column names if none are provided.\\n+\\n+ >>> t = ibis.memtable([(1, \\\"foo\\\"), (2, \\\"baz\\\")])\\n+ >>> t\\n+ PandasInMemoryTable\\n+ data:\\n+ DataFrameProxy:\\n+ col0 col1\\n+ 0 1 foo\\n+ 1 2 baz\\n \\\"\\\"\\\"\\n if columns is not None and schema is not None:\\n raise NotImplementedError(\\n\", \"diff --git a/ibis/backends/clickhouse/tests/test_client.py b/ibis/backends/clickhouse/tests/test_client.py\\nindex 678683d..c4e2aec 100644\\n--- a/ibis/backends/clickhouse/tests/test_client.py\\n+++ b/ibis/backends/clickhouse/tests/test_client.py\\n@@ -224,6 +224,21 @@ def test_create_table_data(con, data, engine, temp_table):\\n assert len(t.execute()) == 3\\n \\n \\n+def test_create_table_with_properties(con, temp_table):\\n+ data = pd.DataFrame({\\\"a\\\": list(\\\"abcde\\\" * 20), \\\"b\\\": [1, 2, 3, 4, 5] * 20})\\n+ n = len(data)\\n+ t = con.create_table(\\n+ temp_table,\\n+ data,\\n+ schema=ibis.schema(dict(a=\\\"string\\\", b=\\\"!uint32\\\")),\\n+ order_by=[\\\"a\\\", \\\"b\\\"],\\n+ partition_by=[\\\"a\\\"],\\n+ sample_by=[\\\"b\\\"],\\n+ settings={\\\"allow_nullable_key\\\": \\\"1\\\"},\\n+ )\\n+ assert t.count().execute() == n\\n+\\n+\\n @pytest.mark.parametrize(\\n \\\"engine\\\",\\n [\\n\", \"diff --git a/packages/docz-theme-default/src/components/ui/Render.tsx b/packages/docz-theme-default/src/components/ui/Render.tsx\\nindex 197359b..943f9ab 100644\\n--- a/packages/docz-theme-default/src/components/ui/Render.tsx\\n+++ b/packages/docz-theme-default/src/components/ui/Render.tsx\\n@@ -24,9 +24,16 @@ const Code = styled('div')`\\n }\\n `\\n \\n-export const Render: RenderComponent = ({ component, code }) => (\\n+export const Render: RenderComponent = ({\\n+ component,\\n+ code,\\n+ className,\\n+ style,\\n+}) => (\\n \\n- {component}\\n+ \\n+ {component}\\n+ \\n {code}
\\n \\n )\\ndiff --git a/packages/docz/src/components/DocPreview.tsx b/packages/docz/src/components/DocPreview.tsx\\nindex ca2d88f..ee8f7c0 100644\\n--- a/packages/docz/src/components/DocPreview.tsx\\n+++ b/packages/docz/src/components/DocPreview.tsx\\n@@ -16,6 +16,8 @@ const DefaultLoading: SFC = () => null\\n export type RenderComponent = ComponentType<{\\n component: JSX.Element\\n code: any\\n+ className?: string\\n+ style?: any\\n }>\\n \\n export const DefaultRender: RenderComponent = ({ component, code }) => (\\ndiff --git a/packages/docz/src/components/Playground.tsx b/packages/docz/src/components/Playground.tsx\\nindex d6ff5a3..418c82e 100644\\n--- a/packages/docz/src/components/Playground.tsx\\n+++ b/packages/docz/src/components/Playground.tsx\\n@@ -9,15 +9,21 @@ export interface PlaygroundProps {\\n __code: (components: ComponentsMap) => any\\n children: any\\n components: ComponentsMap\\n+ className?: string\\n+ style?: any\\n }\\n \\n const BasePlayground: SFC = ({\\n components,\\n children,\\n __code,\\n+ className,\\n+ style,\\n }) => {\\n return components && components.render ? (\\n \\n\"]"},"concern_count":{"kind":"number","value":3,"string":"3"},"shas":{"kind":"string","value":"[\"72bc0f5172c0a3d17bde29cfc00db4c60d2fee3a\", \"7e1ece7d3fd41d1e3ee38e479c119494bb269966\", \"1b64ed30a2e3c41abf3976efee4c7463044b2ef1\"]"},"types":{"kind":"string","value":"[\"docs\", \"test\", \"feat\"]"}}},{"rowIdx":565,"cells":{"commit_message":{"kind":"string","value":"Deploy utilities from correct folder\n\nSigned-off-by: rjshrjndrn ,add canonical `_name` to edge packages,implement array flatten support"},"diff":{"kind":"string","value":"[\"diff --git a/.github/workflows/utilities.yaml b/.github/workflows/utilities.yaml\\nindex 92e130c..afbc850 100644\\n--- a/.github/workflows/utilities.yaml\\n+++ b/.github/workflows/utilities.yaml\\n@@ -43,7 +43,7 @@ jobs:\\n PUSH_IMAGE=1 bash build.sh\\n - name: Deploy to kubernetes\\n run: |\\n- cd scripts/helm/\\n+ cd scripts/helmcharts/\\n sed -i \\\"s#openReplayContainerRegistry.*#openReplayContainerRegistry: \\\\\\\"${{ secrets.OSS_REGISTRY_URL }}\\\\\\\"#g\\\" vars.yaml\\n sed -i \\\"s#minio_access_key.*#minio_access_key: \\\\\\\"${{ secrets.OSS_MINIO_ACCESS_KEY }}\\\\\\\" #g\\\" vars.yaml\\n sed -i \\\"s#minio_secret_key.*#minio_secret_key: \\\\\\\"${{ secrets.OSS_MINIO_SECRET_KEY }}\\\\\\\" #g\\\" vars.yaml\\n\", \"diff --git a/scripts/bump-edge.ts b/scripts/bump-edge.ts\\nindex e92e3c9..0b7a11a 100644\\n--- a/scripts/bump-edge.ts\\n+++ b/scripts/bump-edge.ts\\n@@ -53,6 +53,7 @@ async function loadWorkspace (dir: string) {\\n }\\n \\n const rename = (from: string, to: string) => {\\n+ find(from).data._name = find(from).data.name\\n find(from).data.name = to\\n for (const pkg of packages) {\\n pkg.updateDeps((dep) => {\\n\", \"diff --git a/ibis/backends/snowflake/registry.py b/ibis/backends/snowflake/registry.py\\nindex 2373dd7..4ce03b0 100644\\n--- a/ibis/backends/snowflake/registry.py\\n+++ b/ibis/backends/snowflake/registry.py\\n@@ -422,6 +422,7 @@ operation_registry.update(\\n ops.ArrayZip: _array_zip,\\n ops.ArraySort: unary(sa.func.array_sort),\\n ops.ArrayRepeat: fixed_arity(sa.func.ibis_udfs.public.array_repeat, 2),\\n+ ops.ArrayFlatten: fixed_arity(sa.func.array_flatten, 1),\\n ops.StringSplit: fixed_arity(sa.func.split, 2),\\n # snowflake typeof only accepts VARIANT, so we cast\\n ops.TypeOf: unary(lambda arg: sa.func.typeof(sa.func.to_variant(arg))),\\n\"]"},"concern_count":{"kind":"number","value":3,"string":"3"},"shas":{"kind":"string","value":"[\"2ebf04099353ef70395b8c8f5e130f70e1ed0814\", \"573f87edf9bdc19c9c4c3a978fad6ed3ce788f5f\", \"d3c754f09502be979e5dcc79f968b15052590bd0\"]"},"types":{"kind":"string","value":"[\"ci\", \"build\", \"feat\"]"}}},{"rowIdx":566,"cells":{"commit_message":{"kind":"string","value":"Use arm64v8 postfix for Cube Store :dev build,fix build,101: fix import key cmd\n\nSigned-off-by: Sam Alba "},"diff":{"kind":"string","value":"[\"diff --git a/.github/workflows/rust-cubestore-master.yml b/.github/workflows/rust-cubestore-master.yml\\nindex 4a84984..bb07cd7 100644\\n--- a/.github/workflows/rust-cubestore-master.yml\\n+++ b/.github/workflows/rust-cubestore-master.yml\\n@@ -115,9 +115,9 @@ jobs:\\n if [[ $VERSION =~ ^v[0-9]{1,3}\\\\.[0-9]{1,3}\\\\.[0-9]{1,3}$ ]]; then\\n MINOR=${VERSION%.*}\\n MAJOR=${MINOR%.*}\\n- TAGS=\\\"$TAGS,${DOCKER_IMAGE}:${MINOR},${DOCKER_IMAGE}:${MAJOR},${DOCKER_IMAGE}:latest\\\"\\n+ TAGS=\\\"$TAGS,${DOCKER_IMAGE}:${MINOR},${DOCKER_IMAGE}:${MAJOR}\\\"\\n elif [ \\\"${{ github.event_name }}\\\" = \\\"push\\\" ]; then\\n- TAGS=\\\"$TAGS,${DOCKER_IMAGE}:build-1${GITHUB_RUN_NUMBER}\\\"\\n+ TAGS=\\\"$TAGS,${DOCKER_IMAGE}:build-1${GITHUB_RUN_NUMBER}${{ matrix.postfix }}\\\"\\n fi\\n \\n echo ::set-output name=version::${VERSION}\\n\", \"diff --git a/server/Dockerfile b/server/Dockerfile\\nindex 2f203bb..a84c31e 100755\\n--- a/server/Dockerfile\\n+++ b/server/Dockerfile\\n@@ -9,9 +9,11 @@ ENV TZ utc\\n WORKDIR /src\\n \\n COPY package.json /src\\n+COPY package-lock.json /src\\n+COPY tsconfig.json /src\\n RUN npm install --production --no-optional\\n \\n COPY public /src/public\\n COPY dist /src\\n \\n-CMD [ \\\"node\\\", \\\"./server/index.js\\\" ]\\n+CMD [ \\\"node\\\", \\\"-r\\\", \\\"tsconfig-paths/register\\\", \\\"./server/index.js\\\" ]\\ndiff --git a/server/package-lock.json b/server/package-lock.json\\nindex 6cacfa2..236f1bb 100644\\n--- a/server/package-lock.json\\n+++ b/server/package-lock.json\\n@@ -2164,8 +2164,7 @@\\n \\\"@types/json5\\\": {\\n \\\"version\\\": \\\"0.0.29\\\",\\n \\\"resolved\\\": \\\"https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz\\\",\\n- \\\"integrity\\\": \\\"sha1-7ihweulOEdK4J7y+UnC86n8+ce4=\\\",\\n- \\\"dev\\\": true\\n+ \\\"integrity\\\": \\\"sha1-7ihweulOEdK4J7y+UnC86n8+ce4=\\\"\\n },\\n \\\"@types/jsonwebtoken\\\": {\\n \\\"version\\\": \\\"8.3.5\\\",\\n@@ -9246,8 +9245,7 @@\\n \\\"strip-bom\\\": {\\n \\\"version\\\": \\\"3.0.0\\\",\\n \\\"resolved\\\": \\\"https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz\\\",\\n- \\\"integrity\\\": \\\"sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=\\\",\\n- \\\"dev\\\": true\\n+ \\\"integrity\\\": \\\"sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=\\\"\\n },\\n \\\"strip-final-newline\\\": {\\n \\\"version\\\": \\\"2.0.0\\\",\\n@@ -9524,7 +9522,6 @@\\n \\\"version\\\": \\\"3.9.0\\\",\\n \\\"resolved\\\": \\\"https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz\\\",\\n \\\"integrity\\\": \\\"sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==\\\",\\n- \\\"dev\\\": true,\\n \\\"requires\\\": {\\n \\\"@types/json5\\\": \\\"^0.0.29\\\",\\n \\\"json5\\\": \\\"^1.0.1\\\",\\n@@ -9536,7 +9533,6 @@\\n \\\"version\\\": \\\"1.0.1\\\",\\n \\\"resolved\\\": \\\"https://registry.npmjs.org/json5/-/json5-1.0.1.tgz\\\",\\n \\\"integrity\\\": \\\"sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==\\\",\\n- \\\"dev\\\": true,\\n \\\"requires\\\": {\\n \\\"minimist\\\": \\\"^1.2.0\\\"\\n }\\n@@ -9544,8 +9540,7 @@\\n \\\"minimist\\\": {\\n \\\"version\\\": \\\"1.2.5\\\",\\n \\\"resolved\\\": \\\"https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz\\\",\\n- \\\"integrity\\\": \\\"sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==\\\",\\n- \\\"dev\\\": true\\n+ \\\"integrity\\\": \\\"sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==\\\"\\n }\\n }\\n },\\ndiff --git a/server/package.json b/server/package.json\\nindex 35426e9..896e9b3 100644\\n--- a/server/package.json\\n+++ b/server/package.json\\n@@ -41,6 +41,7 @@\\n \\\"pino-cloudwatch\\\": \\\"0.7.0\\\",\\n \\\"pino-multi-stream\\\": \\\"4.2.0\\\",\\n \\\"reflect-metadata\\\": \\\"0.1.13\\\",\\n+ \\\"tsconfig-paths\\\": \\\"3.9.0\\\",\\n \\\"typeorm\\\": \\\"0.2.37\\\"\\n },\\n \\\"devDependencies\\\": {\\n@@ -69,7 +70,6 @@\\n \\\"pino-pretty\\\": \\\"3.6.1\\\",\\n \\\"ts-jest\\\": \\\"27.0.7\\\",\\n \\\"ts-node-dev\\\": \\\"1.1.8\\\",\\n- \\\"tsconfig-paths\\\": \\\"3.9.0\\\",\\n \\\"typescript\\\": \\\"4.3.5\\\"\\n },\\n \\\"jest-junit\\\": {\\n\", \"diff --git a/docs/learn/101-use.md b/docs/learn/101-use.md\\nindex 283c1c1..2ec10f9 100644\\n--- a/docs/learn/101-use.md\\n+++ b/docs/learn/101-use.md\\n@@ -41,8 +41,7 @@ cd ./examples/todoapp\\n The example app contains encrypted secrets and other pre-configured inputs, here is how to decrypt them:\\n \\n ```sh\\n-curl -sfL https://releases.dagger.io/examples/key.txt >> ~/.config/dagger/keys.txt\\n-dagger input list\\n+dagger input list || curl -sfL https://releases.dagger.io/examples/key.txt >> ~/.config/dagger/keys.txt\\n ```\\n \\n **Step 4**: Deploy!\\n\"]"},"concern_count":{"kind":"number","value":3,"string":"3"},"shas":{"kind":"string","value":"[\"10bdcb452ff9d2b884d45a9c43a4b8a20fc4a883\", \"a827777f41e90b6332c191d05bae8db525de6f38\", \"2b01808ec86fe9d8b4a93141a1b7f95e11fd6010\"]"},"types":{"kind":"string","value":"[\"ci\", \"build\", \"docs\"]"}}},{"rowIdx":567,"cells":{"commit_message":{"kind":"string","value":"post installers compatiblity with Windows #2520,get ip from forwarded header,create mock img server"},"diff":{"kind":"string","value":"[\"diff --git a/packages/cubejs-databricks-jdbc-driver/package.json b/packages/cubejs-databricks-jdbc-driver/package.json\\nindex cc164f0..fd7ad45 100644\\n--- a/packages/cubejs-databricks-jdbc-driver/package.json\\n+++ b/packages/cubejs-databricks-jdbc-driver/package.json\\n@@ -14,13 +14,16 @@\\n },\\n \\\"main\\\": \\\"dist/src/index.js\\\",\\n \\\"typings\\\": \\\"dist/src/index.d.ts\\\",\\n+ \\\"bin\\\": {\\n+ \\\"databricks-jdbc-installer\\\": \\\"bin/post-install\\\"\\n+ },\\n \\\"scripts\\\": {\\n \\\"build\\\": \\\"rm -rf dist && npm run tsc\\\",\\n \\\"tsc\\\": \\\"tsc\\\",\\n \\\"watch\\\": \\\"tsc -w\\\",\\n \\\"lint\\\": \\\"eslint src/* --ext .ts\\\",\\n \\\"lint:fix\\\": \\\"eslint --fix src/* --ext .ts\\\",\\n- \\\"postinstall\\\": \\\"bin/post-install\\\"\\n+ \\\"postinstall\\\": \\\"databricks-jdbc-installer\\\"\\n },\\n \\\"files\\\": [\\n \\\"README.md\\\",\\ndiff --git a/rust/package.json b/rust/package.json\\nindex b139279..5bf6446 100644\\n--- a/rust/package.json\\n+++ b/rust/package.json\\n@@ -8,7 +8,8 @@\\n \\\"node\\\": \\\">=10.8.0\\\"\\n },\\n \\\"bin\\\": {\\n- \\\"cubestore-dev\\\": \\\"bin/cubestore-dev\\\"\\n+ \\\"cubestore-dev\\\": \\\"bin/cubestore-dev\\\",\\n+ \\\"cubestore-installer\\\": \\\"bin/post-install\\\"\\n },\\n \\\"scripts\\\": {\\n \\\"build\\\": \\\"rm -rf dist && npm run tsc\\\",\\n@@ -18,7 +19,7 @@\\n \\\"lint:fix\\\": \\\"eslint --fix js-wrapper/* --ext .ts,js\\\",\\n \\\"unit\\\": \\\"jest\\\",\\n \\\"unit:debug\\\": \\\"jest --runInBand\\\",\\n- \\\"postinstall\\\": \\\"bin/post-install\\\"\\n+ \\\"postinstall\\\": \\\"cubestore-installer\\\"\\n },\\n \\\"files\\\": [\\n \\\"dist\\\",\\ndiff --git a/yarn.lock b/yarn.lock\\nindex d2a4038..b59bb77 100644\\n--- a/yarn.lock\\n+++ b/yarn.lock\\n@@ -4036,9 +4036,9 @@\\n integrity sha512-7btbphLrKvo5yl/5CC2OCxUSMx1wV1wvGT1qDXkSt7yi00/YW7E8k6qzXqJHsp+WU0eoG7r6MTQQXI9lIvd0qA==\\n \\n \\\"@types/fs-extra@^9.0.1\\\", \\\"@types/fs-extra@^9.0.2\\\", \\\"@types/fs-extra@^9.0.8\\\":\\n- version \\\"9.0.10\\\"\\n- resolved \\\"https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.10.tgz#8023a72e3d06cf54929ea47ec7634e47f33f4046\\\"\\n- integrity sha512-O9T2LLkRDiTlalOBdjEkcnT0MRdT2+wglCl7pJUJ3mkWkR8hX4K+5bg2raQNJcLv4V8zGuTXe7Ud3wSqkTyuyQ==\\n+ version \\\"9.0.11\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.11.tgz#8cc99e103499eab9f347dbc6ca4e99fb8d2c2b87\\\"\\n+ integrity sha512-mZsifGG4QeQ7hlkhO56u7zt/ycBgGxSVsFI/6lGTU34VtwkiqrrSDgw0+ygs8kFGWcXnFQWMrzF2h7TtDFNixA==\\n dependencies:\\n \\\"@types/node\\\" \\\"*\\\"\\n \\n@@ -5306,9 +5306,9 @@ acorn@^7.0.0, acorn@^7.1.0, acorn@^7.1.1, acorn@^7.4.0:\\n integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==\\n \\n acorn@^8.1.0:\\n- version \\\"8.1.0\\\"\\n- resolved \\\"https://registry.yarnpkg.com/acorn/-/acorn-8.1.0.tgz#52311fd7037ae119cbb134309e901aa46295b3fe\\\"\\n- integrity sha512-LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA==\\n+ version \\\"8.1.1\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/acorn/-/acorn-8.1.1.tgz#fb0026885b9ac9f48bac1e185e4af472971149ff\\\"\\n+ integrity sha512-xYiIVjNuqtKXMxlRMDc6mZUhXehod4a3gbZ1qRlM7icK4EbxUFNLhWoPblCvFtB2Y9CIqHP3CF/rdxLItaQv8g==\\n \\n adal-node@^0.1.28:\\n version \\\"0.1.28\\\"\\n@@ -5441,9 +5441,9 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.12.3, ajv@^6.12.4, ajv\\n uri-js \\\"^4.2.2\\\"\\n \\n ajv@^8.0.1:\\n- version \\\"8.0.5\\\"\\n- resolved \\\"https://registry.yarnpkg.com/ajv/-/ajv-8.0.5.tgz#f07d6fdeffcdbb80485570ce3f1bc845fcc812b9\\\"\\n- integrity sha512-RkiLa/AeJx7+9OvniQ/qeWu0w74A8DiPPBclQ6ji3ZQkv5KamO+QGpqmi7O4JIw3rHGUXZ6CoP9tsAkn3gyazg==\\n+ version \\\"8.1.0\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/ajv/-/ajv-8.1.0.tgz#45d5d3d36c7cdd808930cc3e603cf6200dbeb736\\\"\\n+ integrity sha512-B/Sk2Ix7A36fs/ZkuGLIR86EdjbgR6fsAcbx9lOP/QBSXujDNbVmIS/U4Itz5k8fPFDeVZl/zQ/gJW4Jrq6XjQ==\\n dependencies:\\n fast-deep-equal \\\"^3.1.1\\\"\\n json-schema-traverse \\\"^1.0.0\\\"\\n@@ -6828,15 +6828,15 @@ browserslist@4.14.2:\\n node-releases \\\"^1.1.61\\\"\\n \\n browserslist@^4.0.0, browserslist@^4.11.1, browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.16.3, browserslist@^4.3.4, browserslist@^4.6.2, browserslist@^4.6.4, browserslist@^4.7.0, browserslist@^4.9.1:\\n- version \\\"4.16.3\\\"\\n- resolved \\\"https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.3.tgz#340aa46940d7db878748567c5dea24a48ddf3717\\\"\\n- integrity sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==\\n+ version \\\"4.16.4\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.4.tgz#7ebf913487f40caf4637b892b268069951c35d58\\\"\\n+ integrity sha512-d7rCxYV8I9kj41RH8UKYnvDYCRENUlHRgyXy/Rhr/1BaeLGfiCptEdFE8MIrvGfWbBFNjVYx76SQWvNX1j+/cQ==\\n dependencies:\\n- caniuse-lite \\\"^1.0.30001181\\\"\\n- colorette \\\"^1.2.1\\\"\\n- electron-to-chromium \\\"^1.3.649\\\"\\n+ caniuse-lite \\\"^1.0.30001208\\\"\\n+ colorette \\\"^1.2.2\\\"\\n+ electron-to-chromium \\\"^1.3.712\\\"\\n escalade \\\"^3.1.1\\\"\\n- node-releases \\\"^1.1.70\\\"\\n+ node-releases \\\"^1.1.71\\\"\\n \\n bs-logger@0.x:\\n version \\\"0.2.6\\\"\\n@@ -7217,7 +7217,7 @@ caniuse-api@^3.0.0:\\n lodash.memoize \\\"^4.1.2\\\"\\n lodash.uniq \\\"^4.5.0\\\"\\n \\n-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001032, caniuse-lite@^1.0.30001061, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001181:\\n+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001032, caniuse-lite@^1.0.30001061, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001208:\\n version \\\"1.0.30001208\\\"\\n resolved \\\"https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001208.tgz#a999014a35cebd4f98c405930a057a0d75352eb9\\\"\\n integrity sha512-OE5UE4+nBOro8Dyvv0lfx+SRtfVIOM9uhKqFmJeUbGriqhhStgp1A0OyBpgy3OUF8AhYCT+PVwPC1gMl2ZcQMA==\\n@@ -9549,10 +9549,10 @@ ejs@^2.6.1:\\n resolved \\\"https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba\\\"\\n integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==\\n \\n-electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.649:\\n- version \\\"1.3.711\\\"\\n- resolved \\\"https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.711.tgz#92c3caf7ffed5e18bf63f66b4b57b4db2409c450\\\"\\n- integrity sha512-XbklBVCDiUeho0PZQCjC25Ha6uBwqqJeyDhPLwLwfWRAo4x+FZFsmu1pPPkXT+B4MQMQoQULfyaMltDopfeiHQ==\\n+electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.712:\\n+ version \\\"1.3.712\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.712.tgz#ae467ffe5f95961c6d41ceefe858fc36eb53b38f\\\"\\n+ integrity sha512-3kRVibBeCM4vsgoHHGKHmPocLqtFAGTrebXxxtgKs87hNUzXrX2NuS3jnBys7IozCnw7viQlozxKkmty2KNfrw==\\n \\n elegant-spinner@^1.0.1:\\n version \\\"1.0.1\\\"\\n@@ -9945,9 +9945,9 @@ eslint-plugin-import@^2.16.0, eslint-plugin-import@^2.18.2, eslint-plugin-import\\n tsconfig-paths \\\"^3.9.0\\\"\\n \\n eslint-plugin-jest@^24.1.0:\\n- version \\\"24.3.4\\\"\\n- resolved \\\"https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.3.4.tgz#6d90c3554de0302e879603dd6405474c98849f19\\\"\\n- integrity sha512-3n5oY1+fictanuFkTWPwSlehugBTAgwLnYLFsCllzE3Pl1BwywHl5fL0HFxmMjoQY8xhUDk8uAWc3S4JOHGh3A==\\n+ version \\\"24.3.5\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.3.5.tgz#71f0b580f87915695c286c3f0eb88cf23664d044\\\"\\n+ integrity sha512-XG4rtxYDuJykuqhsOqokYIR84/C8pRihRtEpVskYLbIIKGwPNW2ySxdctuVzETZE+MbF/e7wmsnbNVpzM0rDug==\\n dependencies:\\n \\\"@typescript-eslint/experimental-utils\\\" \\\"^4.0.1\\\"\\n \\n@@ -12140,12 +12140,11 @@ http-proxy-middleware@0.19.1:\\n micromatch \\\"^3.1.10\\\"\\n \\n http-proxy-middleware@^1.0.0:\\n- version \\\"1.1.0\\\"\\n- resolved \\\"https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-1.1.0.tgz#b896b2cc6836019af4a4f2d5f7b21b99c77ea13f\\\"\\n- integrity sha512-OnjU5vyVgcZVe2AjLJyMrk8YLNOC2lspCHirB5ldM+B/dwEfZ5bgVTrFyzE9R7xRWAP/i/FXtvIqKjTNEZBhBg==\\n+ version \\\"1.1.1\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-1.1.1.tgz#48900a68cd9d388c735d1dd97302c919b7e94a13\\\"\\n+ integrity sha512-FIDg9zPvOwMhQ3XKB2+vdxK6WWbVAH7s5QpqQCif7a1TNL76GNAATWA1sy6q2gSfss8UJ/Nwza3N6QnFkKclpA==\\n dependencies:\\n \\\"@types/http-proxy\\\" \\\"^1.17.5\\\"\\n- camelcase \\\"^6.2.0\\\"\\n http-proxy \\\"^1.18.1\\\"\\n is-glob \\\"^4.0.1\\\"\\n is-plain-obj \\\"^3.0.0\\\"\\n@@ -14341,9 +14340,9 @@ jsdom@^15.2.1:\\n xml-name-validator \\\"^3.0.0\\\"\\n \\n jsdom@^16.4.0:\\n- version \\\"16.5.2\\\"\\n- resolved \\\"https://registry.yarnpkg.com/jsdom/-/jsdom-16.5.2.tgz#583fac89a0aea31dbf6237e7e4bedccd9beab472\\\"\\n- integrity sha512-JxNtPt9C1ut85boCbJmffaQ06NBnzkQY/MWO3YxPW8IWS38A26z+B1oBvA9LwKrytewdfymnhi4UNH3/RAgZrg==\\n+ version \\\"16.5.3\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/jsdom/-/jsdom-16.5.3.tgz#13a755b3950eb938b4482c407238ddf16f0d2136\\\"\\n+ integrity sha512-Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA==\\n dependencies:\\n abab \\\"^2.0.5\\\"\\n acorn \\\"^8.1.0\\\"\\n@@ -15590,12 +15589,12 @@ micromatch@^3.1.10, micromatch@^3.1.4:\\n to-regex \\\"^3.0.2\\\"\\n \\n micromatch@^4.0.2:\\n- version \\\"4.0.3\\\"\\n- resolved \\\"https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.3.tgz#fdad8352bf0cbeb89b391b5d244bc22ff3dd4ec8\\\"\\n- integrity sha512-ueuSaP4i67F/FAUac9zzZ0Dz/5KeKDkITYIS/k4fps+9qeh1SkeH6gbljcqz97mNBOsaWZ+iv2UobMKK/yD+aw==\\n+ version \\\"4.0.4\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9\\\"\\n+ integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==\\n dependencies:\\n braces \\\"^3.0.1\\\"\\n- picomatch \\\"^2.2.1\\\"\\n+ picomatch \\\"^2.2.3\\\"\\n \\n miller-rabin@^4.0.0:\\n version \\\"4.0.1\\\"\\n@@ -16356,7 +16355,7 @@ node-pre-gyp@^0.11.0:\\n semver \\\"^5.3.0\\\"\\n tar \\\"^4\\\"\\n \\n-node-releases@^1.1.61, node-releases@^1.1.70:\\n+node-releases@^1.1.61, node-releases@^1.1.71:\\n version \\\"1.1.71\\\"\\n resolved \\\"https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb\\\"\\n integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==\\n@@ -17571,10 +17570,10 @@ pgpass@1.x:\\n dependencies:\\n split2 \\\"^3.1.1\\\"\\n \\n-picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2:\\n- version \\\"2.2.2\\\"\\n- resolved \\\"https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad\\\"\\n- integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==\\n+picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3:\\n+ version \\\"2.2.3\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d\\\"\\n+ integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==\\n \\n pify@^2.0.0, pify@^2.2.0, pify@^2.3.0:\\n version \\\"2.3.0\\\"\\n@@ -18446,9 +18445,9 @@ postcss@^7, postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, po\\n supports-color \\\"^6.1.0\\\"\\n \\n postcss@^8.1.0, postcss@^8.2.8:\\n- version \\\"8.2.9\\\"\\n- resolved \\\"https://registry.yarnpkg.com/postcss/-/postcss-8.2.9.tgz#fd95ff37b5cee55c409b3fdd237296ab4096fba3\\\"\\n- integrity sha512-b+TmuIL4jGtCHtoLi+G/PisuIl9avxs8IZMSmlABRwNz5RLUUACrC+ws81dcomz1nRezm5YPdXiMEzBEKgYn+Q==\\n+ version \\\"8.2.10\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/postcss/-/postcss-8.2.10.tgz#ca7a042aa8aff494b334d0ff3e9e77079f6f702b\\\"\\n+ integrity sha512-b/h7CPV7QEdrqIxtAf2j31U5ef05uBDuvoXv6L51Q4rcS1jdlXAVKJv+atCFdUXYl9dyTHGyoMzIepwowRJjFw==\\n dependencies:\\n colorette \\\"^1.2.2\\\"\\n nanoid \\\"^3.1.22\\\"\\n@@ -19318,9 +19317,9 @@ rc-tree@^4.0.0, rc-tree@~4.1.0:\\n rc-virtual-list \\\"^3.0.1\\\"\\n \\n rc-trigger@^5.0.0, rc-trigger@^5.0.4, rc-trigger@^5.1.2, rc-trigger@^5.2.1:\\n- version \\\"5.2.3\\\"\\n- resolved \\\"https://registry.yarnpkg.com/rc-trigger/-/rc-trigger-5.2.3.tgz#8c55046ab432d7b52d51c69afb57ebb5bbe37e17\\\"\\n- integrity sha512-6Fokao07HUbqKIDkDRFEM0AGZvsvK0Fbp8A/KFgl1ngaqfO1nY037cISCG1Jm5fxImVsXp9awdkP7Vu5cxjjog==\\n+ version \\\"5.2.4\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/rc-trigger/-/rc-trigger-5.2.4.tgz#f1cca4a6c1f378a5d6fadec010292250772069d3\\\"\\n+ integrity sha512-nLZa4XYo3hOAVauQr7HsGrBtE8/pyoIWhHZnpr7x/H/dd6pPeRzH0//+1TzaBAXylbFgsY6hogKAMeJwaKeDFw==\\n dependencies:\\n \\\"@babel/runtime\\\" \\\"^7.11.2\\\"\\n classnames \\\"^2.2.6\\\"\\n@@ -20516,9 +20515,9 @@ rollup@^1.31.1:\\n acorn \\\"^7.1.0\\\"\\n \\n rollup@^2.40.0, rollup@^2.8.0:\\n- version \\\"2.45.0\\\"\\n- resolved \\\"https://registry.yarnpkg.com/rollup/-/rollup-2.45.0.tgz#bfcce2347c96f15f5c78ac860bc38e3349ba27c9\\\"\\n- integrity sha512-JJznbtGIsHZfKH0Sa9RpCAy5JarH8SWvBzRAGuRkgzAafb8e8D7VSMJ0O1Bsix1nn91koN/Ecvl2+ZWhljcuTw==\\n+ version \\\"2.45.1\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/rollup/-/rollup-2.45.1.tgz#eae2b94dc2088b4e0a3b7197a5a1ee0bdd589d5c\\\"\\n+ integrity sha512-vPD+JoDj3CY8k6m1bLcAFttXMe78P4CMxoau0iLVS60+S9kLsv2379xaGy4NgYWu+h2WTlucpoLPAoUoixFBag==\\n optionalDependencies:\\n fsevents \\\"~2.3.1\\\"\\n \\n@@ -22971,9 +22970,9 @@ typescript@~4.1.5:\\n integrity sha512-6OSu9PTIzmn9TCDiovULTnET6BgXtDYL4Gg4szY+cGsc3JP1dQL8qvE8kShTRx1NIw4Q9IBHlwODjkjWEtMUyA==\\n \\n ua-parser-js@^0.7.18:\\n- version \\\"0.7.27\\\"\\n- resolved \\\"https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.27.tgz#b54f8ce9eb6c7abf3584edeaf9a3d8b3bd92edba\\\"\\n- integrity sha512-eXMaRYK2skomGocoX0x9sBXzx5A1ZVQgXfrW4mTc8dT0zS7olEcyfudAzRC5tIIRgLxQ69B6jut3DI+n5hslPA==\\n+ version \\\"0.7.28\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.28.tgz#8ba04e653f35ce210239c64661685bf9121dec31\\\"\\n+ integrity sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==\\n \\n uglify-js@3.4.x:\\n version \\\"3.4.10\\\"\\n@@ -22984,9 +22983,9 @@ uglify-js@3.4.x:\\n source-map \\\"~0.6.1\\\"\\n \\n uglify-js@^3.1.4, uglify-js@^3.4.9:\\n- version \\\"3.13.3\\\"\\n- resolved \\\"https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.3.tgz#ce72a1ad154348ea2af61f50933c76cc8802276e\\\"\\n- integrity sha512-otIc7O9LyxpUcQoXzj2hL4LPWKklO6LJWoJUzNa8A17Xgi4fOeDC8FBDOLHnC/Slo1CQgsZMcM6as0M76BZaig==\\n+ version \\\"3.13.4\\\"\\n+ resolved \\\"https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.4.tgz#592588bb9f47ae03b24916e2471218d914955574\\\"\\n+ integrity sha512-kv7fCkIXyQIilD5/yQy8O+uagsYIOt5cZvs890W40/e/rvjMSzJw81o9Bg0tkURxzZBROtDQhW2LFjOGoK3RZw==\\n \\n uid-number@0.0.6:\\n version \\\"0.0.6\\\"\\n\", \"diff --git a/kousa/lib/broth/socket_handler.ex b/kousa/lib/broth/socket_handler.ex\\nindex d142135..5828f30 100644\\n--- a/kousa/lib/broth/socket_handler.ex\\n+++ b/kousa/lib/broth/socket_handler.ex\\n@@ -22,7 +22,7 @@ defmodule Broth.SocketHandler do\\n ## initialization boilerplate\\n \\n @impl true\\n- def init(request = %{peer: {ip, _reverse_port}}, _state) do\\n+ def init(request, _state) do\\n props = :cowboy_req.parse_qs(request)\\n \\n compression =\\n@@ -37,10 +37,16 @@ defmodule Broth.SocketHandler do\\n _ -> :json\\n end\\n \\n+ ip =\\n+ case request.headers do\\n+ %{\\\"x-forwarded-for\\\" => v} -> v\\n+ _ -> nil\\n+ end\\n+\\n state = %__MODULE__{\\n awaiting_init: true,\\n user_id: nil,\\n- ip: IP.to_string(ip),\\n+ ip: ip,\\n encoding: encoding,\\n compression: compression,\\n callers: get_callers(request)\\ndiff --git a/kousa/test/_support/ws_client.ex b/kousa/test/_support/ws_client.ex\\nindex aeca704..125da17 100644\\n--- a/kousa/test/_support/ws_client.ex\\n+++ b/kousa/test/_support/ws_client.ex\\n@@ -19,7 +19,9 @@ defmodule BrothTest.WsClient do\\n \\n @api_url\\n |> Path.join(\\\"socket\\\")\\n- |> WebSockex.start_link(__MODULE__, nil, extra_headers: [{\\\"user-agent\\\", ancestors}])\\n+ |> WebSockex.start_link(__MODULE__, nil,\\n+ extra_headers: [{\\\"user-agent\\\", ancestors}, {\\\"x-forwarded-for\\\", \\\"127.0.0.1\\\"}]\\n+ )\\n end\\n \\n ###########################################################################\\n\", \"diff --git a/scripts/gulp/tasks/test.ts b/scripts/gulp/tasks/test.ts\\nindex 8014b12..d10c1aa 100644\\n--- a/scripts/gulp/tasks/test.ts\\n+++ b/scripts/gulp/tasks/test.ts\\n@@ -26,12 +26,18 @@ task('test.imageserver', () => {\\n function handleRequest(req, res) {\\n const urlParse = url.parse(req.url, true);\\n \\n+ res.setHeader('Access-Control-Allow-Origin', '*');\\n+ res.setHeader('Access-Control-Allow-Methods', 'GET');\\n+ res.setHeader('Connection', 'keep-alive');\\n+ res.setHeader('Age', '0');\\n+ res.setHeader('cache-control', 'no-store');\\n+\\n if (urlParse.pathname === '/reset') {\\n console.log('Image Server Reset');\\n console.log('---------------------------');\\n requestedUrls.length = 0;\\n start = Date.now();\\n- res.setHeader('Access-Control-Allow-Origin', '*');\\n+ res.setHeader('Content-Type', 'text/plain');\\n res.end('reset');\\n return;\\n }\\n@@ -48,9 +54,8 @@ task('test.imageserver', () => {\\n \\n setTimeout(() => {\\n res.setHeader('Content-Type', 'image/svg+xml');\\n- res.setHeader('Access-Control-Allow-Origin', '*');\\n res.end(``);\\n }, delay);\\n\"]"},"concern_count":{"kind":"number","value":3,"string":"3"},"shas":{"kind":"string","value":"[\"7e9bd7c86df1032d53e752654fe4a446951480bb\", \"2f5718743a830d40ddf272ad46f253dbb6d08cff\", \"32b76173a259ea1993298289b436cf10c1e800bf\"]"},"types":{"kind":"string","value":"[\"build\", \"fix\", \"test\"]"}}},{"rowIdx":568,"cells":{"commit_message":{"kind":"string","value":"verify process can start at supported element types\n\nVerifies a PI can be started at specific element types. The test will deploy the process, start an instance at the desired start element and verify that it has been activated succesfully.,get ip from forwarded header,update pr condition"},"diff":{"kind":"string","value":"[\"diff --git a/engine/src/test/java/io/camunda/zeebe/engine/processing/processinstance/CreateProcessInstanceSupportedElementTest.java b/engine/src/test/java/io/camunda/zeebe/engine/processing/processinstance/CreateProcessInstanceSupportedElementTest.java\\nnew file mode 100644\\nindex 0000000..a505307\\n--- /dev/null\\n+++ b/engine/src/test/java/io/camunda/zeebe/engine/processing/processinstance/CreateProcessInstanceSupportedElementTest.java\\n@@ -0,0 +1,233 @@\\n+/*\\n+ * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under\\n+ * one or more contributor license agreements. See the NOTICE file distributed\\n+ * with this work for additional information regarding copyright ownership.\\n+ * Licensed under the Zeebe Community License 1.1. You may not use this file\\n+ * except in compliance with the Zeebe Community License 1.1.\\n+ */\\n+package io.camunda.zeebe.engine.processing.processinstance;\\n+\\n+import static org.assertj.core.api.Assertions.assertThat;\\n+import static org.assertj.core.groups.Tuple.tuple;\\n+\\n+import io.camunda.zeebe.engine.util.EngineRule;\\n+import io.camunda.zeebe.model.bpmn.Bpmn;\\n+import io.camunda.zeebe.model.bpmn.BpmnModelInstance;\\n+import io.camunda.zeebe.protocol.record.Record;\\n+import io.camunda.zeebe.protocol.record.intent.ProcessInstanceIntent;\\n+import io.camunda.zeebe.protocol.record.value.BpmnElementType;\\n+import io.camunda.zeebe.test.util.record.RecordingExporter;\\n+import io.camunda.zeebe.test.util.record.RecordingExporterTestWatcher;\\n+import java.util.Collection;\\n+import java.util.Collections;\\n+import java.util.List;\\n+import java.util.Map;\\n+import org.junit.ClassRule;\\n+import org.junit.Rule;\\n+import org.junit.Test;\\n+import org.junit.runner.RunWith;\\n+import org.junit.runners.Parameterized;\\n+import org.junit.runners.Parameterized.Parameters;\\n+\\n+@RunWith(Parameterized.class)\\n+public class CreateProcessInstanceSupportedElementTest {\\n+\\n+ @ClassRule public static final EngineRule ENGINE = EngineRule.singlePartition();\\n+ private static final String PROCESS_ID = \\\"processId\\\";\\n+ private static final String CHILD_PROCESS_ID = \\\"childProcessId\\\";\\n+ private static final String START_ELEMENT_ID = \\\"startElement\\\";\\n+ private static final String MESSAGE = \\\"message\\\";\\n+ private static final String JOBTYPE = \\\"jobtype\\\";\\n+\\n+ @Rule\\n+ public final RecordingExporterTestWatcher recordingExporterTestWatcher =\\n+ new RecordingExporterTestWatcher();\\n+\\n+ private final Scenario scenario;\\n+\\n+ public CreateProcessInstanceSupportedElementTest(final Scenario scenario) {\\n+ this.scenario = scenario;\\n+ }\\n+\\n+ @Parameters(name = \\\"{0}\\\")\\n+ public static Collection