Skip to content

Commit 98e2f48

Browse files
committed
Pre-release 0.32.109
1 parent 973075e commit 98e2f48

File tree

52 files changed

+1998
-555
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1998
-555
lines changed

Copilot for Xcode.xcworkspace/xcshareddata/swiftpm/Package.resolved

+9
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,15 @@
135135
"version" : "2.6.4"
136136
}
137137
},
138+
{
139+
"identity" : "sqlite.swift",
140+
"kind" : "remoteSourceControl",
141+
"location" : "https://github.com/stephencelis/SQLite.swift.git",
142+
"state" : {
143+
"revision" : "a95fc6df17d108bd99210db5e8a9bac90fe984b8",
144+
"version" : "0.15.3"
145+
}
146+
},
138147
{
139148
"identity" : "swift-argument-parser",
140149
"kind" : "remoteSourceControl",

Copilot for Xcode/Credits.rtf

+26
Original file line numberDiff line numberDiff line change
@@ -3242,4 +3242,30 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\
32423242
SOFTWARE.\
32433243
\
32443244
\
3245+
Dependency: https://github.com/stephencelis/SQLite.swift\
3246+
Version: 0.15.3\
3247+
License Content:\
3248+
MIT License\
3249+
\
3250+
Copyright (c) 2014-2015 Stephen Celis (<[email protected]>)\
3251+
\
3252+
Permission is hereby granted, free of charge, to any person obtaining a copy\
3253+
of this software and associated documentation files (the "Software"), to deal\
3254+
in the Software without restriction, including without limitation the rights\
3255+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\
3256+
copies of the Software, and to permit persons to whom the Software is\
3257+
furnished to do so, subject to the following conditions:\
3258+
\
3259+
The above copyright notice and this permission notice shall be included in all\
3260+
copies or substantial portions of the Software.\
3261+
\
3262+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\
3263+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\
3264+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\
3265+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\
3266+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\
3267+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\
3268+
SOFTWARE.\
3269+
\
3270+
\
32453271
}

Core/Package.swift

+13-1
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ let package = Package(
170170
.target(
171171
name: "ChatService",
172172
dependencies: [
173+
"PersistMiddleware",
173174
.product(name: "AppMonitoring", package: "Tool"),
174175
.product(name: "Parsing", package: "swift-parsing"),
175176
.product(name: "ChatAPIService", package: "Tool"),
@@ -208,6 +209,7 @@ let package = Package(
208209
"PromptToCodeService",
209210
"ConversationTab",
210211
"GitHubCopilotViewModel",
212+
"PersistMiddleware",
211213
.product(name: "GitHubCopilotService", package: "Tool"),
212214
.product(name: "Toast", package: "Tool"),
213215
.product(name: "UserDefaultsObserver", package: "Tool"),
@@ -278,7 +280,17 @@ let package = Package(
278280
.product(name: "Highlightr", package: "Highlightr"),
279281
]
280282
),
281-
283+
284+
// MARK: Persist Middleware
285+
.target(
286+
name: "PersistMiddleware",
287+
dependencies: [
288+
.product(name: "Persist", package: "Tool"),
289+
.product(name: "ChatTab", package: "Tool"),
290+
.product(name: "ChatAPIService", package: "Tool"),
291+
.product(name: "ConversationServiceProvider", package: "Tool")
292+
]
293+
)
282294
]
283295
)
284296

0 commit comments

Comments
 (0)