Skip to content

Commit 3bb86d9

Browse files
committed
feat: v2.0.0 - Complete architectural rewrite
Complete architectural rewrite with modern SDK support, production-grade lifecycle management, and critical bug fixes. See CHANGELOG.md for detailed list of changes including: - Breaking changes (SDK requirements, API changes) - New features (context-aware lifecycle, event system, observability) - Bug fixes (ObjectEvaluation, dynamic configuration, targeting rules) - Concurrency and reliability improvements See MIGRATION.md for upgrade instructions from v1.x.
1 parent 140db2b commit 3bb86d9

40 files changed

+10322
-774
lines changed

.gitignore

Lines changed: 265 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/jetbrains+all,goland+all,go,visualstudiocode,git,macos,windows,linux
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=jetbrains+all,goland+all,go,visualstudiocode,git,macos,windows,linux
3+
4+
### Git ###
5+
# Created by git for backups. To disable backups in Git:
6+
# $ git config --global mergetool.keepBackup false
7+
*.orig
8+
9+
# Created by git when using merge tools for conflicts
10+
*.BACKUP.*
11+
*.BASE.*
12+
*.LOCAL.*
13+
*.REMOTE.*
14+
*_BACKUP_*.txt
15+
*_BASE_*.txt
16+
*_LOCAL_*.txt
17+
*_REMOTE_*.txt
18+
19+
### Go ###
20+
# If you prefer the allow list template instead of the deny list, see community template:
21+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
22+
#
123
# Binaries for programs and plugins
224
*.exe
325
*.exe~
@@ -14,4 +36,246 @@
1436
# Dependency directories (remove the comment below to include it)
1537
# vendor/
1638

