Skip to content

Commit 7562163

Browse files
committed
Update dependencies
The Lapis upgrade allows a slightly cleaner way to setup the internal pgmoon connections inside Lapis.
1 parent 1cb2bd5 commit 7562163

File tree

24 files changed

+1351
-1358
lines changed

24 files changed

+1351
-1358
lines changed

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source "https://rubygems.org"
33
ruby "~> 3.1"
44

55
# Task runner
6-
gem "thor", "~> 1.4.0"
6+
gem "thor", "~> 1.5.0"
77

88
# Tests
99
gem "minitest", "~> 5.26.2"
@@ -79,7 +79,7 @@ gem "concurrent-ruby", "~> 1.3.3"
7979
gem "zonebie", "~> 0.6.1"
8080

8181
# Encrypting admin passwords.
82-
gem "bcrypt", "~> 3.1.12"
82+
gem "bcrypt", "~> 3.1.21"
8383

8484
# Encrypting/decrypting database values.
8585
gem "encryptor", "~> 3.0.0"

Gemfile.lock

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ GEM
4848
ast (2.4.3)
4949
awesome_print (1.9.2)
5050
base64 (0.3.0)
51-
bcrypt (3.1.20)
51+
bcrypt (3.1.21)
5252
benchmark (0.5.0)
5353
bigdecimal (4.0.1)
5454
builder (3.3.0)
@@ -79,9 +79,9 @@ GEM
7979
ffi (>= 1.15.0)
8080
factory_bot (6.5.6)
8181
activesupport (>= 6.1.0)
82-
faker (3.5.3)
82+
faker (3.6.0)
8383
i18n (>= 1.8.11, < 2)
84-
faraday (2.14.0)
84+
faraday (2.14.1)
8585
faraday-net_http (>= 2.0, < 3.5)
8686
json
8787
logger
@@ -94,7 +94,7 @@ GEM
9494
i18n (1.14.8)
9595
concurrent-ruby (~> 1.0)
9696
ice_nine (0.11.2)
97-
json (2.18.0)
97+
json (2.18.1)
9898
language_server-protocol (3.17.0.5)
9999
launchy (3.1.1)
100100
addressable (~> 2.8)
@@ -118,7 +118,7 @@ GEM
118118
builder
119119
minitest (>= 5.0)
120120
ruby-progressbar
121-
minitest-retry (0.3.0)
121+
minitest-retry (0.3.1)
122122
minitest (>= 5.0)
123123
minitest-sprint (1.3.0)
124124
path_expander (~> 1.1)
@@ -132,22 +132,22 @@ GEM
132132
nokogiri (1.18.10)
133133
mini_portile2 (~> 2.8.2)
134134
racc (~> 1.4)
135-
oj (3.16.13)
135+
oj (3.16.15)
136136
bigdecimal (>= 3.0)
137137
ostruct (>= 0.2)
138138
opensearch-ruby (3.4.0)
139139
faraday (>= 1.0, < 3)
140140
multi_json (>= 1.0)
141141
ostruct (0.6.3)
142142
parallel (1.27.0)
143-
parser (3.3.10.0)
143+
parser (3.3.10.1)
144144
ast (~> 2.4.1)
145145
racc
146146
path_expander (1.1.3)
147147
pg (1.6.3)
148148
pg (1.6.3-aarch64-linux)
149149
pg (1.6.3-x86_64-linux)
150-
prism (1.7.0)
150+
prism (1.9.0)
151151
public_suffix (6.0.2)
152152
racc (1.8.1)
153153
rack (3.2.4)
@@ -167,15 +167,15 @@ GEM
167167
rainbow (3.1.1)
168168
regexp_parser (2.11.3)
169169
rexml (3.4.4)
170-
rubocop (1.82.1)
170+
rubocop (1.84.1)
171171
json (~> 2.3)
172172
language_server-protocol (~> 3.17.0.2)
173173
lint_roller (~> 1.1.0)
174174
parallel (~> 1.10)
175175
parser (>= 3.3.0.2)
176176
rainbow (>= 2.2.2, < 4.0)
177177
regexp_parser (>= 2.9.3, < 3.0)
178-
rubocop-ast (>= 1.48.0, < 2.0)
178+
rubocop-ast (>= 1.49.0, < 2.0)
179179
ruby-progressbar (~> 1.7)
180180
unicode-display_width (>= 2.4.0, < 4.0)
181181
rubocop-ast (1.49.0)
@@ -194,7 +194,7 @@ GEM
194194
rexml (~> 3.2, >= 3.2.5)
195195
rubyzip (>= 1.2.2, < 3.0)
196196
websocket (~> 1.0)
197-
thor (1.4.0)
197+
thor (1.5.0)
198198
timeout (0.6.0)
199199
typhoeus (1.5.0)
200200
ethon (>= 0.9.0, < 0.16.0)
@@ -221,7 +221,7 @@ DEPENDENCIES
221221
activesupport (~> 7.2.3)
222222
addressable (~> 2.8.0)
223223
awesome_print (~> 1.9.2)
224-
bcrypt (~> 3.1.12)
224+
bcrypt (~> 3.1.21)
225225
capybara (~> 3.32)
226226
capybara-screenshot (~> 1.0.22)
227227
capybara-shadowdom (~> 0.3.0)
@@ -249,7 +249,7 @@ DEPENDENCIES
249249
rubocop (~> 1.81)
250250
rubocop-minitest (~> 0.38.2)
251251
selenium-webdriver (~> 4.32)
252-
thor (~> 1.4.0)
252+
thor (~> 1.5.0)
253253
typhoeus (~> 1.5.0)
254254
zonebie (~> 0.6.1)
255255

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export PREFIX=$(prefix)
1515
default: all
1616