17-
.idea/
39+
# Go workspace file
40+
go.work
41+
42+
### GoLand+all ###
43+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
44+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
45+
46+
# User-specific stuff
47+
.idea/**/workspace.xml
48+
.idea/**/tasks.xml
49+
.idea/**/usage.statistics.xml
50+
.idea/**/dictionaries
51+
.idea/**/shelf
52+
53+
# AWS User-specific
54+
.idea/**/aws.xml
55+
56+
# Generated files
57+
.idea/**/contentModel.xml
58+
59+
# Sensitive or high-churn files
60+
.idea/**/dataSources/
61+
.idea/**/dataSources.ids
62+
.idea/**/dataSources.local.xml
63+
.idea/**/sqlDataSources.xml
64+
.idea/**/dynamic.xml
65+
.idea/**/uiDesigner.xml
66+
.idea/**/dbnavigator.xml
67+
68+
# Gradle
69+
.idea/**/gradle.xml
70+
.idea/**/libraries
71+
72+
# Gradle and Maven with auto-import
73+
# When using Gradle or Maven with auto-import, you should exclude module files,
74+
# since they will be recreated, and may cause churn. Uncomment if using
75+
# auto-import.
76+
# .idea/artifacts
77+
# .idea/compiler.xml
78+
# .idea/jarRepositories.xml
79+
# .idea/modules.xml
80+
# .idea/*.iml
81+
# .idea/modules
82+
# *.iml
83+
# *.ipr
84+
85+
# CMake
86+
cmake-build-*/
87+
88+
# Mongo Explorer plugin
89+
.idea/**/mongoSettings.xml
90+
91+
# File-based project format
92+
*.iws
93+
94+
# IntelliJ
95+
out/
96+
97+
# mpeltonen/sbt-idea plugin
98+
.idea_modules/
99+
100+
# JIRA plugin
101+
atlassian-ide-plugin.xml
102+
103+
# Cursive Clojure plugin
104+
.idea/replstate.xml
105+
106+
# SonarLint plugin
107+
.idea/sonarlint/
108+
109+
# Crashlytics plugin (for Android Studio and IntelliJ)
110+
com_crashlytics_export_strings.xml
111+
crashlytics.properties
112+
crashlytics-build.properties
113+
fabric.properties
114+
115+
# Editor-based Rest Client
116+
.idea/httpRequests
117+
118+
# Android studio 3.1+ serialized cache file
119+
.idea/caches/build_file_checksums.ser
120+
121+
### GoLand+all Patch ###
122+
# Ignore everything but code style settings and run configurations
123+
# that are supposed to be shared within teams.
124+
125+
.idea/*
126+
127+
!.idea/codeStyles
128+
!.idea/runConfigurations
129+
130+
### JetBrains+all ###
131+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
132+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
133+
134+
# User-specific stuff
135+
136+
# AWS User-specific
137+
138+
# Generated files
139+
140+
# Sensitive or high-churn files
141+
142+
# Gradle
143+
144+
# Gradle and Maven with auto-import
145+
# When using Gradle or Maven with auto-import, you should exclude module files,
146+
# since they will be recreated, and may cause churn. Uncomment if using
147+
# auto-import.
148+
# .idea/artifacts
149+
# .idea/compiler.xml
150+
# .idea/jarRepositories.xml
151+
# .idea/modules.xml
152+
# .idea/*.iml
153+
# .idea/modules
154+
# *.iml
155+
# *.ipr
156+
157+
# CMake
158+
159+
# Mongo Explorer plugin
160+
161+
# File-based project format
162+
163+
# IntelliJ
164+
165+
# mpeltonen/sbt-idea plugin
166+
167+
# JIRA plugin
168+
169+
# Cursive Clojure plugin
170+
171+
# SonarLint plugin
172+
173+
# Crashlytics plugin (for Android Studio and IntelliJ)
174+
175+
# Editor-based Rest Client
176+
177+
# Android studio 3.1+ serialized cache file
178+
179+
### JetBrains+all Patch ###
180+
# Ignore everything but code style settings and run configurations
181+
# that are supposed to be shared within teams.
182+
183+
184+
185+
### Linux ###
186+
*~
187+
188+
# temporary files which can be created if a process still has a handle open of a deleted file
189+
.fuse_hidden*
190+
191+
# KDE directory preferences
192+
.directory
193+
194+
# Linux trash folder which might appear on any partition or disk
195+
.Trash-*
196+
197+
# .nfs files are created when an open file is removed but is still being accessed
198+
.nfs*
199+
200+
### macOS ###
201+
# General
202+
.DS_Store
203+
.AppleDouble
204+
.LSOverride
205+
206+
# Icon must end with two \r
207+
Icon
208+
209+
210+
# Thumbnails
211+
._*
212+
213+
# Files that might appear in the root of a volume
214+
.DocumentRevisions-V100
215+
.fseventsd
216+
.Spotlight-V100
217+
.TemporaryItems
218+
.Trashes
219+
.VolumeIcon.icns
220+
.com.apple.timemachine.donotpresent
221+
222+
# Directories potentially created on remote AFP share
223+
.AppleDB
224+
.AppleDesktop
225+
Network Trash Folder
226+
Temporary Items
227+
.apdisk
228+
229+
### macOS Patch ###
230+
# iCloud generated files
231+
*.icloud
232+
233+
### VisualStudioCode ###
234+
.vscode/*
235+
!.vscode/settings.json
236+
!.vscode/tasks.json
237+
!.vscode/launch.json
238+
!.vscode/extensions.json
239+
!.vscode/*.code-snippets
240+
241+
# Local History for Visual Studio Code
242+
.history/
243+
244+
# Built Visual Studio Code Extensions
245+
*.vsix
246+
247+
### VisualStudioCode Patch ###
248+
# Ignore all local history of files
249+
.history
250+
.ionide
251+
252+
### Windows ###
253+
# Windows thumbnail cache files
254+
Thumbs.db
255+
Thumbs.db:encryptable
256+
ehthumbs.db
257+
ehthumbs_vista.db
258+
259+
# Dump file
260+
*.stackdump
261+
262+
# Folder config file
263+
[Dd]esktop.ini
264+
265+
# Recycle Bin used on file shares
266+
$RECYCLE.BIN/
267+
268+
# Windows Installer files
269+
*.cab
270+
*.msi
271+
*.msix
272+
*.msm
273+
*.msp
274+
275+
# Windows shortcuts
276+
*.lnk
277+
278+
### Project ###
279+
*.env
280+
281+
# End of https://www.toptal.com/developers/gitignore/api/jetbrains+all,goland+all,go,visualstudiocode,git,macos,windows,linux

0 commit comments

Comments
 (0)