1717
# Download and locally install the "task" tool.
18-
task_version:=3.46.4
18+
task_version:=3.48.0
1919
$(source_dir)/tasks/bootstrap-$(task_version): ;
2020
$(work_dir)/stamp/bootstrap-$(task_version): $(source_dir)/tasks/bootstrap-$(task_version)
2121
$(source_dir)/tasks/bootstrap-$(task_version)

src/api-umbrella-git-1.rockspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ dependencies = {
1010
"bcrypt ~> 2.3",
1111
"dkjson ~> 2.8",
1212
"inspect ~> 3.1.3",
13-
"lapis ~> 1.16.0",
13+
"lapis ~> 1.17.0",
1414
"libcidr-ffi ~> 1.0.0",
1515
"lua-resty-http ~> 0.17.2",
16-
"lua-resty-mail ~> 1.1.0",
16+
"lua-resty-mail ~> 1.2.0",
1717
"lua-resty-mlcache ~> 2.7.0",
1818
"lua-resty-nettle ~> 2.1",
1919
"lua-resty-openidc ~> 1.7.6",
@@ -27,7 +27,7 @@ dependencies = {
2727
"luautf8 ~> 0.2.0",
2828
"lustache ~> 1.3.1",
2929
"lyaml ~> 6.2.8",
30-
"penlight ~> 1.14.0",
30+
"penlight ~> 1.15.0",
3131
"psl ~> 0.3",
3232
"shell-games ~> 1.1.0",
3333
}

src/api-umbrella/admin-ui/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
"test:ember": "ember test"
2626
},
2727
"devDependencies": {
28-
"@babel/eslint-parser": "^7.28.5",
29-
"@babel/plugin-proposal-decorators": "^7.28.0",
28+
"@babel/eslint-parser": "^7.28.6",
29+
"@babel/plugin-proposal-decorators": "^7.29.0",
3030
"@ember/jquery": "^2.0.0",
3131
"@ember/optional-features": "^2.3.0",
3232
"@ember/render-modifiers": "^2.1.0",
@@ -44,16 +44,16 @@
4444
"@pnotify/font-awesome5": "^5.2.0",
4545
"@pnotify/font-awesome5-fix": "^5.2.0",
4646
"@pnotify/mobile": "^5.2.0",
47-
"autoprefixer": "^10.4.23",
47+
"autoprefixer": "^10.4.24",
4848
"bootbox": "^6.0.4",
4949
"bootstrap": "^4.6.2",
5050
"broccoli-asset-rev": "^3.0.0",
51-
"codemirror": "^5.65.20",
51+
"codemirror": "^5.65.21",
5252
"concurrently": "^8.2.2",
5353
"datatables.net": "^1.13.11",
5454
"datatables.net-bs4": "^1.13.11",
5555
"daterangepicker": "~3.1.0",
56-
"diff": "^5.2.0",
56+
"diff": "^5.2.2",
5757
"echarts": "^5.6.0",
5858
"ember-ajax": "^5.1.2",
5959
"ember-auto-import": "~2.6.3",
@@ -76,7 +76,7 @@
7676
"ember-export-application-global": "^2.0.1",
7777
"ember-fetch": "^8.1.2",
7878
"ember-load-initializers": "^2.1.2",
79-
"ember-modifier": "^4.2.2",
79+
"ember-modifier": "^4.3.0",
8080
"ember-onbeforeunload": "~2.0.0",
8181
"ember-page-title": "^7.0.0",
8282
"ember-qunit": "^6.2.0",
@@ -98,7 +98,7 @@
9898
"jed": "~1.1.1",
9999
"jquery.scrollto": "~2.1.3",
100100
"loader.js": "^4.7.0",
101-
"lodash-es": "~4.17.22",
101+
"lodash-es": "~4.17.23",
102102
"marked": "^8.0.1",
103103
"moment-timezone": "~0.5.48",
104104
"npm-run-all": "^4.1.5",
@@ -107,17 +107,17 @@
107107
"po2json": "~0.4.5",
108108
"popper.js": "^1.16.1",
109109
"prettier": "^2.8.8",
110-
"qunit": "^2.24.3",
110+
"qunit": "^2.25.0",
111111
"qunit-dom": "^2.0.0",
112-
"sass": "^1.97.1",
112+
"sass": "^1.97.3",
113113
"selectize": "~0.12.6",
114114
"stylelint": "^15.11.0",
115115
"stylelint-config-standard": "^32.0.0",
116116
"stylelint-prettier": "^3.0.0",
117117
"timekeeper": "^2.3.1",
118118
"tippy.js": "~6.3.7",
119119
"tracked-built-ins": "^3.4.0",
120-
"webpack": "^5.104.1"
120+
"webpack": "^5.105.2"
121121
},
122122
"engines": {
123123
"node": "14.* || 16.* || >= 18"

0 commit comments

Comments
 (0)